pentesting 0.52.2 → 0.54.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,10 +23,10 @@ nmap -Pn -p<ports> -sV -sC -O <target>
23
23
  # 5. UDP Key Services
24
24
  nmap -Pn -sU --top-ports 30 --min-rate=100 <target>
25
25
 
26
- # 6. High-Speed Subnet Scan
27
- masscan <CIDR> -p1-65535 --rate=1000 -oJ .pentesting/workspace/masscan.json
26
+ # 6. Full TCP Connect Scan (Tor-compatible)
27
+ nmap -Pn -sT -p- -T4 --min-rate=1000 <target>
28
28
 
29
- # 7. Stealth SYN Scan
29
+ # 7. Stealth SYN Scan (local network only, not Tor-compatible)
30
30
  nmap -Pn -sS -T2 --max-retries=1 <target>
31
31
  ```
32
32