网站地图    收藏   

主页 > 后端 > 网站安全 >

有用的javascript防注入漏洞过滤函数 - 网站安全

来源:自学PHP网    时间:2015-04-17 13:03 作者: 阅读:

[导读] script LANGUAGE=JavaScriptfunction check(inputStr) { if (typeof(inputStr) != string) { return inputStr; } var tmpValue = inputStr; // www.2cto.com 以下搜索字符串中的特殊字符......

 
<script LANGUAGE="JavaScript">
function check(inputStr) {
        if (typeof(inputStr) != "string") {
                return inputStr;
        }
        var tmpValue = inputStr; // www.2cto.com 以下搜索字符串中的特殊字符,如果存在,则替换成""
        while (tmpValue.indexOf(';') > -1) {
                tmpValue = tmpValue.replace(';','');
        }
        while (tmpValue.indexOf('<') > -1) {
                tmpValue = tmpValue.replace('<','');
        }
        while (tmpValue.indexOf('>') > -1) {
                tmpValue = tmpValue.replace('>','');
        }
        while (tmpValue.indexOf('--') > -1) {
            tmpValue = tmpValue.replace('--','');
        }
        while (tmpValue.indexOf(",") > -1) {
            tmpValue = tmpValue.replace(",","");
        }
        while (tmpValue.indexOf("'") > -1) {
            tmpValue = tmpValue.replace("'","");
        }
        while (tmpValue.indexOf("?") > -1) {
            tmpValue = tmpValue.replace("?","");
        }
        document.getElementById("txt1").value = tmpValue;
        //重新显示更改后的变量
}
</script>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论