├── .gitignore ├── README.md ├── core └── templates │ ├── bugs.config │ ├── bugs2.config │ ├── dirfuzz.config │ ├── jsmagic.config │ ├── probeNtakeover.config │ ├── resolver.config │ └── subs.config ├── database ├── gfPatterns │ ├── aws-keys.json │ ├── cors.json │ ├── credentials1.json │ ├── credentials2.json │ ├── credentials3.json │ ├── credentials4.json │ ├── credentials5.json │ ├── gcm-keys.json │ ├── redirects.json │ ├── s3-buckets.json │ ├── secrets.json │ └── ssrf.json ├── tools │ ├── FavFreak │ │ ├── README.md │ │ ├── favfreak.py │ │ ├── requirements.txt │ │ └── static │ │ │ ├── favfreak.PNG │ │ │ └── logo.PNG │ ├── bfac │ │ ├── bfac │ │ ├── bfac.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── build │ │ │ └── scripts-3.7 │ │ │ │ └── bfac │ │ ├── dist │ │ │ └── bfac-1.4-py3.7.egg │ │ ├── requirements.txt │ │ └── setup.py │ ├── massdns │ │ ├── lists │ │ │ ├── names.txt │ │ │ ├── names_small.txt │ │ │ └── resolvers.txt │ │ └── massdns │ └── scripts │ │ ├── nmap_scan.py │ │ └── subdomains-recondev.py └── wordlists │ ├── files.txt │ └── folders.txt ├── documentation ├── dependencies.md ├── flow-architecture.md ├── install-dependencies.sh ├── requirements.txt └── usage-examples.py ├── modules ├── __init__.py ├── endpoint-extractor.py ├── jsonReader.py ├── processor.py ├── pylogger.py └── slacker.py ├── providers.json └── scanner.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | modules/__pycache__* 3 | results/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/README.md -------------------------------------------------------------------------------- /core/templates/bugs.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/bugs.config -------------------------------------------------------------------------------- /core/templates/bugs2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/bugs2.config -------------------------------------------------------------------------------- /core/templates/dirfuzz.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/dirfuzz.config -------------------------------------------------------------------------------- /core/templates/jsmagic.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/jsmagic.config -------------------------------------------------------------------------------- /core/templates/probeNtakeover.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/probeNtakeover.config -------------------------------------------------------------------------------- /core/templates/resolver.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/resolver.config -------------------------------------------------------------------------------- /core/templates/subs.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/core/templates/subs.config -------------------------------------------------------------------------------- /database/gfPatterns/aws-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/aws-keys.json -------------------------------------------------------------------------------- /database/gfPatterns/cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/cors.json -------------------------------------------------------------------------------- /database/gfPatterns/credentials1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/credentials1.json -------------------------------------------------------------------------------- /database/gfPatterns/credentials2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/credentials2.json -------------------------------------------------------------------------------- /database/gfPatterns/credentials3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/credentials3.json -------------------------------------------------------------------------------- /database/gfPatterns/credentials4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/credentials4.json -------------------------------------------------------------------------------- /database/gfPatterns/credentials5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/credentials5.json -------------------------------------------------------------------------------- /database/gfPatterns/gcm-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/gcm-keys.json -------------------------------------------------------------------------------- /database/gfPatterns/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/redirects.json -------------------------------------------------------------------------------- /database/gfPatterns/s3-buckets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/s3-buckets.json -------------------------------------------------------------------------------- /database/gfPatterns/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/secrets.json -------------------------------------------------------------------------------- /database/gfPatterns/ssrf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/gfPatterns/ssrf.json -------------------------------------------------------------------------------- /database/tools/FavFreak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/FavFreak/README.md -------------------------------------------------------------------------------- /database/tools/FavFreak/favfreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/FavFreak/favfreak.py -------------------------------------------------------------------------------- /database/tools/FavFreak/requirements.txt: -------------------------------------------------------------------------------- 1 | mmh3==2.5.1 -------------------------------------------------------------------------------- /database/tools/FavFreak/static/favfreak.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/FavFreak/static/favfreak.PNG -------------------------------------------------------------------------------- /database/tools/FavFreak/static/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/FavFreak/static/logo.PNG -------------------------------------------------------------------------------- /database/tools/bfac/bfac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/bfac -------------------------------------------------------------------------------- /database/tools/bfac/bfac.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/bfac.egg-info/PKG-INFO -------------------------------------------------------------------------------- /database/tools/bfac/bfac.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/bfac.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /database/tools/bfac/bfac.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/tools/bfac/bfac.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/bfac.egg-info/requires.txt -------------------------------------------------------------------------------- /database/tools/bfac/bfac.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/tools/bfac/build/scripts-3.7/bfac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/build/scripts-3.7/bfac -------------------------------------------------------------------------------- /database/tools/bfac/dist/bfac-1.4-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/dist/bfac-1.4-py3.7.egg -------------------------------------------------------------------------------- /database/tools/bfac/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/requirements.txt -------------------------------------------------------------------------------- /database/tools/bfac/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/bfac/setup.py -------------------------------------------------------------------------------- /database/tools/massdns/lists/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/massdns/lists/names.txt -------------------------------------------------------------------------------- /database/tools/massdns/lists/names_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/massdns/lists/names_small.txt -------------------------------------------------------------------------------- /database/tools/massdns/lists/resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/massdns/lists/resolvers.txt -------------------------------------------------------------------------------- /database/tools/massdns/massdns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/massdns/massdns -------------------------------------------------------------------------------- /database/tools/scripts/nmap_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/scripts/nmap_scan.py -------------------------------------------------------------------------------- /database/tools/scripts/subdomains-recondev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/tools/scripts/subdomains-recondev.py -------------------------------------------------------------------------------- /database/wordlists/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/wordlists/files.txt -------------------------------------------------------------------------------- /database/wordlists/folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/database/wordlists/folders.txt -------------------------------------------------------------------------------- /documentation/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/documentation/dependencies.md -------------------------------------------------------------------------------- /documentation/flow-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/documentation/flow-architecture.md -------------------------------------------------------------------------------- /documentation/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/documentation/install-dependencies.sh -------------------------------------------------------------------------------- /documentation/requirements.txt: -------------------------------------------------------------------------------- 1 | slackclient 2 | argparse -------------------------------------------------------------------------------- /documentation/usage-examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/documentation/usage-examples.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/endpoint-extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/modules/endpoint-extractor.py -------------------------------------------------------------------------------- /modules/jsonReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/modules/jsonReader.py -------------------------------------------------------------------------------- /modules/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/modules/processor.py -------------------------------------------------------------------------------- /modules/pylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/modules/pylogger.py -------------------------------------------------------------------------------- /modules/slacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/modules/slacker.py -------------------------------------------------------------------------------- /providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/providers.json -------------------------------------------------------------------------------- /scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdmiralGaust/bountyReconV2/HEAD/scanner.py --------------------------------------------------------------------------------