blog
2016-02-04
1 阅读
ecshop注入漏洞
| 补丁编号 | 69 | 漏洞名 | ecshop注入漏洞 |
|---|---|---|---|
| 补丁文件 | l下载:lib_api.php |
漏洞描述ECShop存在一个盲注漏洞,问题存在于/api/client/api.php文件中,提交特制的恶意POST请求可进行SQL注入攻击,可获得敏感信息或操作数据库 |
|
| 来源 | 云盾自研 | ||
| 更新时间 | 2015-05-23 15:56:04 | ||
if (get_magic_quotes_gpc()) {
$post['UserId'] = $post['UserId'];
} else {
$post['UserId'] = addslashes($post['UserId']);
}
如图: