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 /
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 : LoggedUserDTO.php
<?php namespace App\Modules\Auth\DTO; use Spatie\DataTransferObject\DataTransferObject; class LoggedUserDTO extends DataTransferObject { public int $id; public string $user_uuid; public string $email; public ?string $first_name = ''; public ?string $middle_name = ''; public ?string $last_name = ''; public ?string $full_name = ''; public ?int $phone = null; public ?int $account_user_id = null; public ?string $account_user_uuid = null; public int $account_id; public string $account_uuid; public string $subscription_expire; /** * Transform the resource into an array. * * @param User{} $params * @return array */ public static function toJsonResponse($params) { // printR($params,true); return new self([ 'id' => $params->id, 'user_uuid' => $params->uuid, 'email' => $params->email, 'phone' => $params->phone, 'account_user_id' => $params->account_user->id, 'account_user_uuid' => $params->account_user->uuid, 'account_id' => $params->account_user->account_id, 'account_uuid' => $params->account_user->account->uuid, 'first_name' => $params->account_user->first_name, 'middle_name' => $params->account_user->middle_name, 'last_name' => $params->account_user->last_name, 'full_name' => $params->account_user->full_name, 'subscription_expire' => !empty($params->account_user->account->subscription) ? $params->account_user->account->subscription->end_date_ad : '', // 'account_ids' => $params->account_ids->toArray(), ]); } }
Close