Take a list of domains and probe for working HTTP and HTTPS servers
Take a list of domains and probe for working http and https servers.
Install
▶ go get -u github.com/tomnomnom/httprobe
Basic Usage
httprobe accepts line-delimited domains on stdin
:
▶ cat recon/example/domains.txt
example.com
example.edu
example.net
▶ cat recon/example/domains.txt | httprobe
http://example.com
http://example.net
http://example.edu
https://example.com
https://example.edu
https://example.net
By default httprobe checks for HTTP on port 80 and HTTPS on port 443. You can add additional probes with the -p
flag by specifying a protocol and port pair:
▶ cat domains.txt | httprobe -p http:81 -p https:8443
Concurrency
You can set the concurrency level with the -c
flag:
▶ cat domains.txt | httprobe -c 50
Timeout
You can change the timeout by using the -t
flag and specifying a timeout in milliseconds:
▶ cat domains.txt | httprobe -t 20000
Skipping Default Probes
If you don’t want to probe