首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>网络安全>文章内容
利用PHP编程防范XSS跨站脚本攻击
来源:http://www.luoyes.com 作者:落叶 发布时间:2011-05-27  
国内不少论坛都存在跨站脚本漏洞,国外也很多这样的例子,甚至Google也出现过,不过在12月初时修正了。(编者注:关于跨站脚本漏洞攻击,读者可参阅《详解XSS跨站脚本攻击》)。跨站攻击很容易就可以构造,而且非常隐蔽,不易被查觉(通常盗取信息后马上跳转回原页面)。

如何攻击,在此不作说明(也不要问我),主要谈谈如何防范。首先,跨站脚本攻击都是由于对用户的输入没有进行严格的过滤造成的,所以我们必须在所有数据进入我们的网站和数据库之前把可能的危险拦截。针对非法的HTML代码包括单双引号等,可以使用htmlentities() 。

  1. <?php   
  2. $str = "A 'quote' is <b>bold</b>";   
  3.   
  4. // Outputs: A 'quote' is bold   
  5. echo htmlentities($str);   
  6.   
  7. // Outputs: A 'quote' is bold   
  8. echo htmlentities($str, ENT_QUOTES);   
  9. ?>  

这样可以使非法的脚本失效。

但是要注意一点,htmlentities()默认编码为 ISO-8859-1,如果你的非法脚本编码为其它,那么可能无法过滤掉,同时浏览器却可以识别和执行。这个问题我先找几个站点测试后再说。

这里提供一个过滤非法脚本的函数:

  1. <?php   
  2. function RemoveXSS($val) {    
  3.  // remove all non-printable characters. CR(0a) and LF(0b) and TAB(9)    
  4. are allowed    
  5.  // this prevents some character re-spacing such as <java\0script>    
  6.  // note that you have to handle splits with \n, \r, and \t later since   
  7. they *are* allowed in some inputs    
  8.  $val = preg_replace('/([\x00-\x08][\x0b-\x0c][\x0e-\x20])/'''$val);    
  9.   
  10.  // straight replacements, the user should never need these since they're    
  11. normal characters    
  12.  // this prevents like <IMG SRC=&#X40&#X61&#X76&#X61&#X73&#X63&#X72&#X69   
  13. &#X70&#X74&#X3A&#X61&   
  14. _#X6C&#X65&#X72&#X74&#X28&#X27&#X58&#X53&#X53&#X27&#X29>    
  15.  $search = 'abcdefghijklmnopqrstuvwxyz';   
  16.  $search .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';   
  17.  $search .= '1234567890!@#$%^&*()';   
  18.  $search .= '~`";:?+/={}[]-_|\'\\';   
  19.  for ($i = 0; $i < strlen($search); $i++) {   
  20. // ;? matches the ;, which is optional   
  21. // 0{0,7} matches any padded zeros, which are optional and go   
  22. up to 8 chars   
  23.  
  24. // &#x0040 @ search for the hex values   
  25. $val = preg_replace('/(&#[x|X]0{0,8}'.dechex(ord($search[$i])).';?)/i',  
  26. $search[$i], $val); // with a ;   
  27. // @ @ 0{0,7} matches '0' zero to seven times   
  28. $val = preg_replace('/(&#0{0,8}'.ord($search[$i]).';?)/', $search[$i],   
  29. $val); // with a ;   
  30.  }   
  31.  
  32.  // now the only remaining whitespace attacks are \t, \n, and \r   
  33.  $ra1 = Array('javascript', 'vbscript', 'expression', 'applet', 'meta', 'xml',   
  34. 'blink', 'link', 'style', 'script', 'embed', 'object', 'iframe', 'frame',   
  35. 'frameset', 'ilayer', 'layer', 'bgsound', 'title', 'base');   
  36. $ra2 = Array('onabort', 'onactivate', 'onafterprint', 'onafterupdate',   
  37. 'onbeforeactivate', 'onbeforecopy', 'onbeforecut', 'onbeforedeactivate',   
  38. 'onbeforeeditfocus', 'onbeforepaste', 'onbeforeprint', 'onbeforeunload',   
  39. 'onbeforeupdate', 'onblur', 'onbounce', 'oncellchange', 'onchange', 'onclick',   
  40. 'oncontextmenu', 'oncontrolselect', 'oncopy', 'oncut', 'ondataavailable',   
  41. 'ondatasetchanged', 'ondatasetcomplete', 'ondblclick', 'ondeactivate',  
  42. 'ondrag', 'ondragend', 'ondragenter', 'ondragleave', 'ondragover', 'ondragstart',   
  43. 'ondrop', 'onerror', 'onerrorupdate', 'onfilterchange', 'onfinish', 'onfocus',   
  44. 'onfocusin', 'onfocusout', 'onhelp', 'onkeydown', 'onkeypress', 'onkeyup',  
  45. 'onlayoutcomplete', 'onload', 'onlosecapture', 'onmousedown', 'onmouseenter',   
  46. 'onmouseleave', 'onmousemove', 'onmouseout','onmouseover', 'onmouseup',   
  47. 'onmousewheel', 'onmove', 'onmoveend', 'onmovestart', 'onpaste', 'onpropertychange',   
  48. 'onreadystatechange', 'onreset', 'onresize', 'onresizeend', 'onresizestart',  
  49. 'onrowenter', 'onrowexit', 'onrowsdelete', 'onrowsinserted', 'onscroll', 'onselect',  
  50. 'onselectionchange', 'onselectstart', 'onstart', 'onstop', 'onsubmit', 'onunload');   
  51.  $ra = array_merge($ra1, $ra2);   
  52.  
  53.  $found = true; // keep replacing as long as the previous round replaced something   
  54.  while ($found == true) {   
  55. $val_before = $val;   
  56. for ($i = 0; $i < sizeof($ra); $i++) {   
  57.  $pattern = '/';   
  58.  for ($j = 0; $j < strlen($ra[$i]); $j++) {   
  59. if ($j > 0) {   
  60.  $pattern .= '(';   
  61.  $pattern .= '(&#[x|X]0{0,8}([9][a][b]);?)?';   
  62.  $pattern .= '|(&#0{0,8}([9][10][13]);?)?';   
  63.  $pattern .= ')?';   
  64.  
  65.  $pattern .= $ra[$i][$j];   
  66.  
  67. $pattern .= '/i';   
  68. $replacement = substr($ra[$i], 0, 2).'<x>'.substr($ra[$i], 2); // add in    
  69. <> to nerf the tag    
  70. $val = preg_replace($pattern$replacement$val); // filter out the hex tags    
  71. if ($val_before == $val) {    
  72.  // no replacements were made, so exit the loop    
  73.  $found = false;    
  74. }    
  75.  }    
  76. }    
  77. }   
  78. ?>  

 
[推荐] [评论(1条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·一句话木马
·samcrypt.lib简介
·教你轻松查看QQ空间加密后的好友
·web sniffer 在线嗅探/online ht
·SPIKE与Peach Fuzzer相关知识
·asp,php,aspx一句话集合
·Cisco PIX525 配置备忘
·用Iptables+Fedora做ADSL 路由器
·检查 Web 应用安全的几款开源免
·Md5(base64)加密与解密实战
·NT下动态切换进程分析笔记
·风险评估中的渗透测试
  相关文章
·web sniffer 在线嗅探/online ht
·PHP中的密码学算法及其应用2-对
·Content-Type 防范 XSS 绕过
·Web开发框架安全杂谈
·记录一次网站被黑抓马记
·从真实故事说起 读黑客战术社会
·麻烦的终结者
·asp,php,aspx一句话集合
·常见 Webshell 的检测方法及检测
·浅谈Ddos攻击攻击与防御
·浅谈新型的sql注入测试
·Auto pentesting. Nmap, SSLscan
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved