Codebase list phpggc / c2e9b0b lib / PHPGGC / GadgetChain / SSRF.php
c2e9b0b

Tree @c2e9b0b (Download .tar.gz)

SSRF.php @c2e9b0braw · history · blame

<?php
namespace PHPGGC\GadgetChain;

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

    public function test_setup()
    {
        throw new \PHPGGC\Exception("SSRF payloads cannot be tested.");
    }

    public function test_confirm($arguments, $output)
    {
        return false;
    }
}
?>