shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Jobs
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
RunComposer.php
<?php namespace Statamic\Jobs; use Facades\Statamic\Console\Processes\Composer; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; class RunComposer implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable; /** * Command params. * * @var string|array */ public $params; /** * Cache key. * * @var string */ public $cacheKey; /** * Create a new job instance. * * @param string|array $params * @return void */ public function __construct($params, string $cacheKey) { $this->params = $params; $this->cacheKey = $cacheKey; } /** * Execute the job. * * @return void */ public function handle() { Composer::run($this->params, $this->cacheKey); } }
© 2026 UnknownSec