码迷,mamicode.com
首页 > 编程语言 > 详细

Python 使用Scapy模块编写ARP主机存活扫描

时间:2020-01-27 23:37:55      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:span   tar   python   src   ip地址   get   eth   bsp   rom   

代码

1 import sys
2 if len(sys.argv) != 2:
3     print("Usage:aprPing <IP>\n 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主机存活扫描

标签:span   tar   python   src   ip地址   get   eth   bsp   rom   

原文地址:https://www.cnblogs.com/code0x/p/12236982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!