Skip to main content

Hack This Site JavaScript Mission 6 - go go away .js

Fiftysixer decided to try his hand at javascript!All was going well until he realized that he forgot to remove the unused code, which resulted in a confusing mess.He didn't mind, in fact, he did his best to make it even MORE confusing!
As usual I Tried by giving random input and hitting check password
error message alert : Nope, try again
so I got a hint..like in other mission we can look in the source-code for "Nope, try again".
Right click the page and select view source.
ctrl+f  find tab opens ,paste "Nope, try again" hit enter.

<script language="javascript">
RawrRawr = "moo";
function check(x)
{
"+RawrRawr+" == "hack_this_site"
if (x == ""+RawrRawr+"")
{
alert("Rawr! win!");
window.location = "about:blank";
} else {
alert("Rawr, nope, try again!");
}
}

function checkpassw(moo)
{
RawrRawr = moo;
checkpass(RawrRawr);
}

</script>

This is where we get to know that mission hint says right ..source has unwanted script too..but which one?its easy to find.go back to our page right click on the check password button and hit inspect (in chrome).You will see the code behind it.
<button onclick="javascript:checkpass(document.getElementById('pass').value)">Check Password</button>

From this its clear,our password is sent to function checkpass().
Here comes the twist,there is no such function the the codes we got early.Only thing is that in second function,"checkpassw()" they call "checkpass()".
but, we are closer . Goto source code and ctrl+f and search for "checkpass"
then you will see


<script type="text/javascript" src="/missions/javascript/6/checkpass.js"></script>

So,the check function is in an external js document.just visit the file by either clicking the src link or going to

https://www.hackthissite.org/missions/javascript/6/checkpass.js

dairycow="moo";
moo = "pwns";
rawr = "moo";

function checkpass(pass)
{
if(pass == rawr+" "+moo)
{
alert("How did you do that??? Good job!");
window.location = "../../../missions/javascript/6/?lvl_password="+pass;
} else {
alert("Nope, try again");
}

}

This is quite simple code to know the password from
if(pass == rawr+" "+moo)
Find out you self! Dont look password here unless you cant get it!
Password

Comments

  1. dairycow="moo";
    moo = "pwns";
    rawr = "moo";

    function checkpass(pass)
    {
    if(pass == rawr+" "+moo)
    {
    alert("How did you do that??? Good job!");
    window.location = "../../../missions/javascript/6/?lvl_password="+pass;
    } else {
    alert("Nope, try again");
    }

    }

    ReplyDelete

Post a Comment

Popular posts from this blog

Hack This Site Basic 8

Sam remains confident that an obscured password file is still the best idea, but he screwed up with the calendar program. Sam has saved the unencrypted password file in /var/www/hackthissite.org/html/missions/basic/8/  However, Sam's young daughter Stephanie has just learned to program in PHP. She's talented for her age, but she knows nothing about security. She recently learned about saving files, and she wrote a script to demonstrate her ability. So, we know the password is stored in some obscured password file.  Lets try the same code as we did in level 7. But the code 'ls' is not treated as command. so lets try it differently. Try with aaa;<!--ls--> it also failed but got a message: If you are trying to use server side includes to solve the challenge, you are on the right track: but I have limited the commands allowed to ones relevant towards finding the password file for security reasons(because there will always be that one person who decides to ...

Hack This Site! Basic 4

This time Sam hardcoded the password into the script. However, the password is long and complex, and Sam is often forgetful. So he wrote a script that would email his password to him auto And below this,There is a button for sending password to Sam's email.What we should do? right click on the button ,if you are in google chrome ,select > inspect . Now on right side you could see the script of that button. In this script you could see, <input type="hidden" name="to" value="sam@hackthissite.org"> Got any idea? yea , all you have to do is change the email to whatever  email you registered in Hackthis site ! Now check your mail,there must be the password you needed! Keep going!

Hack This Site Basic 11

Sam decided to make a music site. Unfortunately he does not understand Apache. This mission is a bit harder than the other basics. As you may have noticed! when we visit this level all we are given with is some line about song.This line changes on each refresh.From this we assume that this is not the real page we need to visit.But how we find our requirement? There is a tool in Kali Linux called 'Dirb'. But for now Iam using an online service for this >> URL FUZZER << . First we give the url and search for files with .php extension. select start scan.Wait for scan to finish. So,we have found a file.Now visit it as: https://www.hackthissite.org/missions/basic/11/index.php There is our login page.still we are stuck!we don't have the password or any hint in the source code of this page. Lets run another scan on the URL Fuzzer ,this time for directories  Same way start scan and wait for it to finish. There are two possible directori...