Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Feb 24, 2025
1 parent e846bf8 commit 50d5036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intercepting-communication/udp-1/run
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ServerHost(Host):
while True:
if not client_message:
break
if client_message == "Hello, World!\n":
if client_message == b"Hello, World!\n":
server_socket.sendto(flag.encode(), (client_host, client_port))
break
except ConnectionError:
Expand Down

0 comments on commit 50d5036

Please sign in to comment.