Codebase list phpggc / a334346 lib / PHPGGC / GadgetChain / RCE / Command.php
a334346

Tree @a334346 (Download .tar.gz)

Command.php @a334346raw · 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'
    ];
}