shoxf/scanap

8 lines
150 B
Bash
Executable File

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