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 /
lms-api /
app /
Traits /
[ HOME SHELL ]
Name
Size
Permission
Action
backup
[ DIR ]
drwxrwxr-x
CommonTrait.php
9.7
KB
-rw-rw-r--
FileUploadTrait.php
28.11
KB
-rw-rw-r--
HelperTrait.php
953
B
-rw-rw-r--
ImageUploadTrait.php
23.37
KB
-rw-rw-r--
MailSettingTrait.php
3.24
KB
-rw-rw-r--
RepoTrait.php
692
B
-rw-rw-r--
SecurityTrait.php
827
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HelperTrait.php
<?php namespace App\Traits; use Illuminate\Pagination\LengthAwarePaginator; use niklasravnsborg\LaravelPdf\Facades\Pdf; use Illuminate\Support\Carbon; use Webpatser\Uuid\Uuid; trait HelperTrait { public function getFileSizeReadableString($sizeInBytes) { if ($sizeInBytes >= 1073741824) { $bytes = number_format($sizeInBytes / 1073741824, 2) . ' GB'; } elseif ($sizeInBytes >= 1048576) { $bytes = number_format($sizeInBytes / 1048576, 1) . ' MB'; } elseif ($sizeInBytes >= 1024) { $bytes = number_format($sizeInBytes / 1024) . ' KB'; } elseif ($sizeInBytes > 1) { $bytes = $sizeInBytes . ' bytes'; } elseif ($sizeInBytes == 1) { $bytes = $sizeInBytes . ' byte'; } else { $bytes = '0 bytes'; } return $bytes; } }
Close