easyctf-2017/injection1/grader.py

5 lines
182 B
Python
Raw Normal View History

2017-03-11 07:24:22 +00:00
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."