`

php过滤非法脚本函数

阅读更多
function RemoveXSS($val) { 
   // remove all non-printable characters. CR(0a) and LF(0b) and TAB(9) are allowed 
   // this prevents some character re-spacing such as <java\0script> 
   // note that you have to handle splits with \n, \r, and \t later since they *are* allowed in some inputs 
   $val = preg_replace('/([\x00-\x08][\x0b-\x0c][\x0e-\x20])/', '', $val); 
    
   // straight replacements, the user should never need these since they're normal characters 
   // this prevents like <IMG SRC=&#X40&#X61&#X76&#X61&#X73&#X63&#X72&#X69&#X70&#X74&#X3A&#X61&#X6C&#X65&#X72&#X74&#X28&#X27&#X58&#X53&#X53&#X27&#X29> 
   $search = 'abcdefghijklmnopqrstuvwxyz'; 
   $search .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; 
   $search .= '1234567890!@#$%^&*()'; 
   $search .= '~`";:?+/={}[]-_|\'\\'; 
   for ($i = 0; $i < strlen($search); $i++) { 
      // ;? matches the ;, which is optional 
      // 0{0,7} matches any padded zeros, which are optional and go up to 8 chars 
    
      // &#x0040 @ search for the hex values 
      $val = preg_replace('/(&#[x|X]0{0,8}'.dechex(ord($search[$i])).';?)/i', $search[$i], $val); // with a ; 
      // &#00064 @ 0{0,7} matches '0' zero to seven times 
      $val = preg_replace('/(&#0{0,8}'.ord($search[$i]).';?)/', $search[$i], $val); // with a ; 
   } 
    
   // now the only remaining whitespace attacks are \t, \n, and \r 
   $ra1 = Array('javascript', 'vbscript', 'expression', 'applet', 'meta', 'xml', 'blink', 'link', 'style', 'script', 'embed', 'object', 'iframe', 'frame', 'frameset', 'ilayer', 'layer', 'bgsound', 'title', 'base'); 
   $ra2 = Array('onabort', 'onactivate', 'onafterprint', 'onafterupdate', 'onbeforeactivate', 'onbeforecopy', 'onbeforecut', 'onbeforedeactivate', 'onbeforeeditfocus', 'onbeforepaste', 'onbeforeprint', 'onbeforeunload', 'onbeforeupdate', 'onblur', 'onbounce', 'oncellchange', 'onchange', 'onclick', 'oncontextmenu', 'oncontrolselect', 'oncopy', 'oncut', 'ondataavailable', 'ondatasetchanged', 'ondatasetcomplete', 'ondblclick', 'ondeactivate', 'ondrag', 'ondragend', 'ondragenter', 'ondragleave', 'ondragover', 'ondragstart', 'ondrop', 'onerror', 'onerrorupdate', 'onfilterchange', 'onfinish', 'onfocus', 'onfocusin', 'onfocusout', 'onhelp', 'onkeydown', 'onkeypress', 'onkeyup', 'onlayoutcomplete', 'onload', 'onlosecapture', 'onmousedown', 'onmouseenter', 'onmouseleave', 'onmousemove', 'onmouseout', 'onmouseover', 'onmouseup', 'onmousewheel', 'onmove', 'onmoveend', 'onmovestart', 'onpaste', 'onpropertychange', 'onreadystatechange', 'onreset', 'onresize', 'onresizeend', 'onresizestart', 'onrowenter', 'onrowexit', 'onrowsdelete', 'onrowsinserted', 'onscroll', 'onselect', 'onselectionchange', 'onselectstart', 'onstart', 'onstop', 'onsubmit', 'onunload'); 
   $ra = array_merge($ra1, $ra2); 
    
   $found = true; // keep replacing as long as the previous round replaced something 
   while ($found == true) { 
      $val_before = $val; 
      for ($i = 0; $i < sizeof($ra); $i++) { 
         $pattern = '/'; 
         for ($j = 0; $j < strlen($ra[$i]); $j++) { 
            if ($j > 0) { 
               $pattern .= '('; 
               $pattern .= '(&#[x|X]0{0,8}([9][a][b]);?)?'; 
               $pattern .= '|(&#0{0,8}([9][10][13]);?)?'; 
               $pattern .= ')?'; 
            } 
            $pattern .= $ra[$i][$j]; 
         } 
         $pattern .= '/i'; 
         $replacement = substr($ra[$i], 0, 2).'<x>'.substr($ra[$i], 2); // add in <> to nerf the tag 
         $val = preg_replace($pattern, $replacement, $val); // filter out the hex tags 
         if ($val_before == $val) { 
            // no replacements were made, so exit the loop 
            $found = false; 
         } 
      } 
   } 
}

 

分享到:
评论

