scapy基本操作
首先通过pip安装scapy
pip3 install scapy
然后就可以在窗口打开scapy
ip=IP(dst ="目标ip")
构建广播数据包
Ether(dst="FF:FF:FF:FF:FF:F
2022-04-13