2016-04-17 01:20:38 +08:00
EmailHarvester
====
* A tool to retrieve Domain email addresses from Search Engines
2016-04-22 16:00:04 +08:00
* Check the [License ](https://github.com/maldevel/EmailHarvester/blob/master/LICENSE )
2016-04-17 01:20:38 +08:00
2016-04-19 18:20:42 +08:00
This project was inspired by:
* theHarvester(https://github.com/laramies/theHarvester) from laramies.
* search_email_collector(https://github.com/rapid7/metasploit-framework/blob/master/modules/auxiliary/gather/search_email_collector.rb) from Carlos Perez.
2016-04-17 01:20:38 +08:00
Requirements
=====
* Python 3.x
2016-04-19 18:20:42 +08:00
* termcolor
* colorama
* requests
2016-04-29 15:41:09 +08:00
* validators
2016-04-17 01:20:38 +08:00
Features
=====
2016-04-29 15:41:09 +08:00
* Retrieve Domain email addresses from popular Search engines (Google, Bing, Yahoo, ASK, Baidu, Dogpile, Exalead).
2016-04-20 22:55:26 +08:00
* Export results to txt and xml files.
* Limit search results.
* Define your own User-Agent string.
* Use proxy server.
2016-04-22 21:07:14 +08:00
* Plugins system.
2016-04-30 16:01:21 +08:00
* Search in popular web sites using Search engines (Twitter, LinkedIn, Google+, Github, Instagram, Reddit, Youtube).
2016-04-20 22:55:26 +08:00
2016-04-17 01:20:38 +08:00
Download/Installation
====
* git clone https://github.com/maldevel/EmailHarvester
2016-12-24 15:40:59 +08:00
* pip install -r requirements.txt
2016-04-17 01:20:38 +08:00
2016-04-19 18:20:42 +08:00
Usage
2016-04-17 01:20:38 +08:00
=====
2016-04-19 18:20:42 +08:00
```
usage: EmailHarvester.py [-h] [-d DOMAIN] [-s FILE] [-e ENGINE] [-l LIMIT]
2016-04-22 17:24:56 +08:00
[-u USER-AGENT] [-x PROXY] [--noprint]
2016-04-17 01:20:38 +08:00
2016-04-19 18:20:42 +08:00
_____ _ _ _ _ _
| ___| (_)| | | | | | | |
| |__ _ __ ___ __ _ _ | | | |_| | __ _ _ __ __ __ ___ ___ | |_ ___ _ __
| __ || '_ ` _ \ / _` || || | | _ | / _ ` || '__|\ \ / // _ \/ __ || __ |/ _ \| '__|
| |___| | | | | || (_| || || | | | | || (_| || | \ V /| __ /\__ \| |_| __ /| |
\____/|_| |_| |_| \__,_||_||_| \_| |_/ \__,_||_| \_/ \___||___/ \__|\___||_|
2016-04-17 01:20:38 +08:00
2016-04-19 18:20:42 +08:00
A tool to retrieve Domain email addresses from Search Engines | @maldevel
2016-04-30 16:01:21 +08:00
Version: 1.3.2
2016-04-17 01:20:38 +08:00
2016-04-19 18:20:42 +08:00
optional arguments:
-h, --help show this help message and exit
-d DOMAIN, --domain DOMAIN
Domain to search.
2016-04-22 17:24:56 +08:00
-s FILE, --save FILE Save the results into a TXT and XML file (both).
2016-04-19 18:20:42 +08:00
-e ENGINE, --engine ENGINE
Select search engine(google, bing, yahoo, ask, all).
-l LIMIT, --limit LIMIT
Limit the number of results.
2016-04-20 22:55:26 +08:00
-u USER-AGENT, --user-agent USER-AGENT
Set the User-Agent request header.
-x PROXY, --proxy PROXY
Setup proxy server (example: http://127.0.0.1:8080)
2016-04-22 17:24:56 +08:00
--noprint EmailHarvester will print discovered emails to terminal.
It is possible to tell EmailHarvester not to print results to terminal with this option.
2016-04-23 17:47:07 +08:00
-r EXCLUDED_PLUGINS, --exclude EXCLUDED_PLUGINS
Plugins to exclude when you choose 'all' for search engine (eg. '-r google,twitter')
-p, --list-plugins List all available plugins.
2016-04-17 01:20:38 +08:00
```
Examples
=====
2016-04-19 18:23:08 +08:00
**Search in Google**
* ./EmailHarvester.py -d example.com -e google
2016-04-19 18:20:42 +08:00
2016-04-23 17:35:11 +08:00
**Search in site using Search engines**
* ./EmailHarvester.py -d example.com -e linkedin
* ./EmailHarvester.py -d example.com -e twitter
* ./EmailHarvester.py -d example.com -e googleplus
2016-04-23 17:48:17 +08:00
**Search in all engines/sites**
2016-04-19 18:23:08 +08:00
* ./EmailHarvester.py -d example.com -e all
2016-04-19 18:20:42 +08:00
2016-04-23 17:48:17 +08:00
**Search in all engines/sites but exclude some**
* ./EmailHarvester.py -d example.com -e all -r twitter,ask
2016-04-19 18:23:08 +08:00
**Limit results**
* ./EmailHarvester.py -d example.com -e all -l 200
2016-04-17 01:20:38 +08:00
2016-04-20 22:55:26 +08:00
**Export emails**
* ./EmailHarvester.py -d example.com -e all -l 200 -s emails.txt
**Custom User-Agent string**
* ./EmailHarvester.py -d example.com -e all -u "MyUserAgentString 1.0"
**Proxy Server**
* ./EmailHarvester.py -d example.com -e all -x http://127.0.0.1:8080
2017-05-01 03:23:15 +08:00