easyctf-2017/qr-2/grader.py

5 lines
172 B
Python
Raw Normal View History

2017-03-17 22:10:54 +00:00
def grade(autogen, answer):
if answer.find("w0w_who_kn3w_that_Oboes_c0uld_mask_a_s3cr3t?") != -1:
return True, "Congrats!"
return False, "Nope, try again."