From b72ead52a9650c4a9be6771e4636b87022fc28e7 Mon Sep 17 00:00:00 2001 From: Yan Date: Mon, 24 Feb 2025 02:30:29 -0700 Subject: [PATCH] wtf --- intercepting-communication/udp-spoof-host/run | 1 + 1 file changed, 1 insertion(+) diff --git a/intercepting-communication/udp-spoof-host/run b/intercepting-communication/udp-spoof-host/run index cdb1d71..9130359 100755 --- a/intercepting-communication/udp-spoof-host/run +++ b/intercepting-communication/udp-spoof-host/run @@ -32,6 +32,7 @@ class ClientHost(Host): message, (peer_host, peer_port) = client_socket.recvfrom(1024) if peer_port == 31337 and message.strip() == b"FLAG": _, flag_host, flag_port = message.strip().split(b":") + print("SENDING TO:", flag_host, flag_port) client_socket.sendto(flag.encode(), (flag_host, int(flag_port))) time.sleep(1)