easyctf-2017/scisnerof/grader.py

4 lines
142 B
Python
Raw Normal View History

2016-11-19 18:23:14 +00:00
def grade(autogen, answer):
if answer.find("r3v3r5ed_4ensics") != -1:
return True, "Correct!"
return False, "Nope, try again."