php快速查找数据库中恶意代码的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-19 19:57:17 浏览: 评论:0
本文实例讲述了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);
Tags: php快速查找恶意代码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)