Codebase list phpggc / e3cb5b42-5b41-430d-8acc-32699f821d2e/main lib / PHPGGC / GadgetChain / RCE / Command.php
e3cb5b42-5b41-430d-8acc-32699f821d2e/main

Tree @e3cb5b42-5b41-430d-8acc-32699f821d2e/main (Download .tar.gz)

Command.php @e3cb5b42-5b41-430d-8acc-32699f821d2e/mainraw · history · blame

<?php

namespace PHPGGC\GadgetChain\RCE;

/**
 * Class Command
 * Executes a command (bash/batch).
 * @package PHPGGC\GadgetChain\RCE
 */
abstract class Command extends \PHPGGC\GadgetChain\RCE
{
    public static $type = self::TYPE_RCE_COMMAND;
    public static $parameters = [
        'command'
    ];
    
    public function test_setup()
    {
        $command = $this->_test_build_command();
        return [
            'command' => $command
        ];
    }
}