<?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>Darknet - The Darkside &#187; sqlix</title>
	<atom:link href="http://www.darknet.org.uk/tag/sqlix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.darknet.org.uk</link>
	<description>Ethical Hacking, Penetration Testing &#38; Computer Security</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:34:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>OWASP &#8211;  SQLiX Project &#8211; SQL Injection Scanner</title>
		<link>http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/</link>
		<comments>http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/#comments</comments>
		<pubDate>Wed, 30 May 2007 04:49:46 +0000</pubDate>
		<dc:creator>Darknet</dc:creator>
				<category><![CDATA[Database Hacking]]></category>
		<category><![CDATA[Hacking Tools]]></category>
		<category><![CDATA[Web Hacking]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[sql-injection]]></category>
		<category><![CDATA[sql-injection-scanner]]></category>
		<category><![CDATA[sqlix]]></category>
		<category><![CDATA[web-application-security]]></category>
		<category><![CDATA[web-hacking-tools]]></category>
		<category><![CDATA[web-security]]></category>

		<guid isPermaLink="false">http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/</guid>
		<description><![CDATA[SQLiX, coded in Perl, is a SQL Injection scanner, able to crawl, detect SQL injection vectors, identify the back-end database and grab function call/UDF results (even execute system commands for MS-SQL). The concepts in use are different than the one used in other SQL injection scanners. SQLiX is able to find normal and blind SQL [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>SQLiX, coded in Perl, is a SQL Injection scanner, able to crawl, detect SQL injection vectors, identify the back-end database and grab function call/UDF results (even execute system commands for MS-SQL). The concepts in use are different than the one used in other SQL injection scanners. SQLiX is able to find normal and blind SQL injection vectors and doesn&#8217;t need to reverse engineer the original SQL request (using only function calls).</p>
<p>SQLiX is a SQL Injection scanner which attempts to fill the gap between what commercial software available on the market can do and what can really be done to detect and identify SQL injection.</p>
<p>Current injection methods used by commercial web assessment software are based on error generation or statement injections.</p>
<p><strong>Error Generation</strong></p>
<p>The error generation method is quite simple and is based on meta characters like single quotes or double quotes. By injecting these characters in the original SQL request, you generate a syntax error which could result in an SQL error message displayed in the HTTP reply. The main issue with this technique is the fact that it&#8217;s only based on pattern matching. There is no way to handle multiple languages or complex behaviors when the error message is filtered by the server-side scripts.</p>
<p><strong>Statement Injection</strong></p>
<p>The second method used is statement injection. Let&#8217;s look at an example:</p>
<p>The target URL</p>
<pre><code>http://target.example.com/news.php?id=25.</code></pre>
<p>The scanner will try to compare the HTML content of the original request with the HTML content of</p>
<pre><code>http://target.example.com/news.php?id=25%20or%201=1

http://target.example.com/news.php?id=25%20or%201=0</code></pre>
<p>If the request (1) provides the same result as request (0) and request (2) doesn&#8217;t, the scanner will conclude that SQL injection is possible. This method works fine, but is very limited by the syntax of the original request. If the original request contains parentheses, store procedures or function calls, this method will rarely work. Worse, if the variable is used by multiple SQL requests, all with different syntaxes, there is no automatic way to make them all work simultaneously.</p>
<p>Another global issue concerning SQL injection is the fact that pen testers frequently conclude that a given SQL injection vulnerability can&#8217;t be exploited. By concluding this incorrect statement they are inviting their customers to not patch the vulnerability.</p>
<p>You can download here:</p>
<p><a href="http://cedri.cc/tools/SQLiX_v1.0.tar.gz">OWASP SQLiX v1.0</a></p>
<p>Documentation and examples are here:</p>
<p></p>
<p><a href="http://www.owasp.org/index.php/Category:OWASP_SQLiX_Project">OWASP SQLiX Project</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=OWASP+%E2%80%93+SQLiX+Project+%E2%80%93+SQL+Injection+Scanner+http%3A%2F%2Fdarknet.org.uk%2F%3Fp%3D527+from+%40THEdarknet" title="Post to Twitter"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter-micro3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;t=OWASP+%E2%80%93++SQLiX+Project+%E2%80%93+SQL+Injection+Scanner" title="Post to Facebook"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook-micro3.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.google.com/buzz/post?url=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz-micro3.png" alt="Post to Google Buzz" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;title=OWASP+%E2%80%93++SQLiX+Project+%E2%80%93+SQL+Injection+Scanner" title="Post to Delicious"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/delicious/tt-delicious-micro3.png" alt="Post to Delicious" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;title=OWASP+%E2%80%93++SQLiX+Project+%E2%80%93+SQL+Injection+Scanner" title="Post to Digg"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/digg/tt-digg-micro3.png" alt="Post to Digg" /></a> <a class="tt" href="http://reddit.com/submit?url=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;title=OWASP+%E2%80%93++SQLiX+Project+%E2%80%93+SQL+Injection+Scanner" title="Post to Reddit"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/reddit/tt-reddit-micro3.png" alt="Post to Reddit" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/&amp;title=OWASP+%E2%80%93++SQLiX+Project+%E2%80%93+SQL+Injection+Scanner" title="Post to StumbleUpon"><img class="nothumb" src="http://www.darknet.org.uk/wp-content/plugins/tweet-this/icons/en/su/tt-su-micro3.png" alt="Post to StumbleUpon" /></a></p></div><div class="AWD_like_button "><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.darknet.org.uk%2F2007%2F05%2Fowasp-sqlix-project-sql-injection-scanner%2F&amp;send=false&amp;layout=standard&amp;width=&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=40" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:40px;" allowTransparency="true"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.darknet.org.uk/2007/05/owasp-sqlix-project-sql-injection-scanner/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

