diff --git a/cookieblog/description.md b/cookieblog/description.md new file mode 100644 index 0000000..b6d61eb --- /dev/null +++ b/cookieblog/description.md @@ -0,0 +1 @@ +I found the cookie monster's [blog](http://cookieblog.web.easyctf.com)! diff --git a/cookieblog/grader.py b/cookieblog/grader.py new file mode 100644 index 0000000..830af67 --- /dev/null +++ b/cookieblog/grader.py @@ -0,0 +1,4 @@ +def grade(random, key): + if key.find("yum_c00kies!!!") != -1: + return True, "Yum!" + return False, "Eww..." diff --git a/cookieblog/problem.yml b/cookieblog/problem.yml new file mode 100644 index 0000000..d28113a --- /dev/null +++ b/cookieblog/problem.yml @@ -0,0 +1,7 @@ +title: Cookie Blog +author: neptunia +hint: Where can I find cookies on a website? +category: Web +autogen: false +programming: false +value: 30 \ No newline at end of file