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

Tree @9a88393 (Download .tar.gz)

FunctionCall.php @9a88393raw · history · blame

<?php

namespace PHPGGC\GadgetChain\RCE;

/**
 * Class FunctionCall
 * Executes a PHP function with one argument.
 * @package PHPGGC\GadgetChain\RCE
 */
abstract class FunctionCall extends \PHPGGC\GadgetChain\RCE
{
    public static $type = self::TYPE_RCE_FUNCTIONCALL;
    public static $parameters = [
        'function',
        'parameter'
    ];
}