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

使用Python扫描网络MAC地址对应的IP地址

时间:2015-08-31 23:04:41      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from scapy.all import srp,Ether,ARP,conf
ipscan=‘192.168.200.1/24‘
try:
	    ans,unans = srp(Ether(dst="FF:FF:FF:FF:FF:FF")/ARP(pdst=ipscan),timeout=2,verbose=False)
except Exception,e:
	print str(e)
else:
	for snd,rcv in ans:
		#list_mac=rcv.sprintf("%Ether.src% - %ARP.psrc%")
		#print list_mac
		strmac = rcv.sprintf("%Ether.src%")
		if strmac == ‘b8:27:eb:0e:ea:a5‘:
			strip = rcv.sprintf("%ARP.psrc%")
			print strip

  

使用Python扫描网络MAC地址对应的IP地址

标签:

原文地址:http://www.cnblogs.com/madlas/p/4774292.html

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