EmailFinder - search for email addresses from a domain through search engines

Mutt

Professional
Messages
1,057
Reputation
7
Reaction score
595
Points
113
_______ _______ _ ______ _______

(____ \ (____ \ ((/ | (__ \ (____)
| (\ / | (\ / | \ (|| (\) | () |
| (__ | (__ | \ | || |) || (____) |
| __) | __) | (\ \) || | | || __)
| (| (| | \ || |) || (\ (
| (____ / \ |) | ) \ || (__ /) | ) \ \ __
(_______ / | / | /) _) (______ / | / \ __ /


| _ Author: @JosueEncinar
| _ Description: Search emails from a domain through search engines.
| _ Version: 0.1b
| _ Usage: emailfinder -d domain.com

Installation:
Code:
> pip3 install emailfinder

Updating is also possible with:
Code:
> pip3 install emailfinder --upgrade

Search engines
  • google: Ok (pay attention to cookies and Captcha policy!).
  • bing: OK.
  • baidu: OK (multiple requests).
  • bing: Very fast robot hunt.

Using
EmailFinder can be used in two ways:

CLI:
Code:
emailfinder -d domain.com

Parameters:
  • d: Specifies the target domain.
  • v: shows the version of EmailFinder.
In code

from emailfinder.extractor import *

emails1 = get_emails_from_google ("domain.com")
emails2 = get_emails_from_bing ("domain.com")
emails3 = get_emails_from_baidu ("domain.com")

Download
 
Top