diff --git a/web-tunnel/description.md b/web-tunnel/description.md new file mode 100644 index 0000000..96ae9e1 --- /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](http://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..5de5c2a --- /dev/null +++ b/web-tunnel/grader.py @@ -0,0 +1,4 @@ +def grade(autogen, key): + if key.find("y0u_sh0uld_b3_t1r3d_tr4v3ll1ng_all_th1s_w4y") != -1: + return True, "Nice job! Your journey was fruitful!" + return False, "Nope. Dig deeper." diff --git a/web-tunnel/problem.yml b/web-tunnel/problem.yml new file mode 100644 index 0000000..45f1336 --- /dev/null +++ b/web-tunnel/problem.yml @@ -0,0 +1,7 @@ +title: Web Tunnel +author: dududum561 +hint: You should write a script for this. The tunnel goes on too deep for any normal human. +category: Web +autogen: false +programming: false +value: 260 \ No newline at end of file