来源:自学PHP网 时间:2015-04-15 15:00 作者: 阅读:次
[导读] Srun3000计费系统任意文件下载漏洞[无需登录]版本:版本 Srun3000 [3 00rc14 17 4]使用量还是相当多的,主要为各大高校:(url不列出来了,太暴力,怕自己学校的也被爆。1 任意文件下载漏洞漏...
Srun3000计费系统任意文件下载漏洞[无需登录] 版本:版本 Srun3000 [3.00rc14.17.4]
/** * 下载一个文件 * */ // 此处存在任意文件下载漏洞--fuck public function download(){ global $file; $this->model->download_file($file); }
/** * 下载一个文件 * * @param unknown_type $file */ public function download_file($file) { if (file_exists ( $file )) { $this_base_file = basename ( $file ); header ( "Content-type:application/octet-stream" ); header ( "Accept-Ranges: bytes" ); header ( "Accept-Length: " . filesize ( $file ) ); header ( "Content-Disposition: attachment; filename=\"" . $this_base_file . "\"" ); readfile ( $file ); } }
修复方案: 用户可控的变量太多 |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com