├── .gitignore ├── LICENSE ├── README.md ├── blacklist.txt ├── chomp-scan.sh ├── config ├── install.sh ├── interesting.txt ├── requirements2.txt ├── requirements3.txt ├── resolvers.txt ├── screenshots ├── screenshot01.png ├── screenshot02.png ├── screenshot03.png ├── screenshot04.png ├── screenshot05.png ├── screenshot06.png └── screenshot07.png └── wordlists ├── altdns-words.txt ├── big.txt ├── haddix-seclists-combined.txt ├── haddix_content_discovery_all.txt ├── huge-200k.txt ├── provider.json ├── raft-large-combined.txt ├── seclists-combined.txt ├── sortedcombined-knock-dnsrecon-fierce-reconng.txt └── subdomains-top1mil-20000.txt /.gitignore: -------------------------------------------------------------------------------- 1 | config-test 2 | tesla* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/README.md -------------------------------------------------------------------------------- /blacklist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chomp-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/chomp-scan.sh -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/config -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/install.sh -------------------------------------------------------------------------------- /interesting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/interesting.txt -------------------------------------------------------------------------------- /requirements2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/requirements2.txt -------------------------------------------------------------------------------- /requirements3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/requirements3.txt -------------------------------------------------------------------------------- /resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/resolvers.txt -------------------------------------------------------------------------------- /screenshots/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot01.png -------------------------------------------------------------------------------- /screenshots/screenshot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot02.png -------------------------------------------------------------------------------- /screenshots/screenshot03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot03.png -------------------------------------------------------------------------------- /screenshots/screenshot04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot04.png -------------------------------------------------------------------------------- /screenshots/screenshot05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot05.png -------------------------------------------------------------------------------- /screenshots/screenshot06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot06.png -------------------------------------------------------------------------------- /screenshots/screenshot07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/screenshots/screenshot07.png -------------------------------------------------------------------------------- /wordlists/altdns-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/altdns-words.txt -------------------------------------------------------------------------------- /wordlists/big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/big.txt -------------------------------------------------------------------------------- /wordlists/haddix-seclists-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/haddix-seclists-combined.txt -------------------------------------------------------------------------------- /wordlists/haddix_content_discovery_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/haddix_content_discovery_all.txt -------------------------------------------------------------------------------- /wordlists/huge-200k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/huge-200k.txt -------------------------------------------------------------------------------- /wordlists/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/provider.json -------------------------------------------------------------------------------- /wordlists/raft-large-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/raft-large-combined.txt -------------------------------------------------------------------------------- /wordlists/seclists-combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/seclists-combined.txt -------------------------------------------------------------------------------- /wordlists/sortedcombined-knock-dnsrecon-fierce-reconng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/sortedcombined-knock-dnsrecon-fierce-reconng.txt -------------------------------------------------------------------------------- /wordlists/subdomains-top1mil-20000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/chomp-scan/HEAD/wordlists/subdomains-top1mil-20000.txt --------------------------------------------------------------------------------