Advertisement
zNastyServers

AMP List Scanning Tut.

Oct 17th, 2017
2,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. SSDP Scan & Filter Commands:
  2. screen ./ssdpscan 1.1.1.1 255.255.255.255 unfilteredssdp.txt 15 10 100
  3.  
  4. cat unfilteredssdp.txt | awk '{if($2 > 250){print $1}}' > filter1.txt
  5.  
  6. cat filter1.txt | awk '{print $1}' | sort -n | uniq -c | awk '$1 > 10' | awk '{print $2 " " $1}' > ssdp_amp.txt
  7.  
  8. NTP Scan & Filter Commands:
  9. screen zmap -p 123 -M udp --probe-args=file:/root/ntp_123_monlist.pkt -o monlist_fingerprint.txt
  10.  
  11. screen ./ntpchecker monlist_fingerprint.txt step1.txt 1 0 1
  12.  
  13. awk '$2>419{print $1}' step1.txt | sort -n | uniq | sort -R > ntp_amp.txt
  14.  
  15. DNS Scan Command:
  16. screen ./dnsscanner 1 255 dns_amp.txt 15 1
  17.  
  18. MSSQL Scan Command:
  19. screen ./MSSQLSCAN 1.1.1.1 255.255.255.255 sql_amp.txt 15 0
  20.  
  21. TS3 Scan Command:
  22. screen ./ts3scan 1.1.1.1 255.255.255.255 ts3_amp.txt 15 100
  23.  
  24.  
  25. Quake Scan Command:
  26. screen ./quake_scanner 1.1.1.1 255.255.255.255 quake_amp.txt 15 100 50
  27.  
  28. Chargen Scan Command:
  29. screen ./chargescan 1.1.1.1 255.255.255.255 chargen_amp.txt 15 100
  30.  
  31. SNMP Scan Command:
  32. screen ./snmpscan 1.1.1.1 255.255.255.255 snmp_amp.txt 15 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement