Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson committed Feb 23, 2025
1 parent 3242343 commit 4b926a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intercepting-communication/level-14/run
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AuthenticatedClientHost(Host):
assert client_socket.recv(1024) == b"secret: "
secret = bytes(server_host.secret) # Get the secret out-of-band
time.sleep(1)
client_socket.sendall(secret.hex())
client_socket.sendall(secret.hex().encode())

assert client_socket.recv(1024) == b"command: "
time.sleep(1)
Expand Down

0 comments on commit 4b926a3

Please sign in to comment.