Skip to content
Discussion options

You must be logged in to vote

You can use the -p flag to add custom ports! Here's how it works:

cat subs.txt | httprobe -p http:8080 -p https:8443

This will check the default ports (80/443) plus your custom ones. The format is protocol:port.

If you want to only check custom ports and skip the defaults, use the -s (skip default) flag:

cat subs.txt | httprobe -s -p http:8080 -p https:8443

You can also combine multiple -p flags:

cat subs.txt | httprobe -p http:8080 -p http:8000 -p https:8443 -p https:4443

One thing to note: the input list should just be clean hostnames (one per line), no protocol prefixes. httprobe handles the protocol/port combinations itself.

The -s flag is super useful when you're specifically hunting…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by clarabennettdev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant