It's "hexedpw."
Code:
<script type="text/javascript">
function login()
{
if (document.form.pw.value.substr(1, 7) == unescape("%68%65%78%65%64%70%77")) // if the second to eighth characters (string starts at 0) are equal to "hexedpw" (url encoded)
{
alert('Correct password! Access granted!'); // Tell the user they've passed
document.form.submit(); // Submit the form
}
else
{
alert('Wrong password! Access denied!'); // Tell the user they've failed
}
}
</script>
<form name="form" method="post">
Password: <input type="password" name="pw"> <input type="button" onClick="login();" value="Login">
</form>
Bookmarks