├── .gitignore ├── LICENSE ├── README.md ├── billcipher.py ├── modules ├── Breacher │ ├── LICENSE │ ├── README.md │ ├── breacher.py │ └── paths.txt ├── HatCloud │ ├── LICENSE │ ├── README.md │ └── hatcloud.rb ├── Infoga │ ├── README.md │ ├── infoga.py │ ├── lib │ │ ├── __pycache__ │ │ │ ├── banner.cpython-36.pyc │ │ │ ├── check.cpython-36.pyc │ │ │ ├── colors.cpython-36.pyc │ │ │ ├── output.cpython-36.pyc │ │ │ ├── parser.cpython-36.pyc │ │ │ └── request.cpython-36.pyc │ │ ├── banner.py │ │ ├── check.py │ │ ├── colors.py │ │ ├── output.py │ │ ├── parser.py │ │ └── request.py │ └── recon │ │ ├── __pycache__ │ │ ├── ask.cpython-36.pyc │ │ ├── baidu.cpython-36.pyc │ │ ├── bing.cpython-36.pyc │ │ ├── dogpile.cpython-36.pyc │ │ ├── exalead.cpython-36.pyc │ │ ├── google.cpython-36.pyc │ │ ├── mailtester.cpython-36.pyc │ │ ├── pgp.cpython-36.pyc │ │ ├── pwned.cpython-36.pyc │ │ ├── shodan.cpython-36.pyc │ │ └── yahoo.cpython-36.pyc │ │ ├── ask.py │ │ ├── baidu.py │ │ ├── bing.py │ │ ├── dogpile.py │ │ ├── exalead.py │ │ ├── google.py │ │ ├── mailtester.py │ │ ├── pgp.py │ │ ├── pwned.py │ │ ├── shodan.py │ │ └── yahoo.py └── Sublist3r │ ├── LICENSE │ ├── README.md │ ├── requirements.txt │ ├── subbrute │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── subbrute.cpython-36.pyc │ ├── names.txt │ ├── resolvers.txt │ └── subbrute.py │ └── sublist3r.py ├── requirements.txt └── websource └── READNE.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/README.md -------------------------------------------------------------------------------- /billcipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/billcipher.py -------------------------------------------------------------------------------- /modules/Breacher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Breacher/LICENSE -------------------------------------------------------------------------------- /modules/Breacher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Breacher/README.md -------------------------------------------------------------------------------- /modules/Breacher/breacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Breacher/breacher.py -------------------------------------------------------------------------------- /modules/Breacher/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Breacher/paths.txt -------------------------------------------------------------------------------- /modules/HatCloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/HatCloud/LICENSE -------------------------------------------------------------------------------- /modules/HatCloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/HatCloud/README.md -------------------------------------------------------------------------------- /modules/HatCloud/hatcloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/HatCloud/hatcloud.rb -------------------------------------------------------------------------------- /modules/Infoga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/README.md -------------------------------------------------------------------------------- /modules/Infoga/infoga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/infoga.py -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/banner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/banner.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/check.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/check.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/colors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/colors.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/output.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/output.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/parser.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/parser.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/__pycache__/request.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/__pycache__/request.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/lib/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/banner.py -------------------------------------------------------------------------------- /modules/Infoga/lib/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/check.py -------------------------------------------------------------------------------- /modules/Infoga/lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/colors.py -------------------------------------------------------------------------------- /modules/Infoga/lib/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/output.py -------------------------------------------------------------------------------- /modules/Infoga/lib/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/parser.py -------------------------------------------------------------------------------- /modules/Infoga/lib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/lib/request.py -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/ask.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/ask.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/baidu.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/baidu.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/bing.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/bing.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/dogpile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/dogpile.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/exalead.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/exalead.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/google.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/google.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/mailtester.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/mailtester.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/pgp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/pgp.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/pwned.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/pwned.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/shodan.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/shodan.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/__pycache__/yahoo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/__pycache__/yahoo.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Infoga/recon/ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/ask.py -------------------------------------------------------------------------------- /modules/Infoga/recon/baidu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/baidu.py -------------------------------------------------------------------------------- /modules/Infoga/recon/bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/bing.py -------------------------------------------------------------------------------- /modules/Infoga/recon/dogpile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/dogpile.py -------------------------------------------------------------------------------- /modules/Infoga/recon/exalead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/exalead.py -------------------------------------------------------------------------------- /modules/Infoga/recon/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/google.py -------------------------------------------------------------------------------- /modules/Infoga/recon/mailtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/mailtester.py -------------------------------------------------------------------------------- /modules/Infoga/recon/pgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/pgp.py -------------------------------------------------------------------------------- /modules/Infoga/recon/pwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/pwned.py -------------------------------------------------------------------------------- /modules/Infoga/recon/shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/shodan.py -------------------------------------------------------------------------------- /modules/Infoga/recon/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Infoga/recon/yahoo.py -------------------------------------------------------------------------------- /modules/Sublist3r/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/LICENSE -------------------------------------------------------------------------------- /modules/Sublist3r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/README.md -------------------------------------------------------------------------------- /modules/Sublist3r/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | dnspython 3 | requests 4 | -------------------------------------------------------------------------------- /modules/Sublist3r/subbrute/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/subbrute/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Sublist3r/subbrute/__pycache__/subbrute.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/subbrute/__pycache__/subbrute.cpython-36.pyc -------------------------------------------------------------------------------- /modules/Sublist3r/subbrute/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/subbrute/names.txt -------------------------------------------------------------------------------- /modules/Sublist3r/subbrute/resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/subbrute/resolvers.txt -------------------------------------------------------------------------------- /modules/Sublist3r/subbrute/subbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/subbrute/subbrute.py -------------------------------------------------------------------------------- /modules/Sublist3r/sublist3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahatiphill/BillCipher/HEAD/modules/Sublist3r/sublist3r.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | dnspython 3 | requests 4 | -------------------------------------------------------------------------------- /websource/READNE.md: -------------------------------------------------------------------------------- 1 | Folder to save the websites source 2 | --------------------------------------------------------------------------------