added web tunnel
This commit is contained in:
parent
389e972480
commit
7020db59fd
3 changed files with 12 additions and 0 deletions
1
web-tunnel/description.md
Normal file
1
web-tunnel/description.md
Normal file
|
@ -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?
|
4
web-tunnel/grader.py
Normal file
4
web-tunnel/grader.py
Normal file
|
@ -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."
|
7
web-tunnel/problem.yml
Normal file
7
web-tunnel/problem.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue