<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Axino.net &#187; firebug</title>
	<atom:link href="http://www.axino.net/tag/firebug/feed" rel="self" type="application/rss+xml" />
	<link>http://www.axino.net</link>
	<description>The other side of atom.</description>
	<lastBuildDate>Thu, 15 Jul 2010 12:45:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>JavaScript Challenge 13 :: Cookie</title>
		<link>http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie</link>
		<comments>http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie#comments</comments>
		<pubDate>Tue, 08 Jun 2010 22:28:17 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=1028</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>We will solve this challenge with Firebug. Open challenge page in Firefox, and start Firebug.  Now you probably see this sentence:</p>
<blockquote><p>You are not authorized to view this page!</p></blockquote>
<p>however, checking source code you will find that page is using cookie for authorization named authorized with value: <strong>false</strong>.</p>
<p>So if you are already in Firebug just open <strong>Cookies tab</strong> find cookie named <strong>authorized </strong>right click on it and select edit. Now just change false into <strong>true</strong> and reload page.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/hack/hack-this-site/2009/09/hackthissite-org-basic-10-my-cookie-your-cookie" rel="bookmark" title="Friday 25.09.2009">hackthissite.org basic 10 :: My cookie your cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-7-double-login" rel="bookmark" title="Tuesday 10.11.2009">Basic web hacking 7 :: double login</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/hackthissite-org-application-3-127-0-0-1" rel="bookmark" title="Thursday 27.05.2010">hackthissite.org Application 3 :: 127.0.0.1</a></li>
<li><a href="http://www.axino.net/tutorial/2010/06/javascript-challenge-9-timer" rel="bookmark" title="Wednesday 02.06.2010">JavaScript Challenge 9 :: timer</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-9-hidden-or-not" rel="bookmark" title="Wednesday 28.01.2009">hackertest.net level 9 :: Hidden or not</a></li>
</ul>
<p><!-- Similar Posts took 4.811 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1028" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Challenge 9 :: timer</title>
		<link>http://www.axino.net/tutorial/2010/06/javascript-challenge-9-timer</link>
		<comments>http://www.axino.net/tutorial/2010/06/javascript-challenge-9-timer#comments</comments>
		<pubDate>Wed, 02 Jun 2010 19:59:35 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=1016</guid>
		<description><![CDATA[In this challenge we are faced with timer.  As soon as you&#8217;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. But that defies the point. If you examine code you will find following script: &#60;script&#62; var c = 34200; [...]]]></description>
			<content:encoded><![CDATA[<p>In this challenge we are faced with timer.  As soon as you&#8217;ve seen this challenge you figured out you have to reset timer somehow.</p>
<p>Of course one probable solution would be to wait until timer reaches zero value.</p>
<p><span id="more-1016"></span></p>
<p>But that defies the point. If you examine code you will find following script:<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #003366; font-weight: bold;">var</span> c <span style="color: #339933;">=</span> <span style="color: #CC0000;">34200</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> p <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;%68%6F%77%73%6C%69%66%65%3F%65%61%73%79%2E%00&quot;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> a<span style="color: #339933;">;</span>
fc<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> fc<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>c<span style="color: #339933;">&gt;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
 document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;say&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;&lt;b&gt;&lt;big&gt;Please wait &quot;</span> <span style="color: #339933;">+</span> c <span style="color: #339933;">+</span> <span style="color: #3366CC;">' seconds.&lt;/big&gt;&lt;/b&gt;'</span><span style="color: #339933;">;</span>
 c <span style="color: #339933;">=</span> c <span style="color: #339933;">-</span> <span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
 setTimeout<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;fc()&quot;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1000</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
 a <span style="color: #339933;">=</span> unescape<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;%33&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;say&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;Your password is: &quot;</span> <span style="color: #339933;">+</span> unescape<span style="color: #009900;">&#40;</span>p<span style="color: #339933;">-</span>a<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> unescape<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;%3C%66%6F%72%6D%20%61%63%74%69%6F%6E%3D%27%69%6E%64%65%78%2E%70%68%70%27%20%6D%65%74%68%6F%64%3D%27%50%4F%53%54%27%3E%0D%0A%45%6E%74%65%72%20%50%61%73%73%77%6F%72%64%3A%20%3C%69%6E%70%75%74%20%74%79%70%65%3D%27%74%65%78%74%27%20%6E%61%6D%65%3D%27%70%61%73%73%27%20%73%74%79%6C%65%3D%27%74%65%78%74%62%6F%78%27%3E%3C%62%72%3E%0D%0A%3C%69%6E%70%75%74%20%74%79%70%65%3D%27%73%75%62%6D%69%74%27%20%6E%61%6D%65%3D%27%73%75%62%6D%69%74%27%20%76%61%6C%75%65%3D%27%43%68%65%63%6B%20%79%6F%75%20%61%6E%73%77%65%72%27%20%73%74%79%6C%65%3D%27%62%75%74%74%6F%6E%27%3E%0D%0A%3C%2F%66%6F%72%6D%3E%00&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p></code></p>
<p>This is where Firebug comes in really handy. Now open Firebug and select DOM tab in here you should search for <strong>variable c</strong>. Because variable c contains number of seconds till we receive our password. And now when you find variable c in DOM tab change its value to something low for example number 5. Now if you&#8217;ve done everything correctly you will notice that counters switched to 5 and is counting down. When it reaches 0 you will receive password:</p>
<blockquote><p>Your password is: NaN</p></blockquote>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2010/07/javascript-challenge-10-math-time" rel="bookmark" title="Saturday 03.07.2010">JavaScript Challenge 10 :: Math time</a></li>
<li><a href="http://www.axino.net/hack/hack-this-site/2009/09/hackthissite-org-basic-10-my-cookie-your-cookie" rel="bookmark" title="Friday 25.09.2009">hackthissite.org basic 10 :: My cookie your cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2009/06/javascript-missions-1-idiot-test" rel="bookmark" title="Saturday 20.06.2009">Javascript Missions 1 :: Idiot Test</a></li>
<li><a href="http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie" rel="bookmark" title="Wednesday 09.06.2010">JavaScript Challenge 13 :: Cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2010/03/hack-test-com-1-hard-start" rel="bookmark" title="Thursday 18.03.2010">hack-test.com 1 :: hard start</a></li>
</ul>
<p><!-- Similar Posts took 4.805 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1016" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/06/javascript-challenge-9-timer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Missions 7 :: JS Obfuscation. FTW!</title>
		<link>http://www.axino.net/tutorial/2010/05/javascript-missions-7-js-obfuscation-ftw</link>
		<comments>http://www.axino.net/tutorial/2010/05/javascript-missions-7-js-obfuscation-ftw#comments</comments>
		<pubDate>Sat, 22 May 2010 09:37:32 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=925</guid>
		<description><![CDATA[Now this one is really tricky if you are not using right tool. At first I was checking obfuscated code and couldn&#8217;t figure out much. Then I went to search trough source code of the page and didn&#8217;t find anything useful. Noteworthy is that I was using Google Chrome. Then I switched to Firefox and examined [...]]]></description>
			<content:encoded><![CDATA[<p>Now this one is really tricky if you are not using right tool. At first I was checking obfuscated code and couldn&#8217;t figure out much. Then I went to search trough source code of the page and didn&#8217;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:</p>
<p><span id="more-925"></span><br />
<code> </code></p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;button onclick=&quot;javascript:if (document.getElementById(&amp;quot;pass&amp;quot;).value==&amp;quot;j00w1n&amp;quot;){alert(&amp;quot;You WIN!&amp;quot;);window.location += &amp;quot;?lvl_password=&amp;quot;+document.getElementById(&amp;quot;pass&amp;quot;).value}else {alert(&amp;quot;WRONG! Try again!&amp;quot;)}&quot;&gt;Check Password&lt;/button&gt;</pre></div></div>

<p></code></p>
<p>And this did not show up in Chrome really interesting. So you can see that password is: <strong>j00w1n</strong><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/hack/hack-this-site/2009/09/hackthissite-org-basic-10-my-cookie-your-cookie" rel="bookmark" title="Friday 25.09.2009">hackthissite.org basic 10 :: My cookie your cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie" rel="bookmark" title="Wednesday 09.06.2010">JavaScript Challenge 13 :: Cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2010/06/javascript-challenge-9-timer" rel="bookmark" title="Wednesday 02.06.2010">JavaScript Challenge 9 :: timer</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/11/hackertest-net-level-15" rel="bookmark" title="Saturday 28.11.2009">hackertest.net level 15 :: really valid photo</a></li>
<li><a href="http://www.axino.net/tutorial/2010/01/basic-web-hacking-13-forgotten-george" rel="bookmark" title="Friday 08.01.2010">Basic Web Hacking 13 :: Forgotten George</a></li>
</ul>
<p><!-- Similar Posts took 4.812 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=925" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/05/javascript-missions-7-js-obfuscation-ftw/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Web Hacking 13 :: Forgotten George</title>
		<link>http://www.axino.net/tutorial/2010/01/basic-web-hacking-13-forgotten-george</link>
		<comments>http://www.axino.net/tutorial/2010/01/basic-web-hacking-13-forgotten-george#comments</comments>
		<pubDate>Fri, 08 Jan 2010 21:37:25 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=745</guid>
		<description><![CDATA[In the following mission we will use Firebug. Very useful web developers tool. Introduction to mission is simple: Login as George! But when you try to login as George he is not in the list. So to add George into the list, we will use firebug. Now, open firebug and in the HTMl code find option tag. [...]]]></description>
			<content:encoded><![CDATA[<p>In the following mission we will use Firebug. Very useful web developers tool.</p>
<p><span id="more-745"></span></p>
<p>Introduction to mission is simple:</p>
<blockquote>
<div>Login as George!</div>
</blockquote>
<p>But when you try to login as George he is not in the list. So to add George into the list, we will use firebug. Now, open firebug and in the HTMl code find <strong>option</strong> tag. To be able to login as George we have to create another entry. So let&#8217;s just add another entry into the list or you can change Jessica entry into:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&amp;lt;option value=&quot;George&quot;&amp;gt;George&amp;lt;/option&amp;gt;</pre></div></div>

</blockquote>
<p>Now select <strong>George </strong>and log in <img src='http://www.axino.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-7-double-login" rel="bookmark" title="Tuesday 10.11.2009">Basic web hacking 7 :: double login</a></li>
<li><a href="http://www.axino.net/hack/hack-this-site/2009/09/hackthissite-org-basic-10-my-cookie-your-cookie" rel="bookmark" title="Friday 25.09.2009">hackthissite.org basic 10 :: My cookie your cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2010/06/javascript-challenge-13-cookie" rel="bookmark" title="Wednesday 09.06.2010">JavaScript Challenge 13 :: Cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-8-simple-sql" rel="bookmark" title="Monday 16.11.2009">Basic web hacking 8 :: simple SQL</a></li>
<li><a href="http://www.axino.net/tutorial/2009/06/hackthissiteorg-basic-4-email-to-admin" rel="bookmark" title="Wednesday 24.06.2009">hackthissite.org basic 4 :: email to admin</a></li>
</ul>
<p><!-- Similar Posts took 4.683 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=745" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/01/basic-web-hacking-13-forgotten-george/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>hackthissite.org basic 5 :: email to admin II</title>
		<link>http://www.axino.net/tutorial/2009/06/hackthissiteorg-basic-5-email-to-admin-ii</link>
		<comments>http://www.axino.net/tutorial/2009/06/hackthissiteorg-basic-5-email-to-admin-ii#comments</comments>
		<pubDate>Thu, 25 Jun 2009 21:42:37 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=421</guid>
		<description><![CDATA[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&#8217;ll see that it doesn&#8217;t work because site you&#8217;re providing data to checks from where data is coming and therefore figures out [...]]]></description>
			<content:encoded><![CDATA[<p>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&#8217;ll see that it doesn&#8217;t work because site you&#8217;re providing data to checks from where data is coming and therefore figures out that you are sending data from somewhere else.</p>
<p><span id="more-421"></span>So what you need to do is to install <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">firebug</a>. And then open firebug find the hidden field that contains email and change it to something else. Then when you click on <strong>Send email to Sam </strong>you should obtain the following password: <strong>d6093b09</strong><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/06/hackthissiteorg-basic-4-email-to-admin" rel="bookmark" title="Wednesday 24.06.2009">hackthissite.org basic 4 :: email to admin</a></li>
<li><a href="http://www.axino.net/hack/hack-this-site/2009/09/hackthissite-org-basic-10-my-cookie-your-cookie" rel="bookmark" title="Friday 25.09.2009">hackthissite.org basic 10 :: My cookie your cookie</a></li>
<li><a href="http://www.axino.net/tutorial/2009/03/hackthissiteorg-basic-3-passwordphp" rel="bookmark" title="Thursday 12.03.2009">hackthissite.org basic 3 :: password.php</a></li>
<li><a href="http://www.axino.net/tutorial/2010/01/basic-web-hacking-13-forgotten-george" rel="bookmark" title="Friday 08.01.2010">Basic Web Hacking 13 :: Forgotten George</a></li>
<li><a href="http://www.axino.net/tutorial/2010/07/tracking-challenge-1-email-tracing" rel="bookmark" title="Wednesday 14.07.2010">Tracking Challenge 1 :: Email tracing</a></li>
</ul>
<p><!-- Similar Posts took 4.829 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=421" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2009/06/hackthissiteorg-basic-5-email-to-admin-ii/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
