Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
goelp14
GitHub Repository: goelp14/easyctf-iv-problems
Path: blob/master/intro.linux/grader.py
650 views
1
def grade(_, key):
2
if key.find("i_know_how_2_find_hidden_files!") >= 0:
3
return True, "Nice job!"
4
return False, "Try using ls to find things out."
5
6