├── .gitignore ├── README.md ├── emailosint.py ├── lib ├── __init__.py ├── banner.py ├── check.py ├── color.py ├── output.py ├── parser.py └── request.py ├── recon ├── __init__.py ├── ask.py ├── baidu.py ├── bing.py ├── dogpile.py ├── exalead.py ├── google.py ├── mailtester.py ├── pgp.py ├── pwned.py ├── shodan.py └── yahoo.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/README.md -------------------------------------------------------------------------------- /emailosint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/emailosint.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/banner.py -------------------------------------------------------------------------------- /lib/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/check.py -------------------------------------------------------------------------------- /lib/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/color.py -------------------------------------------------------------------------------- /lib/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/output.py -------------------------------------------------------------------------------- /lib/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/parser.py -------------------------------------------------------------------------------- /lib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/lib/request.py -------------------------------------------------------------------------------- /recon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recon/ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/ask.py -------------------------------------------------------------------------------- /recon/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/baidu.py -------------------------------------------------------------------------------- /recon/bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/bing.py -------------------------------------------------------------------------------- /recon/dogpile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/dogpile.py -------------------------------------------------------------------------------- /recon/exalead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/exalead.py -------------------------------------------------------------------------------- /recon/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/google.py -------------------------------------------------------------------------------- /recon/mailtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/mailtester.py -------------------------------------------------------------------------------- /recon/pgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/pgp.py -------------------------------------------------------------------------------- /recon/pwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/pwned.py -------------------------------------------------------------------------------- /recon/shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/shodan.py -------------------------------------------------------------------------------- /recon/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/recon/yahoo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | requests 3 | urllib3 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishpranav/emailosint/HEAD/setup.py --------------------------------------------------------------------------------