From d65835a439527c1afae4b9aa6f545b0084142081 Mon Sep 17 00:00:00 2001 From: Jacob Magnuson Date: Tue, 14 Mar 2017 19:44:28 +0000 Subject: [PATCH] add blogbox --- blogbox/description.md | 1 + blogbox/grader.py | 4 ++++ blogbox/problem.yml | 6 ++++++ 3 files changed, 11 insertions(+) create mode 100644 blogbox/description.md create mode 100644 blogbox/grader.py create mode 100644 blogbox/problem.yml diff --git a/blogbox/description.md b/blogbox/description.md new file mode 100644 index 0000000..49bf3d2 --- /dev/null +++ b/blogbox/description.md @@ -0,0 +1 @@ +I found another [blog](http://blogbox.web.easyctf.com/)! Do you think you can find a flag on it? \ No newline at end of file diff --git a/blogbox/grader.py b/blogbox/grader.py new file mode 100644 index 0000000..29044ed --- /dev/null +++ b/blogbox/grader.py @@ -0,0 +1,4 @@ +def grade(autogen, key): + if key.find("i_cant_GET_n0_s@tisfAct10N") != -1: + return True, "I always knew you could GET it!" + return False, "Keep trying." diff --git a/blogbox/problem.yml b/blogbox/problem.yml new file mode 100644 index 0000000..5f8075e --- /dev/null +++ b/blogbox/problem.yml @@ -0,0 +1,6 @@ +author: blockingthesky +title: Blogbox +category: Web +autogen: false +programming: false +value: 135 \ No newline at end of file