shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolas.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Auth
/
Eloquent
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Role.php
<?php namespace Statamic\Auth\Eloquent; use Statamic\Auth\File\Role as FileRole; class Role extends FileRole { protected $model; public static function fromModel(RoleModel $model) { return (new static) ->title($model->title) ->handle($model->handle) ->permissions($model->permissions ?? []) ->preferences($model->preferences ?? []) ->model($model); } public function toModel() { return RoleModel::findOrNew($this->model ? $this->model->id : null) ->fill([ 'title' => $this->title, 'handle' => $this->handle, 'permissions' => $this->permissions, 'preferences' => $this->preferences, ]); } public function model($model = null) { if (func_num_args() === 0) { return $this->model; } $this->model = $model; $this->handle($model->handle); return $this; } }
© 2026 UnknownSec