├── .gitignore ├── LICENSE ├── README.md ├── asm.py ├── keylist.asm ├── modules ├── buckethunter.py ├── censys.py ├── dnsdumpster.py ├── hosthunter.py ├── hunterio.py ├── screencapture.py ├── shodan.py ├── subbrute.py ├── subhunter.py ├── urlscanio.py ├── webscraper.py ├── weleakinfo.py └── whois_collector.py ├── requirements.txt └── resources ├── bitquark_top100k_sublist.txt ├── commonspeak_sublist.txt ├── resolvers.txt ├── top1000_sublist.txt └── top100_sublist.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/README.md -------------------------------------------------------------------------------- /asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/asm.py -------------------------------------------------------------------------------- /keylist.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/keylist.asm -------------------------------------------------------------------------------- /modules/buckethunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/buckethunter.py -------------------------------------------------------------------------------- /modules/censys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/censys.py -------------------------------------------------------------------------------- /modules/dnsdumpster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/dnsdumpster.py -------------------------------------------------------------------------------- /modules/hosthunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/hosthunter.py -------------------------------------------------------------------------------- /modules/hunterio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/hunterio.py -------------------------------------------------------------------------------- /modules/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/screencapture.py -------------------------------------------------------------------------------- /modules/shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/shodan.py -------------------------------------------------------------------------------- /modules/subbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/subbrute.py -------------------------------------------------------------------------------- /modules/subhunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/subhunter.py -------------------------------------------------------------------------------- /modules/urlscanio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/urlscanio.py -------------------------------------------------------------------------------- /modules/webscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/webscraper.py -------------------------------------------------------------------------------- /modules/weleakinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/weleakinfo.py -------------------------------------------------------------------------------- /modules/whois_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/modules/whois_collector.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/bitquark_top100k_sublist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/resources/bitquark_top100k_sublist.txt -------------------------------------------------------------------------------- /resources/commonspeak_sublist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/resources/commonspeak_sublist.txt -------------------------------------------------------------------------------- /resources/resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/resources/resolvers.txt -------------------------------------------------------------------------------- /resources/top1000_sublist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/resources/top1000_sublist.txt -------------------------------------------------------------------------------- /resources/top100_sublist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superhedgy/AttackSurfaceMapper/HEAD/resources/top100_sublist.txt --------------------------------------------------------------------------------