httprobe icon indicating copy to clipboard operation
httprobe copied to clipboard

--prefer-https dont work

Open oxgreyhound opened this issue 2 years ago • 2 comments

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

oxgreyhound avatar Dec 29 '23 08:12 oxgreyhound

i got the same issue then i do it manually by cat domain | httprobe | anew output cat output | grep https > hosts

Lilulubun avatar Jan 05 '24 07:01 Lilulubun

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

anurag708989 avatar Jan 20 '24 22:01 anurag708989