We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if httprobe accepts massscan or nmap output, no need to 'guess' for http ports :)
The text was updated successfully, but these errors were encountered:
bump
Sorry, something went wrong.
@greckko a work around i put together is something like this
cat filename.gnmap | grep Ports | cut -d ":" -f 3 | tr "," "\n" | grep -iv nmap | grep -i http | cut -d "/" -f 1 | tr -d " " | sort | uniq
that will give you a list of http/s ports from nmap then you can wrap that in a loop and append it to the query as such
for i in $(the above command would go here); do cat domains.txt | httprobe -s -p https:$i done
Or if you are in a hurry and need the results a bit faster you can do this
cat filename.gnmap | grep Ports | cut -d ":" -f 3 | tr "," "\n" | grep -iv nmap | grep -i http | cut -d "/" -f 1 | tr -d " " | sort | uniq | parallel -j 10 -k "cat domains.txt | httprobe -s -p https:${}"
if you are curious to know what in heavens are all those commands and flags...https://explainshell.com/
No branches or pull requests
It would be nice if httprobe accepts massscan or nmap output, no need to 'guess' for http ports :)
The text was updated successfully, but these errors were encountered: