easyctf-2017/tiny-eval/grader.py

5 lines
171 B
Python
Raw Normal View History

2017-02-11 17:20:04 -06:00
def grade(autogen, key):
2017-03-14 17:23:55 -05:00
if key.find("it's_2017_anD_we're_still_using_PHP???") != -1:
2017-02-11 17:20:04 -06:00
return True, "You got it!"
return False, "Nope. Keep poking around."