why tf does veepn have ipv6

This commit is contained in:
vulpine 2020-11-15 18:12:11 -05:00
parent cd77a2eb1b
commit 26bccaf78b
2 changed files with 8 additions and 1 deletions

7
scanap6 Executable file
View File

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

2
scanas
View File

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