easyctf-2017/simple-rop/grader.py
John 7c970f316f Added a simple rop problem
Needs to be built on a linux machine and the binary put in the
files/description so that its easier to solve. Also needs to be put on
the shell.
2017-03-09 02:56:41 -06:00

5 lines
123 B
Python

def grade(random, key):
if key.find("r0p_7o_v1ct0ry") != -1:
return True, "Correct!"
return False, "Nope."