Description
Can you get the flag?Go to this website and see what you can discover.
Steps :
Tried out some simple SQL injections didnt work out and next i went for the hint “How is the password checked on this website?” clicked view source page and looked for the js files and yeah :P
function checkPassword(username, password)
{
if( username === 'admin' && password === 'strongPassword098765' )
{
return true;
}
else
{
return false;
}
}
FLAG : picoCTF{j5_15_************_a8788e61}