shoxf/scann

8 lines
160 B
Bash
Executable File

#!/bin/bash
for fn in $@; do
echo "scanning $fn"
nmap -p 1231,1232,1233,1234,1337,9002 -T4 --script http-headers,ssl-cert $fn | tee -a "index/$fn.txt" &
done