Skip to content

Commit

Permalink
sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Feb 24, 2025
1 parent 8984f9f commit 48ca562
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion intercepting-communication/udp-spoof-host/run
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class ClientHost(Host):
message, (peer_host, peer_port) = client_socket.recvfrom(1024)
if peer_port == 31337 and message.startswith(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)
Expand Down

0 comments on commit 48ca562

Please sign in to comment.