web/local_authority

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-03 22:52:56 +02:00
parent 67a4bc6dfd
commit f841e31a80
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1 @@
picoCTF{j5_15_7r4n5p4r3n7_05df90c8}

View File

@ -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;
}
}