<?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; html</title>
	<atom:link href="http://www.axino.net/tag/html/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 Missions 6 :: go go away .js</title>
		<link>http://www.axino.net/hack/hack-this-site/2010/05/javascript-missions-6-go-go-away-js</link>
		<comments>http://www.axino.net/hack/hack-this-site/2010/05/javascript-missions-6-go-go-away-js#comments</comments>
		<pubDate>Wed, 19 May 2010 23:00:03 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=921</guid>
		<description><![CDATA[This is nice example of some kind of decoy strategy. At first when you opened mission you checked source code and found following two functions. RawrRawr = &#34;moo&#34;; function check&#40;x&#41; &#123; &#34;+RawrRawr+&#34; == &#34;hack_this_site&#34; if &#40;x == &#34;&#34;+RawrRawr+&#34;&#34;&#41; &#123; alert&#40;&#34;Rawr! win!&#34;&#41;; window.location = &#34;about:blank&#34;; &#125; else &#123; alert&#40;&#34;Rawr, nope, try again!&#34;&#41;; &#125; &#125; &#160; function [...]]]></description>
			<content:encoded><![CDATA[<p>This is nice example of some kind of decoy strategy. At first when you opened mission you checked source code and found following two functions.</p>
<p><span id="more-921"></span><br />
<code> </code></p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">RawrRawr <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;moo&quot;</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> check<span style="color: #009900;">&#40;</span>x<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #3366CC;">&quot;+RawrRawr+&quot;</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;hack_this_site&quot;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>x <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;&quot;</span><span style="color: #339933;">+</span>RawrRawr<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Rawr! win!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
window.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;about:blank&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Rawr, nope, try again!&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>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> checkpassw<span style="color: #009900;">&#40;</span>moo<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
RawrRawr <span style="color: #339933;">=</span> moo<span style="color: #339933;">;</span>
checkpass<span style="color: #009900;">&#40;</span>RawrRawr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p></code></p>
<p>Now if you check HTML code of the button you will notice that function is not among these two present.<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:checkpass(document.getElementById('pass').value)&quot;&gt;Check Password&lt;/button&gt;</pre></div></div>

<p></code></p>
<p>So I followed this clue and found that above those two functions there is remotely connected javascript file.<br />
<code> </code></p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script src=&quot;http://hackthissite.org/missions/javascript/6/checkpass&quot; type=&quot;text/javascript&quot;&gt;&lt;!--mce:0--&gt;&lt;/script&gt;</pre></div></div>

<p></code></p>
<p>When you open that file you will find following javascript code:<br />
<code> </code></p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">dairycow<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;moo&quot;</span><span style="color: #339933;">;</span>
moo <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;pwns&quot;</span><span style="color: #339933;">;</span>
rawr <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;moo&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> checkpass<span style="color: #009900;">&#40;</span>pass<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>pass <span style="color: #339933;">==</span> rawr<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot; &quot;</span><span style="color: #339933;">+</span>moo<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;How did you do that??? Good job!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
window.<span style="color: #660066;">location</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;../../../missions/javascript/6/?lvl_password=&quot;</span><span style="color: #339933;">+</span>pass<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Nope, try again&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></pre></div></div>

<p></code></p>
<p>I guess that from here you are already able to figure that password is: <strong>moo pwns</strong>. If not then ask <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/2010/05/javascript-missions-4-var" rel="bookmark" title="Wednesday 19.05.2010">Javascript Missions 4 :: Var?</a></li>
<li><a href="http://www.axino.net/tutorial/2010/02/javascript-challenge-6-simple-strings" rel="bookmark" title="Wednesday 03.02.2010">JavaScript Challenge 6 :: Simple strings</a></li>
<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/tutorial/2010/05/javascript-missions-5-escape" rel="bookmark" title="Wednesday 19.05.2010">Javascript Missions 5 :: Escape!</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-6-linking-javascript" rel="bookmark" title="Thursday 15.01.2009">hackertest.net level 6 :: Linking javascript</a></li>
</ul>
<p><!-- Similar Posts took 5.042 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=921" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/hack/hack-this-site/2010/05/javascript-missions-6-go-go-away-js/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>hack-test.com 9 :: Steganography</title>
		<link>http://www.axino.net/tutorial/2010/05/hack-test-com-9-steganography</link>
		<comments>http://www.axino.net/tutorial/2010/05/hack-test-com-9-steganography#comments</comments>
		<pubDate>Sat, 15 May 2010 22:58:15 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[hack-test.com]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[steganography]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=902</guid>
		<description><![CDATA[This level is really interesting because solution will not show up in the source code. But when you select the content of the page with ctrl + A. Afterwards right click and select inspet element. This will work in Google Chrome. You will see pop-up window. And there you will find following commented HTML code: [...]]]></description>
			<content:encoded><![CDATA[<p>This level is really interesting because solution will not show up in the source code. But when you select the content of the page with <strong>ctrl + A</strong>.</p>
<p><span id="more-902"></span></p>
<p>Afterwards right click and select inspet element. This will work in Google Chrome. You will see pop-up window. And there you will find following commented HTML code:</p>
<blockquote>
<div id="_mcePaste">Password: Z2F6ZWJydWg= add a page extention to that</div>
</blockquote>
<div>However, you should note that this is text encrypted with Base 64 encryption which you may easily decode with<a href="http://www.opinionatedgeek.com/dotnet/tools/Base64Decode/" target="_blank"> online decoder</a>.</div>
<div>When you decode string you will find: <strong>gazebruh</strong></div>
<div>So link for new level is:<strong> <span style="font-weight: normal;"><a href="http://www.hack-test.com/gazebruh.htm">http://www.hack-test.com/gazebruh.php</a></span></strong></div>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<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>
<li><a href="http://www.axino.net/tutorial/2010/05/hack-test-com-10-italic-text" rel="bookmark" title="Sunday 16.05.2010">hack-test.com 10 :: Italic text</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/12/hackertest-net-list-of-all-urls" rel="bookmark" title="Thursday 03.12.2009">hackertest.net list of all URLs</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/12/hackertest-net-level-19-yet-another-gif-image" rel="bookmark" title="Wednesday 02.12.2009">hackertest.net level 19 :: yet another gif image</a></li>
<li><a href="http://www.axino.net/tutorial/2010/03/hack-test-com-2-refresh-now" rel="bookmark" title="Friday 19.03.2010">hack-test.com 2 :: refresh now&#8230;</a></li>
</ul>
<p><!-- Similar Posts took 5.164 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=902" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/05/hack-test-com-9-steganography/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hack-test.com 7 :: examine source code</title>
		<link>http://www.axino.net/tutorial/2010/05/hack-test-com-7-examine-source-code</link>
		<comments>http://www.axino.net/tutorial/2010/05/hack-test-com-7-examine-source-code#comments</comments>
		<pubDate>Fri, 14 May 2010 21:24:49 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[hack-test.com]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[steganography]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=890</guid>
		<description><![CDATA[As always it is important to examine source code. After examining source code I found something strange. The following body tag: &#160; Now just download image from the link in bg attribute. When you open image you will notice username and password in the lower right corner. Username: phat Password: jerkybar3Similar Posts: hackertest.net level 7 [...]]]></description>
			<content:encoded><![CDATA[<p>As always it is important to examine source code. After examining source code I found something strange. The following body tag:<br />
<code> </code></p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&nbsp;</pre></div></div>

<p></code></p>
<p>Now just download image from the link in <strong>bg</strong> attribute. When you open image you will notice username and password in the lower right corner.</p>
<p>Username: <strong>phat </strong><br />
Password: <strong>jerkybar3</strong><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-7-hidden-dragon" rel="bookmark" title="Monday 19.01.2009">hackertest.net level 7 :: Hidden Dragon</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-8-open-psd" rel="bookmark" title="Tuesday 27.01.2009">hackertest.net level 8 :: Open PSD</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/hack-test-com-8-psd-file" rel="bookmark" title="Saturday 15.05.2010">hack-test.com 8 :: PSD file</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/11/hackertest-net-level-16-unavailable" rel="bookmark" title="Monday 30.11.2009">hackertest.net level 16 :: unavailable</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-3" rel="bookmark" title="Sunday 11.01.2009">hackertest.net level 3 :: Same but different</a></li>
</ul>
<p><!-- Similar Posts took 4.819 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=890" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/05/hack-test-com-7-examine-source-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hack-test.com 6 :: linked source</title>
		<link>http://www.axino.net/tutorial/2010/05/hack-test-com-6-linked-source</link>
		<comments>http://www.axino.net/tutorial/2010/05/hack-test-com-6-linked-source#comments</comments>
		<pubDate>Thu, 13 May 2010 16:28:44 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[hack-test.com]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=880</guid>
		<description><![CDATA[Level 6 uses similar concept as previous level, however here they used outside javascript linked in with the following statement. &#60;SCRIPT SRC=&#34;psswd.js&#34; LANGUAGE=&#34;JavaScript&#34; type=&#34;text/javascript&#34;&#62; When you open it you will see following code: &#60;!-- var pass; pass=prompt&#40;&#34;Password:&#34;,&#34;&#34;&#41;; if &#40;pass==&#34;streetzkornerz&#34;&#41; &#123; window.location=&#34;included.htm&#34;; &#125;else alert&#40;&#34;Try again...&#34;&#41;; //--&#62; Notice that in if statement you may notice that password [...]]]></description>
			<content:encoded><![CDATA[<p>Level 6 uses similar concept as previous level, however here they used outside javascript linked in with the following statement.</p>
<p><span id="more-880"></span><br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;SCRIPT SRC=&quot;psswd.js&quot; LANGUAGE=&quot;JavaScript&quot; type=&quot;text/javascript&quot;&gt;</pre></div></div>

<p></code><br />
When you open it you will see following code:<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span>
<span style="color: #003366; font-weight: bold;">var</span> pass<span style="color: #339933;">;</span>
pass<span style="color: #339933;">=</span><span style="color: #000066;">prompt</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Password:&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>pass<span style="color: #339933;">==</span><span style="color: #3366CC;">&quot;streetzkornerz&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
window.<span style="color: #660066;">location</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;included.htm&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span> 
<span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Try again...&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #006600; font-style: italic;">//--&gt;</span></pre></div></div>

<p></code></p>
<p>Notice that in if statement you may notice that password is: <strong>streetzkornerz</strong><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-3" rel="bookmark" title="Sunday 11.01.2009">hackertest.net level 3 :: Same but different</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/03/hack-test-com-3-link-colour" rel="bookmark" title="Saturday 20.03.2010">hack-test.com 3 :: link colour</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/hack-test-com-5-annoying-window" rel="bookmark" title="Wednesday 12.05.2010">hack-test.com 5 :: annoying window</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.709 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=880" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/05/hack-test-com-6-linked-source/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.717 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>Basic web hacking 8 :: simple SQL</title>
		<link>http://www.axino.net/tutorial/2009/11/basic-web-hacking-8-simple-sql</link>
		<comments>http://www.axino.net/tutorial/2009/11/basic-web-hacking-8-simple-sql#comments</comments>
		<pubDate>Mon, 16 Nov 2009 21:43:33 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=602</guid>
		<description><![CDATA[In previous mission we used some simple SQL this time we will use almost the same principle as before.Here is the introduction to the mission: This time Drake invented a secure PHP and mySQL login, so only his family can login, but the script wasn&#8217;t as secure as he thought it would be. First thing [...]]]></description>
			<content:encoded><![CDATA[<p>In previous mission we used some simple SQL this time we will use almost the same principle as before.<span id="more-602"></span>Here is the introduction to the mission:</p>
<blockquote><p>This time Drake invented a secure PHP and mySQL login, so only his family can login, but the script wasn&#8217;t as secure as he thought it would be.</p></blockquote>
<p>First thing first let&#8217;s try and enter some password.</p>
<p>We obtain following result:</p>
<p>Please Login</p>
<blockquote><p>SQL Query Error: SELECT * FROM family_db WHERE password=&#8217;ffdfd&#8217;<br />
Your Password was not found in our database<br />
Wrong SQL query</p></blockquote>
<p>Now, form the obtained SQL query we may notice that the name of the database is: <strong>family_d</strong><strong>b </strong>and SQL query executed.</p>
<p>If we try to enter our simple SQL injection <strong>&#8216; OR 1=1</strong> we may notice that this will not work on the script. So let&#8217;s examine code of the error page now.</p>
<p>If you examine source code closely you may notice following line</p>
<pre><!-- ?sql_query -->&lt;!-- ?sql_query --&gt;Wrong SQL query</pre>
<p>So the first commented out part probably gives you hint that you should use GET variables.</p>
<p>After you figured this out try entering the following URL:</p>
<p>http://www.hellboundhackers.org/challenges/basic8/secure-area.php?sql_query=SELECT * FROM family_db</p>
<p>I would like also to explain SQL query to the beginners</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">*</span> <span style="color: #993333; font-weight: bold;">FROM</span> family_db</pre></div></div>

<p>This SQL query in fact reads all values in rows and columns from the family_db table.</p>
<p>Obtained page after entering url is:</p>
<blockquote><p>Your password is <strong>KingKong</strong></p></blockquote>
<p>Try entering received password.</p>
<p>+30 points <img src='http://www.axino.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/hack/hellboundhackersorg/2009/11/basic-web-hacking-5-asterix-the-wildcard" rel="bookmark" title="Monday 09.11.2009">Basic web hacking 5 :: asterix the wildcard</a></li>
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-9-null-poison-byte" rel="bookmark" title="Tuesday 17.11.2009">Basic web hacking 9 :: null poison byte</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/how-to-grant-privilege-to-users-on-mysql-database" rel="bookmark" title="Sunday 02.05.2010">How to grant privilege to users on MySQL database</a></li>
<li><a href="http://www.axino.net/tutorial/2009/10/connect-to-mysql-database-in-java" rel="bookmark" title="Wednesday 21.10.2009">Connect to mysql database in java</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>
</ul>
<p><!-- Similar Posts took 4.957 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=602" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2009/11/basic-web-hacking-8-simple-sql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KingsAgeX :: version 0.57 milestone</title>
		<link>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-57</link>
		<comments>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-57#comments</comments>
		<pubDate>Wed, 28 Oct 2009 01:35:09 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[KingsAgeX]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[kingsage]]></category>
		<category><![CDATA[Online game]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=506</guid>
		<description><![CDATA[Well, as we are approaching to 5,000 installations I have added some new functions corrected old ones optimized some and such. I hope that auto-attacker will work out and you are going to like it. Currently it is for testing only but if you have any additional suggestions or bug reports then please do report [...]]]></description>
			<content:encoded><![CDATA[<p>Well, as we are approaching to 5,000 installations I have added some new functions corrected old ones optimized some and such. I hope that auto-attacker will work out and you are going to like it. Currently it is for testing only but if you have any additional suggestions or bug reports then please do report it in comments.<span id="more-506"></span></p>
<p>*************<br style="padding: 0px; margin: 0px;" />Version 0.57<br style="padding: 0px; margin: 0px;" />*************<br style="padding: 0px; margin: 0px;" />Feature added: In the info village page. That is the one that is opened when you click on certain village in the map mode. Two buttons are added Xmap and XXLmap these buttons allow you to open extended or XXL map respectively with the village you were observing as centered.</p>
<p>Feature added: Auto updater. When there is new version of this script then you will be notified and asked whether you would like to update this script. It checks once a day whether there is new version so don&#8217;t worry if you don&#8217;t get notice ASAP. However, I would like to notice that this <a href="http://userscripts.org/scripts/show/38017">solution </a>is not my.</p>
<p>Feature Added: Time calculator for all units added to the village info page.</p>
<p>Feature Added: In time calculator row for counts warning will be shown in case you are watching village that is more then 70 fields away.</p>
<p>Feature Added: Additional panel for showing delayed attacks.</p>
<p>Feature Added: Auto-attacker this is for testing purposes only and it only works with squires in one town. This is not intended to be used in real combat yet. But all suggestions and bugs you might have found are welcomed.</p>
<p>Bugfix/Feature added: As there were some complains that Firefox would get a bit slow after using extend/XXL map I have optimized process a bit and now it shouldn&#8217;t slow down Firefox. Also noteworthy is that this will not speed up loading of maps, gameforge&#8217;s servers and your bandwidth are responsible for the speed of loading including speed of your home computer but not as much.</p>
<p>Bugfix: Yes/No buttons for choosing premium now enable or disable if clicked. Otherwise they just locked disabled.</p>
<p>Feature Removed: Points showing inline, since one is only able to see points on his rank page. Also options for this feature were removed.</p>
<p><a href="http://userscripts.org/scripts/source/51469.user.js" target="_blank">INSTALL NEW VERSION HERE</a><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/projects/kingsagex" rel="bookmark" title="Tuesday 16.06.2009">KingsAgeX</a></li>
<li><a href="http://www.axino.net/programming/javascript-programming/2009/11/kingsagex-version-0-60" rel="bookmark" title="Friday 20.11.2009">Kingsagex :: version 0.60</a></li>
<li><a href="http://www.axino.net/projects/kingsagex/2009/06/kingsagex-version-05" rel="bookmark" title="Sunday 28.06.2009">KingsAgeX :: version 0.5</a></li>
<li><a href="http://www.axino.net/programming/javascript-programming/2009/12/kingsage-farmer-version-0-11beta-opening-new-project" rel="bookmark" title="Sunday 13.12.2009">KingsAge Farmer :: version 0.11beta opening new project</a></li>
<li><a href="http://www.axino.net/programming/javascript-programming/2009/12/kingsagex-version-0-62" rel="bookmark" title="Saturday 05.12.2009">Kingsagex :: version 0.62</a></li>
</ul>
<p><!-- Similar Posts took 5.121 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=506" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-57/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic web hacking 4 :: bad upload</title>
		<link>http://www.axino.net/tutorial/2009/10/basic-web-hacking-4-bad-upload</link>
		<comments>http://www.axino.net/tutorial/2009/10/basic-web-hacking-4-bad-upload#comments</comments>
		<pubDate>Fri, 23 Oct 2009 03:17:47 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=520</guid>
		<description><![CDATA[Challenge number 4 is interesting, as you may notice there is written that htpasswd.php file is not found in directory basic4. Basic Challenge 4! ERROR: htpasswd.php file not found in basic4/ So what should we do is to search for the for the file where it might be uploaded. Easiest thing one can do is to [...]]]></description>
			<content:encoded><![CDATA[<p>Challenge number 4 is interesting, as you may notice there is written that <strong>htpasswd.php</strong> file is not found in directory basic4.<span id="more-520"></span></p>
<blockquote><p>Basic Challenge 4!</p>
<p>ERROR: htpasswd.php file not found in basic4/</p></blockquote>
<p>So what should we do is to search for the for the file where it might be uploaded.</p>
<p>Easiest thing one can do is to start searching from first folder and that is <strong>basic1. </strong>If you try it out slowly you&#8217;ll find that file was uploaded in fact to basic mission 5. Here is the link of the file:</p>
<blockquote><p>http://www.hellboundhackers.org/challenges/basic5/htpasswd.php</p></blockquote>
<p>These are contents of the file:</p>
<blockquote><p>Your Password is &#8220;FireStone&#8221;</p></blockquote>
<p>So I tried password and it worked. For me solution password is: <strong>FireStone</strong><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-12-include-me-in" rel="bookmark" title="Saturday 21.11.2009">Basic web hacking 12 :: include me in</a></li>
<li><a href="http://www.axino.net/tutorial/2010/01/basic-web-hacking-15-my-robot" rel="bookmark" title="Monday 11.01.2010">Basic Web Hacking 15 :: My robot</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/javascript-challenge-7-jump-over" rel="bookmark" title="Sunday 30.05.2010">JavaScript Challenge 7 :: Jump over</a></li>
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-9-null-poison-byte" rel="bookmark" title="Tuesday 17.11.2009">Basic web hacking 9 :: null poison byte</a></li>
<li><a href="http://www.axino.net/tutorial/2010/01/basic-web-hacking-17-java-decompiler" rel="bookmark" title="Tuesday 26.01.2010">Basic Web Hacking 17 :: java decompiler</a></li>
</ul>
<p><!-- Similar Posts took 4.686 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=520" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2009/10/basic-web-hacking-4-bad-upload/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KingsAgeX :: version 0.56</title>
		<link>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-56</link>
		<comments>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-56#comments</comments>
		<pubDate>Thu, 22 Oct 2009 16:41:34 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[KingsAgeX]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[kingsage]]></category>
		<category><![CDATA[Online game]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=504</guid>
		<description><![CDATA[This update is minor as it fixes only drop down menu and options in castle. But since no premiums offered help I am not sure whether this thing works on premium account. But it was tested on none-premium and works for now *************Version 0.56*************Bugfix: Update button now again works. And updates list Bugfix: All options [...]]]></description>
			<content:encoded><![CDATA[<p>This update is minor as it fixes only drop down menu and options in castle. But since no premiums offered help I am not sure whether this thing works on premium account. But it was tested on none-premium and works for now <img src='http://www.axino.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><span id="more-504"></span>*************<br style="padding: 0px; margin: 0px;" />Version 0.56<br style="padding: 0px; margin: 0px;" />*************<br style="padding: 0px; margin: 0px;" />Bugfix: Update button now again works. And updates list</p>
<p>Bugfix: All options in castle are now working and accept changes. Another thing is that points in-line stopped working so I will try to fix this in some future update if it is possible of course.</p>
<p><a href="http://userscripts.org/scripts/source/51469.user.js">INSTALL LATEST VERSION HERE</a>.</p>
<p>I am thanking to people that offered help. I will not name them but thank you once more.</p>
<p>Ax<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/projects/kingsagex" rel="bookmark" title="Tuesday 16.06.2009">KingsAgeX</a></li>
<li><a href="http://www.axino.net/projects/kingsagex/2009/06/kingsagex-version-04beta" rel="bookmark" title="Thursday 18.06.2009">KingsAgeX :: version 0.4BETA</a></li>
<li><a href="http://www.axino.net/programming/javascript-programming/2009/12/kingsagex-version-0-62" rel="bookmark" title="Saturday 05.12.2009">Kingsagex :: version 0.62</a></li>
<li><a href="http://www.axino.net/projects/kingsagex/2009/06/kingsagex-version-05" rel="bookmark" title="Sunday 28.06.2009">KingsAgeX :: version 0.5</a></li>
<li><a href="http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-57" rel="bookmark" title="Wednesday 28.10.2009">KingsAgeX :: version 0.57 milestone</a></li>
</ul>
<p><!-- Similar Posts took 4.830 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=504" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/programming/javascript-programming/2009/10/kingsagex-version-0-56/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Basic web hacking 2 :: Iframe</title>
		<link>http://www.axino.net/tutorial/2009/09/basic-web-hacking-2-iframe</link>
		<comments>http://www.axino.net/tutorial/2009/09/basic-web-hacking-2-iframe#comments</comments>
		<pubDate>Wed, 30 Sep 2009 21:09:37 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hellboundhackers.org]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=481</guid>
		<description><![CDATA[If you have never heard of iframes here is probably the best source on subject. Its an obsolete technique used for web pages. However in this mission we are required to find source of this iframe. My friend Drake has begin to program in HTML and he made this IFRAME, but the host of the [...]]]></description>
			<content:encoded><![CDATA[<p>If you have never heard of iframes <a href="http://www.w3schools.com/tags/tag_iframe.asp" target="_blank">here is</a> probably the best source on subject. Its an obsolete technique used for web pages. However in this mission we are required to find source of this iframe.</p>
<p><span id="more-481"></span></p>
<blockquote><p>My friend Drake has begin to program in HTML and he made this IFRAME, but the host of the website has kicked him out, and he doesnt remeber where is this IFRAME reading it from.</p></blockquote>
<p>So if you have read tutorial then you probably can find source.</p>
<p>On the other hand it is really easy just go search trough source of mission web page when you find <strong>iframe tag</strong> you should be able to see <strong>src attribute</strong> now just copy value of source attribute in the text field and that is it&#8230;</p>
<p>Here is source of iframe:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">../basic1/b2/index.php</pre></div></div>

</blockquote>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/02/hackthissiteorg-basic-1-password-is" rel="bookmark" title="Sunday 01.02.2009">hackthissite.org basic 1 :: password is</a></li>
<li><a href="http://www.axino.net/tutorial/2009/11/basic-web-hacking-12-include-me-in" rel="bookmark" title="Saturday 21.11.2009">Basic web hacking 12 :: include me in</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-8-open-psd" rel="bookmark" title="Tuesday 27.01.2009">hackertest.net level 8 :: Open PSD</a></li>
<li><a href="http://www.axino.net/tutorial/2009/07/hackthissite-org-basic-9-tricky-easy-not" rel="bookmark" title="Sunday 05.07.2009">hackthissite.org basic 9 :: tricky easy not</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>
</ul>
<p><!-- Similar Posts took 4.792 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=481" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2009/09/basic-web-hacking-2-iframe/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
