web/local_authority
This commit is contained in:
parent
67a4bc6dfd
commit
f841e31a80
|
@ -0,0 +1 @@
|
||||||
|
picoCTF{j5_15_7r4n5p4r3n7_05df90c8}
|
|
@ -0,0 +1,14 @@
|
||||||
|
// NOTE: this is included on a wrong login attempt
|
||||||
|
|
||||||
|
function checkPassword(username, password)
|
||||||
|
{
|
||||||
|
if( username === 'admin' && password === 'strongPassword098765' )
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue