首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>漏洞资料>文章内容
关于magic_quotes_sybase
来源:http://www.80vul.com 作者:ryat 发布时间:2010-05-17  

关于magic_quotes_sybase

author: ryat#wolvez.org
team:http://www.80vul.com
date:2009-04-14

一 描叙

magic_quotes_gpc为on时,php在注册变量时会调用addslashes()函数处理[既转义单引号、双引号、反斜线和nullbyte],但php.ini中还有另外一个选项影响着magic_quotes_gpc和addslashes()函数:当php.ini设置magic_quotes_sybase为on时会覆盖magic_quotes_gpc为on的处理,然而magic_quotes_sybase仅仅是转义了nullbyte和把'变成了''


二 分析

先来看下addslashes的php源码:

// string.c
PHPAPI char *php_addslashes(char *str, int length, int *new_length, int should_free TSRMLS_DC)
{
 return php_addslashes_ex(str, length, new_length, should_free, 0 TSRMLS_CC);
}
...
PHPAPI char *php_addslashes_ex(char *str, int length, int *new_length, int should_free, int ignore_sybase TSRMLS_DC)
{
... 
 if (!ignore_sybase && PG(magic_quotes_sybase)) {
// 如果ignore_sybase=0[默认为0]且magic_quotes_sybase为on就执行下面的代码
  while (source < end) {
   switch (*source) {
    case '\0':
     *target++ = '\\';
     *target++ = '0';
     break;
    case '\'':
     *target++ = '\'';
     *target++ = '\'';
     break;
    default:
     *target++ = *source;
     break;
   }
   source++;
// 从上面的代码可以看到只是把null变成了\0,'变成了''
  }
 } else {
// 执行常规的转义
...
由上面的代码可以看到,如果magic_quotes_sybase为on就会覆盖magic_quotes_gpc为on时的默认处理效果[而magic_quotes_sybase仅仅是转义了nullbyte和把'变成了'' :)]


然后我们看看关于magic_quotes_sybase定义的部分:
// main.c
 STD_PHP_INI_BOOLEAN("magic_quotes_sybase", "0",  PHP_INI_ALL,  OnUpdateBool,   magic_quotes_sybase, php_core_globals, core_globals)

可以看到,magic_quotes_sybase在php.ini里默认是关闭的,但是属于PHP_INI_ALL类型的指令,那么就可以在.htaccess或者httpd.conf里来更改magic_quotes_sybase的设置了. 如:
// .htaccess
php_flag magic_quotes_sybase on

三 测试代码

   缺

四 实际应用
 
   缺


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·XSOK环境变量本地命令执行漏洞
·N点虚拟主机管理系统 致命漏洞。
·南方数据企业网站管理系统V10.0
·动网(DVBBS)Version 8.2.0 后
·Solaris 10 telnet漏洞及解决
·破解无线路由器密码,常见无线密
·Nginx %00空字节执行php漏洞
·WinWebMail、7I24提权漏洞
·XPCD xpcd-svga本地缓冲区溢出漏
·Struts2多个漏洞简要分析
·ecshop2.72 api.php 文件鸡肋注
·Discuz!后台拿Webshell 0day
  相关文章
·当magic_quotes_gpc=off
·New Includes Function -- spl_a
·ZIP 文件溢出漏洞
·Discuz! 6.x/7.x 全局变量防御绕
·[CAL-20100204-3]Adobe Shockwav
·[CAL-20100204-2]Adobe Shockwav
·[CAL-20100204-1]Adobe Shockwav
·nginx文件类型错误解析漏洞
·IIS源码泄露及文件类型解析错误
·DEDECMS v5.5 GBK Final 的一个
·Php168一个即将被补的代码执行?
·php168 获取管理员0day
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved