shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
mpc.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Tags
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Yields.php
<?php namespace Statamic\Tags; use Statamic\Facades\Cascade; class Yields extends Tags { protected static $aliases = ['yield']; public function wildcard($method) { $name = explode(':', $this->tag)[1]; if ($yield = $this->getYieldedValue($name)) { return $yield; } if ($fallback = $this->params->get('or')) { return $fallback; } return $this->isPair ? $this->parse() : null; } private function getYieldedValue($name) { // First try to get it from the Illuminate view factory, which may have a section // in there if it was added via a Blade template using the `@section` directive. if ($value = view()->shared('__env')->yieldContent($name)) { return $value; } // Then try to get it from the cascade, which the `section` tag // stores its contents in when used in an Antlers template. if ($value = Cascade::instance()->sections()->get($name)) { return $value; } } }
© 2026 UnknownSec