当前位置: 首页 > 站长资讯 > 正文页面

discuz的php防止sql注入函数

最近在做一个主题投票网站,客户懂一些程序方面的东西。有特别要求需要过滤一些字符防止sql注入。本来这方面就没有特别的研究过。呵呵,又发扬了一回拿来主义。把discuz论坛的sql防注入函数取了来!Put网站目录_网站网址收录与提交入口

代码如下:Put网站目录_网站网址收录与提交入口

$magic_quotes_gpc = get_magic_quotes_gpc();Put网站目录_网站网址收录与提交入口

@extract(daddslashes($_COOKIE));Put网站目录_网站网址收录与提交入口

@extract(daddslashes($_POST));Put网站目录_网站网址收录与提交入口

@extract(daddslashes($_GET));Put网站目录_网站网址收录与提交入口

if(!$magic_quotes_gpc) {Put网站目录_网站网址收录与提交入口

$_FILES = daddslashes($_FILES);Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

function daddslashes($string, $force = 0) {Put网站目录_网站网址收录与提交入口

if(!$GLOBALS['magic_quotes_gpc'] || $force) {Put网站目录_网站网址收录与提交入口

if(is_array($string)) {Put网站目录_网站网址收录与提交入口

foreach($string as $key => $val) {Put网站目录_网站网址收录与提交入口

$string[$key] = daddslashes($val, $force);Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

} else {Put网站目录_网站网址收录与提交入口

$string = addslashes($string);Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

return $string;Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

大家可以增强下面的代码加以保护服务器的安全,PHP防止SQL注入安全函数十分重要!Put网站目录_网站网址收录与提交入口

代码如下:Put网站目录_网站网址收录与提交入口

/*Put网站目录_网站网址收录与提交入口

函数名称:inject_check()Put网站目录_网站网址收录与提交入口

函数作用:检测提交的值是不是含有SQL注射的字符,防止注射,保护服务器安全Put网站目录_网站网址收录与提交入口

参  数:$sql_str: 提交的变量Put网站目录_网站网址收录与提交入口

返 回 值:返回检测结果,ture or falsePut网站目录_网站网址收录与提交入口

*/Put网站目录_网站网址收录与提交入口

function inject_check($sql_str) {Put网站目录_网站网址收录与提交入口

return eregi('select|insert|and|or|update|delete|/'|///*|/*|/././/|/.//|union|into|load_file|outfile', $sql_str); // 进行过滤Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

/*Put网站目录_网站网址收录与提交入口

函数名称:verify_id()Put网站目录_网站网址收录与提交入口

函数作用:校验提交的ID类值是否合法Put网站目录_网站网址收录与提交入口

参  数:$id: 提交的ID值Put网站目录_网站网址收录与提交入口

返 回 值:返回处理后的IDPut网站目录_网站网址收录与提交入口

*/Put网站目录_网站网址收录与提交入口

function verify_id($id=null) {Put网站目录_网站网址收录与提交入口

if (!$id) { exit('没有提交参数!'); } // 是否为空判断Put网站目录_网站网址收录与提交入口

elseif (inject_check($id)) { exit('提交的参数非法!'); } // 注射判断Put网站目录_网站网址收录与提交入口

elseif (!is_numeric($id)) { exit('提交的参数非法!'); } // 数字判断Put网站目录_网站网址收录与提交入口

$id = intval($id); // 整型化Put网站目录_网站网址收录与提交入口

return $id;Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

/*Put网站目录_网站网址收录与提交入口

函数名称:str_check()Put网站目录_网站网址收录与提交入口

函数作用:对提交的字符串进行过滤Put网站目录_网站网址收录与提交入口

参  数:$var: 要处理的字符串Put网站目录_网站网址收录与提交入口

返 回 值:返回过滤后的字符串Put网站目录_网站网址收录与提交入口

*/Put网站目录_网站网址收录与提交入口

function str_check( $str ) {Put网站目录_网站网址收录与提交入口

if (!get_magic_quotes_gpc()) { // 判断magic_quotes_gpc是否打开Put网站目录_网站网址收录与提交入口

$str = addslashes($str); // 进行过滤Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

$str = str_replace("_", "/_", $str); // 把 '_'过滤掉Put网站目录_网站网址收录与提交入口

$str = str_replace("%", "/%", $str); // 把 '%'过滤掉Put网站目录_网站网址收录与提交入口

return $str;Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

/*Put网站目录_网站网址收录与提交入口

函数名称:post_check()Put网站目录_网站网址收录与提交入口

函数作用:对提交的编辑内容进行处理Put网站目录_网站网址收录与提交入口

参  数:$post: 要提交的内容Put网站目录_网站网址收录与提交入口

返 回 值:$post: 返回过滤后的内容Put网站目录_网站网址收录与提交入口

*/Put网站目录_网站网址收录与提交入口

function post_check($post) {Put网站目录_网站网址收录与提交入口

if (!get_magic_quotes_gpc()) { // 判断magic_quotes_gpc是否为打开Put网站目录_网站网址收录与提交入口

$post = addslashes($post); // 进行magic_quotes_gpc没有打开的情况对提交数据的过滤Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

$post = str_replace("_", "/_", $post); // 把 '_'过滤掉Put网站目录_网站网址收录与提交入口

$post = str_replace("%", "/%", $post); // 把 '%'过滤掉Put网站目录_网站网址收录与提交入口

$post = nl2br($post); // 回车转换Put网站目录_网站网址收录与提交入口

$post = htmlspecialchars($post); // html标记转换Put网站目录_网站网址收录与提交入口

return $post;Put网站目录_网站网址收录与提交入口

}Put网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章