shoxf/scan
2020-09-12 22:19:19 -04:00

8 lines
128 B
Bash
Executable File

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