zl程序教程

您现在的位置是:首页 >  后端

当前栏目

python发送伪造的arp请求

Python 请求 发送 ARP 伪造
2023-06-13 09:15:15 时间

复制代码代码如下:


#!/usr/bin/envpython
importsocket

s=socket.socket(socket.AF_PACKET,socket.SOCK_RAW)
s.bind(("lo",0))

src_addr="\x50\x3d\xe5\x0e\x35\x3f"
dst_addr="\xff\xff\xff\xff\xff\xff"
ethertype="\x08\x06"


s.send(dst_addr+src_addr+ethertype+"\x00\x01"+"\x08\x00"+"\x06"+"\x04"+"\x00\x01"+src_addr+"\x7f\x00\x00\x01"+"\x00\x00\x00\x00\x00\x00"+"\x7f\x00\x00\x01")