improve minecraft scanning

This commit is contained in:
vulpine 2021-04-20 15:48:08 -04:00
parent 5f6bff6056
commit cd993fb36a
3 changed files with 3 additions and 3 deletions

2
mc
View File

@ -7,7 +7,7 @@ nmap -Pn -Ap 25565 $@ |
sort -V "minecraft.txt" | uniq > "minecraft.txt.temp"
sort "minecraft.txt" | uniq > "minecraft.txt.temp"
mv "minecraft.txt.temp" "minecraft.txt"

2
scanap
View File

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

View File

@ -2,6 +2,6 @@
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" &
nmap -6 --script ssl-cert,http-headers -p 443,80,9999,10799,56700 -Pn -T5 $fn | tee -a "index/$fn.txt" &
done