php快速查找数据库中恶意代码的方法

 2025-01-15  阅读 294  评论 8  点赞 321

摘要:本文实例讲述了php快速查找数据库中恶意代码的方法。分享给大家供大家参考。具体如下: 数据库被输入恶意代码,为了保证你的数据库的安全,你必须得小心去清理。有了下面一个超级方便的功能,即可快速清除数据库恶意代码。 function cleaninput($input) { $search = array( '

本文实例讲述了php快速查找数据库中恶意代码的方法。分享给大家供大家参考。具体如下:

php快速查找数据库中恶意代码的方法

数据库被输入恶意代码,为了保证你的数据库的安全,你必须得小心去清理。有了下面一个超级方便的功能,即可快速清除数据库恶意代码。


function cleaninput($input) {
 $search = array(
  '@]*?>.*?@si', // strip out javascript
  '@<[\/\!]*?[^<>]*?>@si', // strip out html tags
  '@
]*?>.*?
@siu', // strip style tags properly
  '@@' // strip multi-line comments
 );
  $output = preg_replace($search, '', $input);
  return $output;
 }
function sanitize($input) {
  if (is_array($input)) {
    foreach($input as $var=>$val) {
      $output[$var] = sanitize($val);
    }
  }
  else {
    if (get_magic_quotes_gpc()) {
      $input = stripslashes($input);
    }
    $input = cleaninput($input);
    $output = mysql_real_escape_string($input);
  }
  return $output;
}
// usage:
$bad_string = "hi! it's a good day!";
$good_string = sanitize($bad_string);
// $good_string returns "hi! it\'s a good day!"
// also use for getting post/get variables
$_post = sanitize($_post);
$_get = sanitize($_get);

希望本文所述对大家的php程序设计有所帮助。


标签:phpphp教程

评论列表:

  •   xixi2
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0287秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号