This commit is contained in:
vSpaike 2024-12-17 16:10:35 +01:00
parent 155b6b5791
commit 61119ee009

View file

@ -1,5 +1,5 @@
from scapy.all import * from scapy.all import *
for i in range(512,2048): for i in range(512,2048):
pkt = IP(dst='locahost') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP() pkt = IP(dst='web') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP()
sr(pkt) send(pkt, loop=1)