Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Reverse is also true.' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Reverse is also true.
Authored by: steviant on Jul 17, '02 12:23:32AM

It's also possible to kludge Network Utility to use nmap to portscan by making a script like this called stroke in place of the featureless portscanner included by default (you can include extra command line parameters in the IP field)...

#!/bin/sh
if [ "$2" = "0" ]; then
/sw/bin/nmap -p 1-$3 $1
else
/sw/bin/nmap -p $2-$3 $1
fi

This one uses nmap as installed by fink, if you're using a .pkg'd nmap, then you need to point the script at the right place.

don't forget to chmod +x the script afterwards. :)



[ Reply to This | # ]