Skip to main content

Theharvester: Email Harvesting Throughout Year




You might have harvested many things upto now but what we are going to harvest today is something bad :)



Requirements:

  1. A Linux box (I'm using Kali Linux)
  2. theharvester program (already available in Kali Linux)
So what does theharvester harvest? Well it harvests email addresses. theharvester is an Information gathering tool. If you want a list of emails to spam you can get that easily from theharvester tool and go on Spamming (I'm joking its illegal). It's a security tool that helps you in pentesting an organization (as always it can be used for evil as well). You can gather emails from an organization and look for potential victims to attack or use brute-force techniques to get their passwords or Social Engineer them into doing something that will let you compromise some or all systems in the organization. Uhh there are so many things that you can do when you have access to someone's email address.

OK stop talking and start doing.


Fire up a terminal in your kali box and type this command:


theharvester -d hotmail.com -l 50 -b google


In a small amount of time you'll see your terminal flooded with 200 hotmail.com email address. What does this command mean?


theharvester is the tool name that we are using

-d <domain_name> specifies the domain (or website) who's email addresses we're looking for, in our case it was hotmail.com
-l <number> specifies the number of results that we want in the output, I limited it to 50
-b <source> specifies the source on which to look for email addresses, I specified google as the source

Besides google we can specify any of the follow as source:

google, googleCSE, bing, bingapi, pgp, linkedin, google-profiles, people123, jigsaw, twitter, googleplus, all
Here the last entry all means look in every available source.

Let's say you wanted to look in every available source they you should specify the following command:


theharvester -d hotmail.com -b all




-f is another great flag which can be utilized to save the output in case we want to SPAM them later (just kidding) or for other reasons (I'm thinking positive). -f flag saves the result in html or xml format. Let's do just that:


theharvester -d gmail.com -l 50 -b google -f emailaddresses.html


here -f flag is followed by the location where we want to store the file and the name of file, in our case we stored it in our pwd (present working directory) with the name emailaddresses.html.




Above picture shows an html output generated by harvester.


That's it for this tutorial hope to see you next time!
Read more

Comments

Popular posts from this blog

PHASES OF HACKING

What is the process of hacking or phases of hacking? Hacking is broken up into six phases:The more you get close to all phases,the more stealth will be your attack. 1-Reconnaissance-This is the primary phase of hacking where hacker tries to collect as much as information as possible about the target.It includes identifying the target,domain name registration records of the target, mail server records,DNS records.The tools that are widely used in the process is NMAP,Hping,Maltego, and Google Dorks. 2-Scanning-This makes up the base of hacking! This is where planning for attack actually begins! The tools used in this process are Nessus,Nexpose,and NMAP. After reconnaissance the attacker scans the target for services running,open ports,firewall detection,finding out vulnerabilities,operating system detection. 3-Gaining Access-In this process the attacker executes the attack based on vulnerabilities which were identified during scanning!  After the successful, he get access t...

9976 hash passwords

tiger-192(edbualu) tiger-192(edburd) tiger-192(edbyinc) tiger-192(edc123) tiger-192(edc12345) tiger-192(edc181994) tiger-192(edc333) tiger-192(edc6f4c) tiger-192(edcb) tiger-192(edcba) tiger-192(edcba2000) tiger-192(edcba99) tiger-192(edcbaabcde) tiger-192(edcbaedcba) tiger-192(edcccc) tiger-192(edccde) tiger-192(edcedc) tiger-192(edcft56) tiger-192(edcjeqtu) tiger-192(EDcmbqfv) tiger-192(edcompconsult) tiger-192(edcrfv) tiger-192(Edcrfv1) tiger-192(edcrfv12) tiger-192(edcrfvsg) tiger-192(edcrfvtfc) tiger-192(edcrfvtg) tiger-192(edcrfvtgb) tiger-192(edcvfr) tiger-192(edcvfr1234) tiger-192(#EDCvfr4) tiger-192(edcvfr44) tiger-192(edcvfrtgb_1) tiger-192(edcwsxqa) tiger-192(edcwsxqaz) tiger-192(edcxsw) tiger-192(edcxswqaz) tiger-192(edcxswzaq) tiger-192(edd2112) tiger-192(edda) tiger-192(eddavis) tiger-192(eddawg) tiger-192(edddie) tiger-192(eddeb) tiger-192(eddedd) tiger-192(eddel29) tiger-192(edden76) tiger-192(eddepet) tiger-192(edder) t...

Kali Linux 2018.3 Release - Penetration Testing And Ethical Hacking Linux Distribution

Kali 2018.3 brings the kernel up to version 4.17.0 and while 4.17.0 did not introduce many changes, 4.16.0 had a huge number of additions and improvements including more Spectre and Meltdown fixes, improved power management, and better GPU support. New Tools and Tool Upgrades Since our last release, we have added a number of new tools to the repositories, including: idb – An iOS research / penetration testing tool gdb-peda – Python Exploit Development Assistance for GDB datasploit – OSINT Framework to perform various recon techniques kerberoast – Kerberos assessment tools In addition to these new packages, we have also upgraded a number of tools in our repos including aircrack-ng , burpsuite , openvas , wifite , and wpscan . For the complete list of updates, fixes, and additions, please refer to the Kali Bug Tracker Changelog . Download Kali Linux 2018.3 If you would like to check out this latest and greatest Kali release, you can find download links for ISOs and Torrents on the Ka...