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

Tree @9a88393 (Download .tar.gz)

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