shoxf/scanudp

8 lines
135 B
Bash
Executable File

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