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.2
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 /
sms-auth /
app /
Modules /
Auth /
DTO /
[ HOME SHELL ]
Name
Size
Permission
Action
AccountDTO.php
1.07
KB
-rw-rw-r--
AccountUserDTO.php
2.46
KB
-rw-rw-r--
GetAccountDTO.php
559
B
-rw-rw-r--
LoggedUserDTO.php
1.69
KB
-rw-rw-r--
LoginDTO.php
862
B
-rw-rw-r--
SelectAccountDTO.php
1.3
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AccountUserDTO.php
<?php namespace App\Modules\Auth\DTO; use Spatie\DataTransferObject\DataTransferObject; class AccountUserDTO extends DataTransferObject { public int $id; public ?string $uuid = null; public int $user_id; public int $account_id; public ?int $salutation_id = null; public ?string $first_name = ""; public ?string $middle_name = ""; public ?string $last_name = ""; public ?string $full_name = ""; public ?string $dob_ad = null; public ?string $dob_bs = null; public ?int $marital_status_id = null; public ?int $gender_id = null; public ?string $address_line1 = null; public ?string $address_line2 = null; public ?string $city = null; public ?string $state = null; public ?string $country = null; public ?string $zip = null; public ?string $photo = null; public ?string $phone1 = null; public ?string $phone1_label = null; public ?string $phone2 = null; public ?string $phone2_label = null; public int $is_active; /** * Transform the resource into an array. * * @param account_user{} $params * @return array */ public static function toJsonResponse($params) { return new self([ 'id' => $params->id, 'uuid' => $params->uuid, 'user_id' => $params->user_id, 'account_id' => $params->account_id, 'salutation_id' => $params->salutation_id, 'first_name' => $params->first_name, 'middle_name' => $params->middle_name, 'last_name' => $params->last_name, 'full_name' => $params->full_name, 'dob_ad' => $params->dob_ad, 'dob_bs' => $params->dob_bs, 'marital_status_id' => $params->marital_status_id, 'gender_id' => $params->gender_id, 'address_line1' => $params->address_line1, 'address_line2' => $params->address_line2, 'city' => $params->city, 'state' => $params->state, 'country' => $params->country, 'zip' => $params->zip, 'photo' => $params->photo, 'phone1' => $params->phone1, 'phone1_label' => $params->phone1_label, 'phone2' => $params->phone2, 'phone2_label' => $params->phone2_label, 'is_active' => $params->is_active, // 'created_at' => $params->created_at, // 'updated_at' => $params->updated_at, ]); } }
Close