shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
View
/
Blade
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
AntlersBladePrecompiler.php
<?php namespace Statamic\View\Blade; use Illuminate\Support\Str; class AntlersBladePrecompiler { public static function compile(string $content): string { if (! Str::contains($content, ['@antlers', '@endantlers'])) { return $content; } $pattern = '/@antlers(.*?)@endantlers/s'; preg_match_all($pattern, $content, $matches); if (! $matches || count($matches) != 2) { return $content; } for ($i = 0; $i < count($matches[0]); $i++) { $original = $matches[0][$i]; $innerContent = $matches[1][$i]; $contentHash = sha1($innerContent); $fileName = 'antlers_'.$contentHash; file_put_contents(storage_path('framework/views/'.$fileName.'.antlers.html'), $innerContent); $content = str_replace($original, '@include(\'compiled__views::'.$fileName.'\')', $content); } return $content; } }
© 2026 UnknownSec