找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 318|回复: 0
打印 上一主题 下一主题

php 参数过滤、数据过滤详解

[复制链接]

2560

主题

2560

帖子

7622

积分

论坛元老

Rank: 8Rank: 8

积分
7622
跳转到指定楼层
楼主
发表于 2018-2-14 05:42:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

            下面通过一段代码给大家介绍php参数过滤
class mysafe{
public $logname;
public $isshwomsg;
function __construct(){
  set_error_handler('MyError',E_ALL);
  //-----
}
function MyError($errno, $errstr, $errfile, $errline){  
  echo "Error number: [$errno],error on line $errline in $errfile
";
  exit;
}
function wlog($logs){
  if(empty($logname)){
   $this->logname=$_SERVER["DOCUMENT_ROOT"]."/log.htm";
  }  
  $Ts=fopen($this->logname,"a+");
  fputs($Ts,$logs."\r\n");
  fclose($Ts);
}
function showmsg($msg='',$flag=false){
  $this->isshwomsg=empty($this->isshwomsg) ? false : true;
  if ($this->isshwomsg) {
   echo '
--------------------------------------
';
   echo $msg;
   echo '
--------------------------------------
';
   if ($flag) exit;
  }
}
function get_filter(){
  $getfilter="'|(and|or)\\b.+?(>|$value){
   $this->StopAttack($key,$value,$getfilter);
  }
}
function post_filter(){
  $postfilter="\\b(and|or)\\b.{1,6}?(=|>|$value){
   $this->StopAttack($key,$value,$postfilter);
  }
}
function cookie_filter(){
  $cookiefilter="\\b(and|or)\\b.{1,6}?(=|>|$value){
   $this->StopAttack($key,$value,$cookiefilter);
  }
}
//过滤参数
function StopAttack($StrFiltKey,$StrFiltValue,$ArrFiltReq){
  if(is_array($StrFiltValue)){
   $StrFiltValue=implode($StrFiltValue);
  }
  if (preg_match("/".$ArrFiltReq."/is",$StrFiltValue)==1){
   $msg="
操作IP: ".$_SERVER["REMOTE_ADDR"]."
操作时间: ".strftime("%Y-%m-%d %H:%M:%S")."
操作页面:".$_SERVER["HP_SELF"]."
提交方式: ".$_SERVER["REQUEST_METHOD"]."
提交参数: ".$StrFiltKey."
提交数据: ".$StrFiltValue;
   $this->wlog($msg);   
   $this->showmsg($msg);   
   exit();
  }  
}
function filter_value_for_sql($str){
  $str = str_replace("and","",$str);
  $str = str_replace("execute","",$str);
  $str = str_replace("update","",$str);
  $str = str_replace("count","",$str);
  $str = str_replace("chr","",$str);
  $str = str_replace("mid","",$str);
  $str = str_replace("master","",$str);
  $str = str_replace("truncate","",$str);
  $str = str_replace("char","",$str);
  $str = str_replace("declare","",$str);
  $str = str_replace("select","",$str);
  $str = str_replace("create","",$str);
  $str = str_replace("delete","",$str);
  $str = str_replace("insert","",$str);
  $str = str_replace("'","",$str);
  $str = str_replace('"',"",$str);
  $str = str_replace(" ","",$str);
  $str = str_replace("or","",$str);
  $str = str_replace("=","",$str);
  $str = str_replace(" ","",$str);
  return $str;
}
//class end
}
下面给大家介绍下PHP数据过滤
1、php提交数据过滤的基本原则
1)提交变量进数据库时,我们必须使用addslashes()进行过滤,像我们的注入问题,一个addslashes()也就搞定了。其实在涉及到变量取值时,intval()函数对字符串的过滤也是个不错的选择。
2)在php.ini中开启magic_quotes_gpc和magic_quotes_runtime。magic_quotes_gpc可以把get,post,cookie里的引号变为斜杠。magic_quotes_runtime对于进出数据库的数据可以起到格式话的作用。其实,早在以前注入很疯狂时,这个参数就很流行了。
3)在使用系统函数时,必须使用escapeshellarg(),escapeshellcmd()参数去过滤,这样你也就可以放心的使用系统函数。
4)对于跨站,strip_tags(),htmlspecialchars()两个参数都不错,对于用户提交的的带有html和php的标记都将进行转换。比如尖括号"
2、PHP简单的数据过滤
1)入库:  trim($str),addslashes($str)
2)出库:  stripslashes($str)
3)显示:  htmlspecialchars(nl2br($str))
            
            
您可能感兴趣的文章:
  • php 字符过滤类,用于过滤各类用户输入的数据
  • PHP数据过滤的方法
  • php中filter函数验证、过滤用户输入的数据
  • php过滤所有恶意字符(批量过滤post,get敏感数据)
  • php防止sql注入之过滤分页参数实例
  • php判断文件上传类型及过滤不安全数据的方法
            
  • 分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    用户反馈
    客户端