Tag: firebug
JavaScript Challenge 13 :: Cookie
by Arxleol on Jun.09, 2010, under hellboundhackers.org, javascript, tutorial
We will solve this challenge with Firebug. Open challenge page in Firefox, and start Firebug. Now you probably see this sentence:
You are not authorized to view this page!
however, checking source code you will find that page is using cookie for authorization named authorized with value: false.
So if you are already in Firebug just open Cookies tab find cookie named authorized right click on it and select edit. Now just change false into true and reload page.
JavaScript Challenge 9 :: timer
by Arxleol on Jun.02, 2010, under hellboundhackers.org, javascript, tutorial
In this challenge we are faced with timer. As soon as you’ve seen this challenge you figured out you have to reset timer somehow.
Of course one probable solution would be to wait until timer reaches zero value.
Javascript Missions 7 :: JS Obfuscation. FTW!
by Arxleol on May.22, 2010, under hackthissite.org, javascript, tutorial
Now this one is really tricky if you are not using right tool. At first I was checking obfuscated code and couldn’t figure out much. Then I went to search trough source code of the page and didn’t find anything useful. Noteworthy is that I was using Google Chrome. Then I switched to Firefox and examined code with Firebug. And what surprise awaited me. Well see for yourself:
Basic Web Hacking 13 :: Forgotten George
by Arxleol on Jan.08, 2010, under HTML, hellboundhackers.org, tutorial
In the following mission we will use Firebug. Very useful web developers tool.
hackthissite.org basic 5 :: email to admin II
by Arxleol on Jun.25, 2009, under hackthissite.org, tutorial
When you started with 5th mission you probably assumed that it is something similar if not the same as previous one. However, if you tried solving it the way previous mission was solved you’ll see that it doesn’t work because site you’re providing data to checks from where data is coming and therefore figures out that you are sending data from somewhere else.