web/local_authority

This commit is contained in:
2024-09-03 22:52:56 +02:00
parent 67a4bc6dfd
commit f841e31a80
2 changed files with 15 additions and 0 deletions
web/local_authority

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