UBS-Server / routes /starter /home /shellcode_pwn_runner.py
m-abdur2024's picture
Upload 40 files
0d3476b verified
raw
history blame contribute delete
No virus
196 Bytes
import pwn
io = pwn.process('./shellcode')
with open('./payload_shellcode', 'rb') as f:
payload = f.read()
io.send(payload)
output = io.recv().decode('latin-1')
print(output)