Codebase list phpggc / 0a0732bb-898c-41f1-b464-b9ba025c444d/main lib / PHPGGC / GadgetChain / RCE / PHPCode.php
0a0732bb-898c-41f1-b464-b9ba025c444d/main

Tree @0a0732bb-898c-41f1-b464-b9ba025c444d/main (Download .tar.gz)

PHPCode.php @0a0732bb-898c-41f1-b464-b9ba025c444d/mainraw · history · blame

<?php

namespace PHPGGC\GadgetChain\RCE;

/**
 * Class PHPCode
 * Executes PHP code.
 * @package PHPGGC\GadgetChain\RCE
 */
abstract class PHPCode extends \PHPGGC\GadgetChain\RCE
{
    public static $type = self::TYPE_RCE_PHPCODE;
    public static $parameters = [
        'code'
    ];
    
    public function test_setup()
    {
        # TODO file_put_contents() might be a better option here, but it'll work
        # for now.
        $command = $this->_test_build_command();
        return [
            'code' => 'system(' . var_export($command, true) . ');'
        ];
    }
}