EmailHarvester/README.md

70 lines
1.9 KiB
Markdown
Raw Normal View History

2016-04-17 01:20:38 +08:00
EmailHarvester
====
* A tool to retrieve Domain email addresses from Search Engines
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-17 01:20:38 +08:00
Features
=====
2016-04-19 18:20:42 +08:00
* Retrieve Domain email addresses from Search Engines
* Google
* Bing
* Yahoo
* ASK
2016-04-17 01:20:38 +08:00
Download/Installation
====
* git clone https://github.com/maldevel/EmailHarvester
2016-04-19 18:20:42 +08:00
* pip install -r requirements.txt --user
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-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
Version: 1.0
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.
-s FILE, --save FILE Save the results into a TXT and XML file.
-e ENGINE, --engine ENGINE
Select search engine(google, bing, yahoo, ask, all).
-l LIMIT, --limit LIMIT
Limit the number of results.
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-19 18:23:08 +08:00
**Search in all engines**
* ./EmailHarvester.py -d example.com -e all
2016-04-19 18:20:42 +08:00
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