Python 使用Scapy模块编写ARP主机存活扫描
Posted code0x
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 使用Scapy模块编写ARP主机存活扫描相关的知识,希望对你有一定的参考价值。
代码
1 import sys
2 if len(sys.argv) != 2:
3 print("Usage:aprPing <IP>
eg:arpPing 192.168.1.1")
4 sys.exit(1)
5 from scapy.all import srp,Ether,ARP
6 ans,unans = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=sys.argv[1]),timeout=3)
7 for s,r in ans:
8 print("Target is alive")
9 print(r[Ether].src,r[ARP].psrc)
使用sys模块来输入数据,使用srp()函数扫描输入ip,如果扫描到返回的包,则会被遍历,打印出目标MAC地址和IP地址
调用
eg: python arpPing.py 192.168.1.128
以上是关于Python 使用Scapy模块编写ARP主机存活扫描的主要内容,如果未能解决你的问题,请参考以下文章