EmailFinder : Search Emails From A Domain Through Search Engines

EmailFinder is a tool to search emails through Search Engines. The software is designed to check a company’s emails found in the search engines

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

Installation

> pip3 install emailfinder

Upgrades are also available using

> pip3 install emailfinder –upgrade

Search Engines

  • google: Ok (note cookies policy and Captcha!).
  • bing: OK.
  • baidu: OK (few requests).
  • bing: Hunting Robots very fast.

Usage

EmailFinder can be used in 2 ways:

CLI

emailfinder -d domain.com

Parameters:

  • d: Specifies the target domain.
  • v: Show EmailFinder version.

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”)

Example

R K

Recent Posts

How Web Application Firewalls (WAFs) Work

General Working of a Web Application Firewall (WAF) A Web Application Firewall (WAF) acts as…

7 days ago

How to Send POST Requests Using curl in Linux

How to Send POST Requests Using curl in Linux If you work with APIs, servers,…

7 days ago

What Does chmod 777 Mean in Linux

If you are a Linux user, you have probably seen commands like chmod 777 while…

7 days ago

How to Undo and Redo in Vim or Vi

Vim and Vi are among the most powerful text editors in the Linux world. They…

7 days ago

How to Unzip and Extract Files in Linux

Working with compressed files is a common task for any Linux user. Whether you are…

7 days ago

Free Email Lookup Tools and Reverse Email Search Resources

In the digital era, an email address can reveal much more than just a contact…

7 days ago