publicscripts/pbatch/nmap-tcp-1000-add

5 lines
146 B
Text
Raw Permalink Normal View History

2009-02-25 09:10:35 +00:00
#!/usr/bin/env bash
2009-01-29 09:03:58 +00:00
for i in $(cat targets);do
2009-11-30 15:59:57 +00:00
./pb.rb add nmap -PN -v -r -sS -sV --version-light --reason -O -T4 -oN nmap-sS.${i}.txt ${i}
2009-01-29 09:03:58 +00:00
done