Codebase list phpggc / 4b920f57-28c2-4330-9409-d5dd1e4740dd/main lib / PHPGGC / GadgetChain / SSRF.php
4b920f57-28c2-4330-9409-d5dd1e4740dd/main

Tree @4b920f57-28c2-4330-9409-d5dd1e4740dd/main (Download .tar.gz)

SSRF.php @4b920f57-28c2-4330-9409-d5dd1e4740dd/mainraw · 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;
    }
}
?>