scan all slow

This commit is contained in:
vulpine 2020-09-28 11:24:10 -04:00
parent dca963cf44
commit 84738cbe61
3 changed files with 9 additions and 2 deletions

2
scan1
View File

@ -1,4 +1,4 @@
#!/bin/bash
nmap -A -T4 --script ssl-cert,http-headers $@ | tee -a "index/$1.txt"
nmap -A -T4 --min-rate 5000 --script ssl-cert,http-headers $@ | tee -a "index/$1.txt"

2
scanap
View File

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

7
scanas Executable file
View File

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