如果使用 python / scapy 已知主机的 Mac 地址,如何获取主机的 IP 地址
如果计算机的 mac 地址已知,我如何获取计算机的 IP 地址,使用 python 和 scapy 可能是
How can i get the IP address of a computer if its mac address is known , using python and scapy may be
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 arp 缓存中的信息:
您可以自己在 Unix 上解析“arp -a”的结果,或者查看
http://libdnet.sourceforge.net/dnet.html
提供从 Python 访问 ARP 缓存的权限。
You might use the information from the arp cache:
Either you parse the result of "arp -a" on Unix yourself or look at
http://libdnet.sourceforge.net/dnet.html
providing access to the ARP cache from Python.
也许你可以使用 arp-scan,但是你必须以 root 身份运行 :
Perhaps you could use arp-scan, but then you'd have to run as root: