shoxf/scanall

8 lines
148 B
Plaintext
Raw Normal View History

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