injection2 added to problems
This commit is contained in:
parent
f1df4c0fc4
commit
6ecc945471
3 changed files with 12 additions and 0 deletions
1
injection2/description.md
Normal file
1
injection2/description.md
Normal file
|
@ -0,0 +1 @@
|
|||
I've told my friend a billion times that the user called `leet1337` doesn't exist on this [website](http://injection2.web.easyctf.com), but he won't listen. Could you please login as this user, even though it doesn't exist in the database? Oh and also, make sure that the user has a power level over 9000!!!!
|
4
injection2/grader.py
Normal file
4
injection2/grader.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
def grade(autogen, key):
|
||||
if key.find("reUNI0Ns_are_alw4ys_s0_em0t1onal") != -1:
|
||||
return True, "Nice 1337 heccker skillz!"
|
||||
return False, "Nah. Keep trying though."
|
7
injection2/problem.yml
Normal file
7
injection2/problem.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
author: dududum561 & mzhang
|
||||
title: SQL Injection 2
|
||||
hint: The columns in the table are (not in order) username, password, power_level, and a unique id.
|
||||
category: Web
|
||||
autogen: false
|
||||
programming: false
|
||||
value: 150
|
Loading…
Reference in a new issue