相关推荐

    一个php过滤非法字符类

    标题提到的"一个php过滤非法字符类"就是一个用于实现这一目标的工具。这类工具通常会检查并清理用户输入,以避免潜在的恶意代码或不安全的字符进入系统。 这个PHP类的主要功能可能包括以下几点: 1. **非法字符...

    php过滤非法字符类.zip

    "php过滤非法字符类.zip"这个压缩包提供了一个专门用于过滤非法字符的PHP类,它可以帮助开发者有效地进行参数检查,并记录可能存在的安全风险。 首先,我们来理解一下什么是非法字符。在上下文中,非法字符通常指的...

    PHP自定义公共函数

    常见的处理方式包括去除空格、转义特殊字符、过滤非法字符等。例如,可以创建一个函数`sanitize_input($input)`,使用`htmlspecialchars()`和`trim()`对输入进行净化,防止XSS(跨站脚本攻击)和SQL注入。 2. **...

    php中过滤非法字符的具体实现

    总结来说,过滤非法字符的目的是为了防止恶意用户通过在表单输入中嵌入SQL代码、跨站脚本代码等对网站进行攻击。使用PHP提供的函数和正则表达式可以有效地过滤掉这些潜在的危险字符。需要注意的是,上述代码只是一个...

    php下过滤HTML代码的函数

    在PHP编程中,过滤HTML代码是一项重要的安全措施,主要用于防止跨站脚本攻击(XSS)和注入等安全问题。本文将深入探讨如何使用PHP函数来过滤和编码HTML,以确保用户输入的数据不会破坏网页结构或执行恶意代码。 ...

    JavaScript过滤SQL注入字符

    后端语言(如Java、Python、PHP)有更强大的过滤和转义功能,应确保所有的用户输入都经过验证和转义后再用于SQL查询。 六、最佳实践 1. 使用参数化查询(预编译语句):这是防止SQL注入最有效的方法,因为它将用户...

    PHP 字符串的过滤方法

    字符串过滤通常指的是去除或替换字符串中的不必要、非法或潜在危险的字符。这在诸如用户输入验证、URL编码、HTML清理等场景中非常有用,可以防止SQL注入、跨站脚本攻击(XSS)等安全问题。 PHP提供了多种内置函数来...

    比较好用的PHP防注入漏洞过滤函数代码

    标题中的“比较好用的PHP防注入漏洞过滤函数代码”指的是一个PHP代码片段,用于保护Web应用程序免受SQL注入攻击。这种攻击通常是通过恶意用户输入含有SQL命令的参数,以执行未授权的操作。以下是对该代码的详细解释...

    PHP使用正则表达式实现过滤非法字符串功能示例

    本示例主要展示了如何使用PHP的正则表达式功能来过滤非法字符串,特别是针对留言板数据提交的情况,防止恶意用户输入可能破坏系统或者安全的数据。 首先,我们需要了解PHP中的`preg_replace`函数。`preg_replace`是...

    php 安全过滤函数代码

    `check_str()` 函数用于过滤输入字符串,移除可能的非法字符。它主要处理了以下几类字符: - 控制字符:通过`preg_replace`函数移除`\\x00-\\x08\\x0B\\x0C\\x0E-\\x1F`范围内的控制字符。 - 空字符:使用`str_...

    php中$_GET与$_POST过滤sql注入的方法

    在Web开发中,PHP是一种常用的服务器端脚本语言,它经常用于与数据库交互,尤其是使用MySQL数据库。然而,当从HTTP请求(如$_GET、$_POST等超全局变量)中获取的数据直接用于数据库查询时,应用程序可能会遭受SQL...

    php中filter函数验证、过滤用户输入的数据

    PHP过滤器还提供了其他一些功能,比如可以设置自定义的回调函数来进行过滤。通过使用filter扩展提供的API,可以有效地提高Web应用的健壮性和安全性。在实际开发中,开发者应根据实际情况选择合适的过滤器类型,以...

    PHP环境安全加固1

    安全模式是一个内置的机制,它可以限制某些可能导致安全隐患的PHP函数,如`system()`,并控制文件操作函数的权限,防止对敏感文件(如`/etc/passwd`)的非法访问。默认情况下,安全模式在`php.ini`配置文件中并未...

    PHP 过滤器,用于对输入和输出数据进行验证和过滤.md

    为了使用PHP过滤器,你需要了解几个关键的函数: - **`filter_var()`**:用于对单个变量进行过滤或验证。 - **`filter_input()`**:用于获取和过滤来自外部资源的输入数据,如 HTTP GET 或 POST 数据。 - **`filter...

    BUUCTF-Web-Mark loves cat变量函数覆盖

    在PHP编程中,变量覆盖漏洞是一种常见的安全问题,它允许攻击者通过自定义的参数值替换原有的变量值,从而可能导致敏感信息泄露或者执行非法操作。这类漏洞通常出现在以下几种情况: 1. **全局变量覆盖**: 在PHP ...

    php漏洞和挖掘

    6. **代码注入**:当PHP脚本在输出之前没有正确转义或过滤用户输入时,攻击者可能插入恶意PHP代码,导致这段代码在服务器上被执行。 7. **逻辑漏洞**:虽然不涉及直接的代码执行,但逻辑漏洞允许攻击者绕过预期的...

Global site tag (gtag.js) - Google Analytics