shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolasweb.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
Rules
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
UniqueUserValue.php
<?php namespace Statamic\Rules; use Closure; use Illuminate\Contracts\Validation\ValidationRule; use Statamic\Facades\User; class UniqueUserValue implements ValidationRule { public function __construct( private $except = null, private $column = null, ) { // } public function validate(string $attribute, mixed $value, Closure $fail): void { $this->column ??= $attribute; $existing = User::query() ->when( is_array($value), fn ($query) => $query->whereIn($this->column, $value), fn ($query) => $query->where($this->column, $value) ) ->first(); if (! $existing) { return; } if ($this->except == $existing->id()) { return; } $fail('statamic::validation.unique_user_value')->translate(); } }
© 2026 UnknownSec