easyctf-2017/injection1/grader.py
2017-03-11 01:24:22 -06:00

5 lines
182 B
Python

def grade(autogen, key):
if key.find("a_prepared_statement_a_day_keeps_the_d0ctor_away!") != -1:
return True, "You got it!"
return False, "Nope. Keep poking around."