Codebase list phpggc / 9a88393 lib / PHPGGC / GadgetChain / SSRF.php
9a88393

Tree @9a88393 (Download .tar.gz)

SSRF.php @9a88393raw · history · blame

<?php
namespace PHPGGC\GadgetChain;

abstract class SSRF extends \PHPGGC\GadgetChain
{
    public static $type = self::TYPE_SSRF;
    public static $parameters = [
        'uri'
    ];
}
?>