shoxf/scanpn

8 lines
144 B
Bash
Executable File

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