From 9ef956eea30fd80afa870df697840c6f90a72859 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Wed, 7 Jun 2023 15:35:06 +0100 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f74842e..ebed7d8 100644 --- a/README.md +++ b/README.md @@ -487,9 +487,9 @@ gs-netcat -p 1080 echo -e "[ProxyList]\nsocks5 127.0.0.1 1080" >pc.conf proxychains -f pc.conf -q curl ipinfo.io ## Scan the router at 192.168.1.1 -proxychains -f pc.conf -q nmap -n -Pn -sT -F --open --script=banner 192.168.1.1 +proxychains -f pc.conf -q nmap -n -Pn -sV -F --open 192.168.1.1 ## Start 10 nmaps in parallel: -seq 1 254 | xargs -P10 -I{} proxychains -f pc.conf -q nmap -n -Pn -sT -F --open --script=banner --script-timeout=5s 192.168.1.{} +seq 1 254 | xargs -P10 -I{} proxychains -f pc.conf -q nmap -n -Pn -sV -F --open 192.168.1.{} ``` @@ -540,7 +540,10 @@ curl https://internetdb.shodan.io/1.1.1.1 Fast (-F) vulnerability scan ```shell -nmap -A -T5 -F -Pn --min-rate 10000 --script vulners.nse scanme.nmap.org +# Version gathering +nmap -sCV -F -Pn --min-rate 10000 scanme.nmap.org +# Vulns +nmap -A -F -Pn --min-rate 10000 --script vulners.nse --script-timeout=5s scanme.nmap.org ```