From 7020db59fd45fbd88c44f680b6170a29f8c8d606 Mon Sep 17 00:00:00 2001 From: dududum561 Date: Sun, 12 Mar 2017 23:22:20 +0000 Subject: [PATCH] added web tunnel --- web-tunnel/description.md | 1 + web-tunnel/grader.py | 4 ++++ web-tunnel/problem.yml | 7 +++++++ 3 files changed, 12 insertions(+) create mode 100644 web-tunnel/description.md create mode 100644 web-tunnel/grader.py create mode 100644 web-tunnel/problem.yml diff --git a/web-tunnel/description.md b/web-tunnel/description.md new file mode 100644 index 0000000..e23762d --- /dev/null +++ b/web-tunnel/description.md @@ -0,0 +1 @@ +I was just going to search some random cat videos on a Saturday morning when my friend came up to me and told me to reach the end of this [tunnel](https://tunnel.web.easyctf.com). Can you do it for me? \ No newline at end of file diff --git a/web-tunnel/grader.py b/web-tunnel/grader.py new file mode 100644 index 0000000..3e64ac4 --- /dev/null +++ b/web-tunnel/grader.py @@ -0,0 +1,4 @@ +def grade(random, key): + if key.find("w0w_y0u_reached_th3_3nd_0f_my_tunnel") != -1: + return True, "You have travelled a long distance. Now rest a bit." + return False, "Not even close." diff --git a/web-tunnel/problem.yml b/web-tunnel/problem.yml new file mode 100644 index 0000000..fbccb89 --- /dev/null +++ b/web-tunnel/problem.yml @@ -0,0 +1,7 @@ +title: Web Tunnel +author: dududum561 +hint: You should maybe write a script. This may be a little more than what you can handle. +category: Web +autogen: false +programming: false +value: 350 \ No newline at end of file