From 3f9ca05a8d78df1a29604d6d9724877236b25ec6 Mon Sep 17 00:00:00 2001 From: Yan Date: Mon, 24 Feb 2025 02:20:28 -0700 Subject: [PATCH] sleep --- intercepting-communication/udp-spoof-host/run | 2 ++ 1 file changed, 2 insertions(+) diff --git a/intercepting-communication/udp-spoof-host/run b/intercepting-communication/udp-spoof-host/run index 609bd53..18cebc4 100755 --- a/intercepting-communication/udp-spoof-host/run +++ b/intercepting-communication/udp-spoof-host/run @@ -31,6 +31,8 @@ class ClientHost(Host): message, (peer_host, peer_port) = client_socket.recvfrom(1024) if peer_port == 31337 and message.strip() == b"FLAG": print(f"YOUR FLAG: {flag}") + + time.sleep(1) except ConnectionError: continue