easyctf-2017/security-through-obscurity/grader.py
2016-10-28 15:00:59 -05:00

4 lines
164 B
Python

def grade(autogen, answer):
if answer.find("i_actu4lly_d0nt_know_th3_name_of_th15_crypt0sy5tem") != -1:
return True, "Correct!"
return False, "Nope, try again."