From 61119ee009a90bb5365f95276a755a8948fe83e9 Mon Sep 17 00:00:00 2001 From: vSpaike <153102900+vSpaike@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:10:35 +0100 Subject: [PATCH] tets --- client/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/app.py b/client/app.py index a277ddc..147f524 100644 --- a/client/app.py +++ b/client/app.py @@ -1,5 +1,5 @@ from scapy.all import * for i in range(512,2048): - pkt = IP(dst='locahost') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP() - sr(pkt) + pkt = IP(dst='web') / IP(src='192.168.1.69')/ TCP(dport=80,sport=i,flags='S') / ICMP() + send(pkt, loop=1)