Hack This Site.co.uk - Main 8
Objectives
The coder has made the same mistake as level 4 but this time at least he has tried to protect the password. The password has been encrypted, convert the binary into something that is easier for humans to read (base 16).
If you think you have the right answer but it isn't being accepted, submit your answer in CAPITALS.
Solution
So let's take a look at the source code
</div>
<div class='level-form'>
<form method="POST">
<fieldset>
<label for="user">Username:</label>
<input type="Text" name="user" id="user" autocomplete="off"><br>
<label for="user">Password:</label>
<input type="Password" name="pass" id="pass" autocomplete="off"><br>
<input type="hidden" name="passwordfile" value="extras/secret.txt">
<input type="submit" value="Submit" class="button">
</fieldset>
</form> </div>
</div>
</div>
ok so there we have password file again let's see whats inside.
1011 0000 0000 1011
1111 1110 1110 1101
ooooo binary
1011 = B
0000 = 0 <---- that's a zero folks not an alpha o
0000 = 0
1011 = B **** hey this is a kids show let's keep it G rated please :)
1111 = F
1110 = E
1110 = E
1101 = D
so creds are
B00B
FEED
I guess that's pretty G rated after all
Objectives
The coder has made the same mistake as level 4 but this time at least he has tried to protect the password. The password has been encrypted, convert the binary into something that is easier for humans to read (base 16).
If you think you have the right answer but it isn't being accepted, submit your answer in CAPITALS.
Solution
So let's take a look at the source code
</div>
<div class='level-form'>
<form method="POST">
<fieldset>
<label for="user">Username:</label>
<input type="Text" name="user" id="user" autocomplete="off"><br>
<label for="user">Password:</label>
<input type="Password" name="pass" id="pass" autocomplete="off"><br>
<input type="hidden" name="passwordfile" value="extras/secret.txt">
<input type="submit" value="Submit" class="button">
</fieldset>
</form> </div>
</div>
</div>
ok so there we have password file again let's see whats inside.
1011 0000 0000 1011
1111 1110 1110 1101
ooooo binary
1011 = B
0000 = 0 <---- that's a zero folks not an alpha o
0000 = 0
1011 = B **** hey this is a kids show let's keep it G rated please :)
1111 = F
1110 = E
1110 = E
1101 = D
so creds are
B00B
FEED
I guess that's pretty G rated after all
Comments
Post a Comment