<?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; php</title>
	<atom:link href="http://www.axino.net/category/programming/php-programming/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>How to redirect site in php</title>
		<link>http://www.axino.net/tutorial/2010/06/how-to-redirect-site-in-php</link>
		<comments>http://www.axino.net/tutorial/2010/06/how-to-redirect-site-in-php#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:22:44 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=1004</guid>
		<description><![CDATA[Last day I needed to forward domain: swat2010.axino.net to my server. And this can easily be done with the php. &#60;? &#160; header&#40;&#34;Location: http://193.2.218.150:8080/SWAT2010/&#34;&#41;; &#160; ?&#62; Inside header you should put location to which you would like to forward user.Similar Posts: SWAT2010 :: available again SWAT2010 :: new location SWAT2010 :: unavailable hackertest.net level 17 [...]]]></description>
			<content:encoded><![CDATA[<p>Last day I needed to forward domain: swat2010.axino.net to my server.</p>
<p><span id="more-1004"></span></p>
<p>And this can easily be done with the php.<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?</span>
&nbsp;
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Location: http://193.2.218.150:8080/SWAT2010/&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code></p>
<p>Inside header you should put location to which you would like to forward user.<strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/projects/swat2010/2010/05/swat2010-available-again" rel="bookmark" title="Monday 31.05.2010">SWAT2010 :: available again</a></li>
<li><a href="http://www.axino.net/programming/java-programming/2010/03/swat2010-new-position" rel="bookmark" title="Monday 15.03.2010">SWAT2010 :: new location</a></li>
<li><a href="http://www.axino.net/programming/java-programming/2010/04/swat2010-unavailable" rel="bookmark" title="Thursday 29.04.2010">SWAT2010 :: unavailable</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/11/hackertest-net-level-17-do-you-like-cookies" rel="bookmark" title="Monday 30.11.2009">hackertest.net level 17 :: Do you like cookies</a></li>
<li><a href="http://www.axino.net/programming/java-programming/2010/02/swat2010-preview" rel="bookmark" title="Friday 05.02.2010">SWAT2010 preview</a></li>
</ul>
<p><!-- Similar Posts took 5.397 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1004" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/06/how-to-redirect-site-in-php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>hackthissite.org extbasic 13 :: I do validate. I really do.</title>
		<link>http://www.axino.net/tutorial/2010/05/hackthissite-org-extbasic-13-i-do-validate-i-really-do</link>
		<comments>http://www.axino.net/tutorial/2010/05/hackthissite-org-extbasic-13-i-do-validate-i-really-do#comments</comments>
		<pubDate>Mon, 24 May 2010 21:22:09 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=947</guid>
		<description><![CDATA[Notice that validating is futile if you have obvious fail in logic. Here is the code we need to analyze: &#60;?php if &#40;isset&#40;$_GET&#91;'name'&#93;&#41; &#38;&#38; isset&#40;$_GET&#91;'email'&#93;&#41;&#41; &#123; $user = mysql_real_escape_string&#40;$_GET&#91;'name'&#93;&#41;; $email = mysql_real_escape_string&#40;$_GET&#91;'email'&#93;&#41;; $result= mysql_fetch_assoc&#40;mysql_query&#40;&#34;SELECT `email` FROM `members` WHERE name = '$user'&#34;&#41;&#41;; $reply = false; if &#40;$email == $result&#91;'email'&#93;&#41; &#123; $reply = true; &#125; &#125; else &#123; [...]]]></description>
			<content:encoded><![CDATA[<p>Notice that validating is futile if you have obvious fail in logic.</p>
<p><span id="more-947"></span></p>
<p>Here is the code we need to analyze:<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$user</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_real_escape_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'name'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$email</span> <span style="color: #339933;">=</span> <span style="color: #990000;">mysql_real_escape_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$result</span><span style="color: #339933;">=</span> <span style="color: #990000;">mysql_fetch_assoc</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">mysql_query</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT `email` FROM `members` WHERE name = '<span style="color: #006699; font-weight: bold;">$user</span>'&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$reply</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
                <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$result</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'email'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
                <span style="color: #009900;">&#123;</span>
                        <span style="color: #000088;">$reply</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
                <span style="color: #009900;">&#125;</span>
        <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$reply</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$reply</span><span style="color: #009900;">&#41;</span> ? <span style="color: #cc66cc;">1</span> <span style="color: #339933;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code></p>
<p>There are many deceptions in this script but for us it is important to analyze first if statement. It checks whether name and email are set even if empty. Now notice that both are escaped before placed in SQL. And then second if statement check whether we compare result email to the inputted email. So you probably figure out now that two same values when compared are always the same. So what will probably be result if we input anything in. Result will be empty, now its simple if you compare empty to empty it is true.<br />
<code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">vrfy<span style="color: #339933;">.</span>php?name<span style="color: #339933;">=&amp;</span>email<span style="color: #339933;">=</span></pre></div></div>

<p></code></p>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<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/01/javascript-challenge-3-function-again" rel="bookmark" title="Friday 29.01.2010">JavaScript Challenge 3 :: Function again</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/11/hackertest-net-level-12-zoom-in" rel="bookmark" title="Tuesday 24.11.2009">hackertest.net level 12 :: zoom in&#8230;</a></li>
<li><a href="http://www.axino.net/tutorial/2010/05/javascript-missions-3-math-time" rel="bookmark" title="Monday 17.05.2010">Javascript Missions 3 :: Math time</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-5-save-as" rel="bookmark" title="Wednesday 14.01.2009">hackertest.net level 5 :: Save As&#8230;</a></li>
</ul>
<p><!-- Similar Posts took 5.886 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=947" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/05/hackthissite-org-extbasic-13-i-do-validate-i-really-do/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hackthissite.org extbasic 6 :: Sucky Sysadmin</title>
		<link>http://www.axino.net/tutorial/2010/01/hackthissite-org-extbasic-6-sucky-sysadmin</link>
		<comments>http://www.axino.net/tutorial/2010/01/hackthissite-org-extbasic-6-sucky-sysadmin#comments</comments>
		<pubDate>Mon, 04 Jan 2010 20:25:08 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hackthissite]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=732</guid>
		<description><![CDATA[In the 6th extended basic mission, we have to use exploit of php server configured to use global variables. Mission introduction: This site in run by a new sysadmin who does not know much about web configuration The script is located at http://moo.com/moo.php Attempt to make the script think you are authed by entering the correct [...]]]></description>
			<content:encoded><![CDATA[<p>In the 6th extended basic mission, we have to use exploit of php server configured to use global variables.</p>
<p><span id="more-732"></span></p>
<p>Mission introduction:</p>
<blockquote><p>This site in run by a new sysadmin who does not know much about <a id="KonaLink0" href="http://www.hackthissite.org/missions/extbasic/template.php?lvl=6#" target="undefined"><span>web</span></a> configuration<br />
The script is located at http://moo.com/moo.php</p>
<p>Attempt to make the script think you are authed by entering the correct URI.</p></blockquote>
<blockquote><p>Here is the script (me.php):</p></blockquote>
<p>Script we have to exploit:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>?php
<span style="color: #000088;">$user</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'user'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$pass</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'pass'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>isAuthed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$user</span><span style="color: #339933;">,</span><span style="color: #000088;">$pass</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$passed</span><span style="color: #339933;">=</span><span style="color: #009900; font-weight: bold;">TRUE</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$passed</span><span style="color: #339933;">==</span><span style="color: #009900; font-weight: bold;">TRUE</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'you win'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>form action<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;me.php&quot;</span> method<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;get&quot;</span><span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>input type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text&quot;</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;user&quot;</span> <span style="color: #339933;">/&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>input type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;password&quot;</span> name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pass&quot;</span> <span style="color: #339933;">/&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;/</span>form<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>?php
<span style="color: #000000; font-weight: bold;">function</span> isAuthed<span style="color: #009900;">&#40;</span><span style="color: #000088;">$a</span><span style="color: #339933;">,</span><span style="color: #000088;">$b</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">FALSE</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></div></div>

</blockquote>
<p>Now notice that form is passing parameters trough <strong>get method</strong>. This means that if server is not configured correctly or using global variables we can change any other variable in the code by entering it in the URL. However, before we proceed we have to exam code.</p>
<p>Method<strong> isAuthed</strong> always returns <strong>FALSE</strong>.  Therefore we cannot enter combination of username and password that will authenticate us. The third variable <strong>$passed</strong> is in fact control variable. If this variable is set to <strong>TRUE </strong>we win. Now we have to figure out how to change URL to change variable passed to TRUE.</p>
<p>From introduction we know that script is located on: <strong> http://moo.com/moo.php </strong>so to pass variable trough GET we attach <strong>?passed=somevalue</strong>. And passed will have value <strong>somevalue</strong>.</p>
<p>So the final URL is:</p>
<blockquote><p>http://moo.com/moo.php?passed=TRUE</p></blockquote>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/03/hackthissiteorg-basic-2-password-is-not" rel="bookmark" title="Wednesday 11.03.2009">hackthissite.org basic 2 :: password is not</a></li>
<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/05/keylogger-in-c-hooking-and-unhooking-keyboard-hook" rel="bookmark" title="Thursday 07.05.2009">Keylogger in C# :: Hooking and unhooking keyboard hook</a></li>
<li><a href="http://www.axino.net/tutorial/2009/09/basic-web-hacking-1-simple-enter-pass" rel="bookmark" title="Tuesday 29.09.2009">Basic Web Hacking 1 :: Simple Enter Pass</a></li>
<li><a href="http://www.axino.net/hack/hackertestnet/2009/01/hackertestnet-level-2" rel="bookmark" title="Thursday 08.01.2009">hackertest.net level 2 :: Analysis Sherlock</a></li>
</ul>
<p><!-- Similar Posts took 5.973 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=732" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2010/01/hackthissite-org-extbasic-6-sucky-sysadmin/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>hackthissite.org extbasic 2 :: Extension blocking</title>
		<link>http://www.axino.net/tutorial/2009/12/hackthissite-org-extbasic-2-extension-blocking</link>
		<comments>http://www.axino.net/tutorial/2009/12/hackthissite-org-extbasic-2-extension-blocking#comments</comments>
		<pubDate>Fri, 25 Dec 2009 22:58:04 +0000</pubDate>
		<dc:creator>Arxleol</dc:creator>
				<category><![CDATA[hackthissite.org]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hackthissite]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.axino.net/?p=707</guid>
		<description><![CDATA[Second extended basic mission is somewhat simple. Let&#8217;s solve it In introduction: You have this function, provide the value which must be POST-ed as filename to obtain the desired results: Get the source code of hackthissite.org/index.php here is the function: We have to  find vulnerability in the following code: &#160; So we have to find [...]]]></description>
			<content:encoded><![CDATA[<p>Second extended basic mission is somewhat simple. Let&#8217;s solve it <img src='http://www.axino.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><span id="more-707"></span></p>
<p>In introduction:</p>
<blockquote><p>You have this function, provide the value which must be POST-ed as filename to obtain the desired results:<br />
Get the source code of hackthissite.org/index.php<br />
here is the function:</p></blockquote>
<p>We have to  find vulnerability in the following code:</p>

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

<p>So we have to find way to see code of the file on server. From the source code we may see that file to be opened is created merging strings using the name of the file and extension. So we have to enter correct name in the box to see file. Basically correct name is <strong>index </strong>since .php will be attached later in function call.</p>
<p>Now the problem is to solve how to traverse us into the root directory. We will do this by putting <strong>../../</strong> in front of the index. Since ../ returns us one directory back.</p>
<p>Because if you try to put anything in the box you will obtain URL similar to the following one:</p>
<blockquote><p>http://www.hackthissite.org/missions/extbasic/template.php?lvl=2&amp;pass=</p></blockquote>
<p>So you may notice that we are in the directory <strong>missions/extbasic/</strong>. Using ../ will return us two directories back to root directory.</p>
<p>So final combined solution is:</p>
<blockquote><p>../../index</p></blockquote>
<p><strong>Similar Posts:</strong>
<ul class="similar-posts">
<li><a href="http://www.axino.net/tutorial/2009/12/hackthissite-org-basic-11-music-collection" rel="bookmark" title="Monday 21.12.2009">hackthissite.org basic 11 :: Music collection</a></li>
<li><a href="http://www.axino.net/tutorial/2009/07/hackthissite-org-basic-8-ssi" rel="bookmark" title="Friday 03.07.2009">hackthissite.org basic 8 :: SSI</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/tutorials" rel="bookmark" title="Wednesday 07.01.2009">Tutorials</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>
</ul>
<p><!-- Similar Posts took 5.757 ms --></p>
 <img src="http://www.axino.net/wordpress/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=707" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.axino.net/tutorial/2009/12/hackthissite-org-extbasic-2-extension-blocking/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
