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 /
gandhi-school.bak /
app /
Rules /
[ HOME SHELL ]
Name
Size
Permission
Action
UniqueExecutiveCommitteeRule.p...
1.24
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UniqueExecutiveCommitteeRule.php
<?php namespace App\Rules; use Illuminate\Contracts\Validation\Rule; use App\Models\Commitee; class UniqueExecutiveCommitteeRule implements Rule { /** * Create a new rule instance. * * @return void */ protected $members_id; protected $ec_terms_id; protected $committee_types_id; public function __construct($data) { $this->members_id = $data['members_id']; $this->ec_terms_id = $data['ec_terms_id']; $this->committee_types_id = $data['committee_types_id']; } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute,$value) { // return $value; $validation = Commitee::where('members_id',$this->members_id)->where('ec_terms_id',$this->ec_terms_id)->where('committee_types_id',$this->committee_types_id)->where('status','active')->get(); if(count($validation) > 0){ return false; }else{ return true; } } /** * Get the validation error message. * * @return string */ public function message() { return 'The Committee Member Already Exists'; } }
Close