--prefer-https dont work
Tried reinstalling it to latest but still getting:
flag provided but not defined: -prefer-https Usage of httprobe: -c int set the concurrency level (default 20) -p value add additional probe (proto:port) -s skip the default probes (http:80 and https:443) -t int timeout (milliseconds) (default 10000) -v output errors to stderr****
Tried to use -p:443 and -p:443 -s with same results
i got the same issue
then i do it manually by
cat domain | httprobe | anew output
cat output | grep https > hosts
When installing using
go install github.com/tomnomnom/httprobe@latest
it installs an older version without support for the flag --prefer-https
use
go install github.com/tomnomnom/httprobe@master
this will install updated version and support --prefer-https flag