publicscripts/pbatch/nmap-tcp-full-add

5 lines
142 B
Text
Raw Normal View History

2009-02-16 12:04:51 +00:00
#!/bin/bash
for i in $(cat targets);do
./pb.rb add nmap -PN -v -r -sS -sV --version-light --reason -O -p- -T4 -oN nmap-sS.${i}.txt ${i}
done