Codebase list phpggc / 9a88393 lib / PHPGGC / GadgetChain / RCE / Command.php
9a88393

Tree @9a88393 (Download .tar.gz)

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