easyctf-2017/scisnerof/grader.py

5 lines
143 B
Python
Raw Normal View History

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