shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Tags
/
Taxonomy
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Taxonomy.php
<?php namespace Statamic\Tags\Taxonomy; use Statamic\Tags\Concerns; use Statamic\Tags\Tags; class Taxonomy extends Tags { use Concerns\OutputsItems; protected $defaultAsKey = 'terms'; /** * {{ taxonomy:* }} ... {{ /taxonomy:* }}. */ public function wildcard($tag) { $this->params['from'] = $tag; return $this->index(); } /** * {{ taxonomy from="" }} ... {{ /taxonomy }}. */ public function index() { $terms = $this->terms()->get(); return $this->output($terms); } /** * {{ taxonomy:count from="" }} */ public function count() { return $this->terms()->count(); } protected function terms() { return new Terms($this->params); } }
© 2026 UnknownSec