meer support scripts

This commit is contained in:
Ward Wouts 2009-02-16 12:04:51 +00:00
parent 3a88e1a752
commit 1dea8c767a
2 changed files with 8 additions and 0 deletions

4
pbatch/nmap-tcp-full-add Executable file
View file

@ -0,0 +1,4 @@
#!/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

4
pbatch/nmap-udp-full-add Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
for i in $(cat targets);do
./pb.rb add nmap -PN -v -r -sU -sV --version-light --reason -p- -T4 -oN nmap-sU.${i}.txt ${i}
done