just a simple script made in python for pwn challenges
from pwn import * elf = context.binary = ELF('./filename', checksec=False) p = process() #p = remote('ip', port) # Exploit goes here offset = 10 payload = b'A'*offset p.sendline(payload) p.interactive()
Last updated 8 months ago