There are no problems to show!

Be sure you are familiar with guidelines to writing problems before you submit! Problem unlocking and other options will be available after you submit your problem.

def grade(key, tid): """ Grade this problem. """ flag = "easyctf{a_flag}" case_sensitive = True if (key.find(flag) >= 0) if case_sensitive \ else (key.lower().find(flag.lower()) >= 0): return { "success": 1, "message": "Correct!" } return { "success": 0, "message": "Sorry, try again." }
Nothing here yet.