<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://www.jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://www.jackxiang.com/post//</link>
<title><![CDATA[EditPlus查找PHP源码简单数字型注入的正则]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Thu, 30 Sep 2010 04:05:54 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	1.查找select、update、delete语句<br/>((select&#124;SELECT&#124;update&#124;UPDATE&#124;delete&#124;DELETE)+.*(from&#124;FROM&#124;set&#124;SET)+.*(where&#124;WHERE)+.*)<br/><br/>查询语句,对于没有条件判断的基本不存在注入问题，因而仅搜索此语句即可<br/>例子：<br/>select * from user where<br/><br/>2.简单的数字型注入<br/>((select&#124;SELECT&#124;update&#124;UPDATE&#124;delete&#124;DELETE)+.*(from&#124;FROM&#124;set&#124;SET)+.*(where&#124;WHERE)+.*=[ ]?[&quot;]?[&quot;]?&#92;$)<br/><br/>能找到select、update delete三种语句，5种格式的整形注入，如：<br/>直接变量传入<br/>select * from guess where id=$subject_id<br/>update guess set is_valid=0 where id=$subject_id<br/>delete from guess where id=$subject_id<br/>=与变量之间存在空格<br/>select * from guess where id= $subject_id<br/>update guess set is_valid=0 where id= $subject_id<br/>delete from guess where id= $subject_id<br/>变量双引号<br/>select * from guess where id=&quot;$subject_id&quot;<br/>update guess set is_valid=0 where id=&quot;$subject_id&quot;<br/>delete from guess where id=&quot;$subject_id&quot;<br/>=与双引号之间存在空格<br/>select * from guess where id= &quot;$subject_id&quot;<br/>update guess set is_valid=0 where id= &quot;$subject_id&quot;<br/>delete from guess where id= &quot;$subject_id&quot;<br/>=与引号、双引号之间存在空格<br/>select * from guess where id= &quot; $subject_id&quot;<br/>update guess set is_valid=0 where id= &quot; $subject_id&quot;<br/>delete from guess where id= &quot; $subject_id&quot;<br/><br/>来源：http://www.am82.com/houzan/archives/1844
]]>
</description>
</item><item>
<link>http://www.jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] EditPlus查找PHP源码简单数字型注入的正则]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>