shoxf/scan53

8 lines
131 B
Bash
Executable File

#!/bin/bash
for fn in $@; do
echo "scanning $fn"
nmap --script http-headers -p 53128 -Pn -T5 $fn | tee -a "index/$fn.txt" &
done