menu arrow_back 湛蓝安全空间 |狂野湛蓝,暴躁每天 chevron_right ... chevron_right 165-YCCMS chevron_right 005-YCCMS 3.4 任意文件上传漏洞(二).md
  • home 首页
  • brightness_4 暗黑模式
  • cloud
    xLIYhHS7e34ez7Ma
    cloud
    湛蓝安全
    code
    Github
    005-YCCMS 3.4 任意文件上传漏洞(二).md
    1.36 KB / 2021-07-17 00:01:28
        # YCCMS 3.4 任意文件上传漏洞(二)
    
    ## 一、漏洞简介
    
    ## 二、漏洞影响
    
    YCCMS 3.4
    
    ## 三、复现过程
    
    ![7.png](images/2020_05_26/3528409397da48c480963335560403c5.png)
    
    在不需要登录的情况下可以看到已经上传成功,上传地址为E:/phpstudy/WWW/yccms/uploads/20200509133351770.php
    定位漏洞位置为controller\CallAction.class.php中的xhUp函数
    
    ```php
    public function xhUp() {
            if (isset($_GET['type'])) {
                $_fileupload = new FileUpload('filedata',10);
                $_err=$_fileupload->checkError();
                $_path = $_fileupload->getPath();
                $_msg="'..$_path'";
                $_img = new Image($_path);
                $_img->xhImg(650,0);
                $_img->out();
                echo "{'err':'".$_err."','msg':".$_msg."}";
                exit();
            } else {
            Tool::alertBack('警告:由于非法操作导致上传失败!');
            }
        }
    
    ```
    
    跟进到类FileUpload, 位于public\class\FileUpload.class.php,然后看到同样也是检查的传入的Content-Type的值
    
    ```php
    private function checkType() {
            if (!in_array($this->type,$this->typeArr)) {
                Tool::alertBack('警告:不合法的上传类型!');
            }
        }
    
    private $typeArr = 
    array('image/jpeg','image/pjpeg','image/png','image/x-png','image/gif');
    
    ```
    
    ## 参考链接
    
    > https://xz.aliyun.com/t/7748#toc-4
    
    
    
    links
    file_download