shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Git
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
CommitCommand.php
<?php namespace Statamic\Git; use Illuminate\Console\Command; use Statamic\Console\RunsInPlease; use Statamic\Facades\Git; class CommitCommand extends Command { use RunsInPlease; /** * The name and signature of the console command. * * @var string */ protected $signature = 'statamic:git:commit'; /** * The console command description. * * @var string */ protected $description = 'Git add and commit tracked content'; /** * Execute the console command. * * @return mixed */ public function handle() { if (! config('statamic.git.enabled')) { return $this->info(__('statamic::messages.git_disabled')); } if (! Git::statuses()) { return $this->info(__('statamic::messages.git_nothing_to_commit')); } Git::commit(); return $this->info(__('Content committed')); } }
© 2026 UnknownSec