标签: python scapy
如果我尝试使用scapy发送带有python的UDP数据包
from scapy.all import * data= "hello" a = IP(dst="192.168.192.145")/UDP(dport=1194)/Raw(load=data) send(a) a.show()
它表示格式错误和wireshark中的DNS协议
我哪里错了?
答案 0 :(得分:1)
我通过将源端口设置为50000