博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 过滤危险字符,php过滤特殊危险字符的总结
阅读量:5939 次
发布时间:2019-06-19

本文共 4482 字,大约阅读时间需要 14 分钟。

一般,对于传进来的字符,

php教程可以用addslashes函数处理一遍(要get_magic_quotes_gpc()为假才处理,不然就重复转义了!),这样就能达到一定程度的安全要求

比如这样

代码如下 复制代码

if (!get_magic_quotes_gpc()) {

add_slashes($_GET);

add_slashes($_POST);

add_slashes($_COOKIE);

}

function add_slashes($string) {

if (is_array($string)) {

foreach ($string as $key => $value) {

$string[$key] = add_slashes($value);

}

} else {

$string = addslashes($string);

}

return $string;

}

但是还可以更进一步进行重新编码,解码,如下:

代码如下 复制代码

//编码

function htmlencode($str) {

if(empty($str)) return;

if($str=="") return $str;

$str=trim($str);

$str=str_replace("&","&",$str);

$str=str_replace(">",">",$str);

$str=str_replace("<","&lt;",$str);

$str=str_replace(chr(32),"&nbsp;",$str);

$str=str_replace(chr(9),"&nbsp;",$str);

$str=str_replace(chr(34),"&",$str);

$str=str_replace(chr(39),"&#39;",$str);

$str=str_replace(chr(13),"<br />",$str);

$str=str_replace("'","''",$str);

$str=str_replace("select","sel&#101;ct",$str);

$str=str_replace("join","jo&#105;n",$str);

$str=str_replace("union","un&#105;on",$str);

$str=str_replace("where","wh&#101;re",$str);

$str=str_replace("insert","ins&#101;rt",$str);

$str=str_replace("delete","del&#101;te",$str);

$str=str_replace("update","up&#100;ate",$str);

$str=str_replace("like","lik&#101;",$str);

$str=str_replace("drop","dro&#112;",$str);

$str=str_replace("create","cr&#101;ate",$str);

$str=str_replace("modify","mod&#105;fy",$str);

$str=str_replace("rename","ren&#097;me",$str);

$str=str_replace("alter","alt&#101;r",$str);

$str=str_replace("cast","ca&#115;",$str);

return $str;

}

这样就能更放心的对外来数据进行入库处理了, 但是从数据库取出来,在前台显示的时候,必须重新解码一下:

代码如下 复制代码

//解码

function htmldecode($str) {

if(empty($str)) return;

if($str=="")  return $str;

$str=str_replace("sel&#101;ct","select",$str);

$str=str_replace("jo&#105;n","join",$str);

$str=str_replace("un&#105;on","union",$str);

$str=str_replace("wh&#101;re","where",$str);

$str=str_replace("ins&#101;rt","insert",$str);

$str=str_replace("del&#101;te","delete",$str);

$str=str_replace("up&#100;ate","update",$str);

$str=str_replace("lik&#101;","like",$str);

$str=str_replace("dro&#112;","drop",$str);

$str=str_replace("cr&#101;ate","create",$str);

$str=str_replace((www.111cn.net)"mod&#105;fy","modify",$str);

$str=str_replace("ren&#097;me","rename",$str);

$str=str_replace("alt&#101;r","alter",$str);

$str=str_replace("ca&#115;","cast",$str);

$str=str_replace("&amp;","&",$str);

$str=str_replace("&gt;",">",$str);

$str=str_replace("&lt;","<",$str);

$str=str_replace("&nbsp;",chr(32),$str);

$str=str_replace("&nbsp;",chr(9),$str);

$str=str_replace("&",chr(34),$str);

$str=str_replace("&#39;",chr(39),$str);

$str=str_replace("<br />",chr(13),$str);

$str=str_replace("''","'",$str);

return $str;

}

虽然多了一步编码,解码的过程,但是安全方面,会更进一步,要如何做,自己取舍吧。

再附一些

代码如下 复制代码

function safe_replace($string) {

$string = str_replace(' ','',$string);

$string = str_replace(''','',$string);

$string = str_replace(''','',$string);

$string = str_replace('*','',$string);

$string = str_replace('"','"',$string);

$string = str_replace("'",'',$string);

$string = str_replace('"','',$string);

$string = str_replace(';','',$string);

$string = str_replace('

$string = str_replace('>','>',$string);

$string = str_replace("{",'',$string);

$string = str_replace('}','',$string);

return $string;

}

更全面的

代码如下 复制代码

//处理提交的数据

function htmldecode($str) {

if (empty ( $str ) || "" == $str) {

return "";

}

$str = strip_tags ( $str );

$str = htmlspecialchars ( $str );

$str = nl2br ( $str );

$str = str_replace ( "?", "", $str );

$str = str_replace ( "*", "", $str );

$str = str_replace ( "!", "", $str );

$str = str_replace ( "~", "", $str );

$str = str_replace ( "$", "", $str );

$str = str_replace ( "%", "", $str );

$str = str_replace ( "^", "", $str );

$str = str_replace ( "^", "", $str );

$str = str_replace ( "select", "", $str );

$str = str_replace ( "join", "", $str );

$str = str_replace ( "union", "", $str );

$str = str_replace ( "where", "", $str );

$str = str_replace ( "insert", "", $str );

$str = str_replace ( "delete", "", $str );

$str = str_replace ( "update", "", $str );

$str = str_replace ( "like", "", $str );

$str = str_replace ( "drop", "", $str );

$str = str_replace ( "create", "", $str );

$str = str_replace ( "modify", "", $str );

$str = str_replace ( "rename", "", $str );

$str = str_replace ( "alter", "", $str );

$str = str_replace ( "cast", "", $str );

$farr = array ("//s+/", //过滤多余的空白

"/]*?)>/isU", //过滤

;

$tarr = array (" ", "", //如果要直接清除不安全的标签,这里可以留空

"" );

return $str;

}

from:

http://www.111cn.net/phper/phpanqn/55876.htm

转载地址:http://whltx.baihongyu.com/

你可能感兴趣的文章
深入理解Spark:核心思想与源码分析. 3.9 启动测量系统MetricsSystem
查看>>
讲给普通人听的分布式数据存储
查看>>
《C++面向对象高效编程(第2版)》——3.13 采用语义
查看>>
《 短文本数据理解》——2.5小结
查看>>
如何编写一个全新的 Git 协议
查看>>
马云携阿里17位创始人及合伙人捐赠浙大一院5.6亿,杭州渐成中国硅谷
查看>>
《libGDX移动游戏开发从入门到精通》一第2章 libGDX的架构分析
查看>>
《配置管理最佳实践》——2.10 建立构建过程
查看>>
《C++入门经典(第5版•修订版)》——2.6 问与答
查看>>
PLM调研第二天
查看>>
《精通Linux设备驱动程序开发》——1.5 Linux发行版
查看>>
《术以载道——软件过程改进实践指南》—第1章1.3节如何实施CMMI
查看>>
Harris’s Linked List
查看>>
(流式、lambda、触发器)实时处理大比拼 - 物联网(IoT)\金融,时序处理最佳实践
查看>>
什么Linux服务器最适合你?
查看>>
git 换行符问题,统一linux风格
查看>>
SQL on Linux Run on Docker
查看>>
C语言程序设计实践(OJ)-初识函数
查看>>
Spark机器学习9· 实时机器学习(scala with sbt)
查看>>
数据结构实践——队列数组
查看>>