php快速查找数据库中恶意代码的方法_PHP
程序员文章站
2022-06-03 16:45:48
...
本文实例讲述了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程序设计有所帮助。
推荐阅读
-
php获取mysql数据库中的所有表名的代码_PHP
-
ThinkPHP中SHOW_RUN_TIME不能正常显示运行时间的解决方法 原创,thinkphprun_PHP教程
-
几个php中类的自动加载的方法的实例详解
-
PHP使用mysql_fetch_object从查询结果中获取对象集的方法_PHP教程
-
php在多维数组中查找特定的value的方法
-
php中实现xml与mysql数据相互转换的方法_php技巧
-
Zend Framework实现将session存储在memcache中的方法_PHP
-
使用PHPMyAdmin修复论坛数据库的图文方法_php实例
-
php连接不同数据库的几种方法
-
php+mysqli使用预处理技术进行数据库查询的方法,mysqli预处理_PHP教程