Advertisement
KhaosBringer

DDoS Amp Scan Commands

Apr 10th, 2015
14,491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. For a detailed video guide on using these commands and download links to the scripts, please see my youtube video located here:
  2. https://www.youtube.com/watch?v=GK_2HCh45qM
  3.  
  4. SSDP Scan & Filter Commands:
  5. screen ./ssdpscan 1.1.1.1 255.255.255.255 unfilteredssdp.txt 15 10 100
  6.  
  7. cat unfilteredssdp.txt | awk '{if($2 > 250){print $1}}' > filter1.txt
  8.  
  9. cat filter1.txt | awk '{print $1}' | sort -n | uniq -c | awk '$1 > 10' | awk '{print $2 " " $1}' > ssdp_amp.txt
  10.  
  11. NTP Scan & Filter Commands:
  12. screen zmap -p 123 -M udp --probe-args=file:/root/ntp_123_monlist.pkt -o monlist_fingerprint.txt
  13.  
  14. screen ./ntpchecker monlist_fingerprint.txt step1.txt 1 0 1
  15.  
  16. awk '$2>419{print $1}' step1.txt | sort -n | uniq | sort -R > ntp_amp.txt
  17.  
  18. DNS Scan Command:
  19. screen ./dnsscanner 1 255 dns_amp.txt 15 1
  20.  
  21. MSSQL Scan Command:
  22. screen ./MSSQLSCAN 1.1.1.1 255.255.255.255 sql_amp.txt 15 0
  23.  
  24. TS3 Scan Command:
  25. screen ./ts3scan 1.1.1.1 255.255.255.255 ts3_amp.txt 15 100
  26.  
  27.  
  28. Quake Scan Command:
  29. screen ./quake_scanner 1.1.1.1 255.255.255.255 quake_amp.txt 15 100 50
  30.  
  31. Chargen Scan Command:
  32. screen ./chargescan 1.1.1.1 255.255.255.255 chargen_amp.txt 15 100
  33.  
  34. SNMP Scan Command:
  35. 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