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 /
gandhi-school /
vendor /
psr /
log /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractLogger.php
414
B
-rwxr-xr-x
InvalidArgumentException.php
96
B
-rwxr-xr-x
LogLevel.php
336
B
-rwxr-xr-x
LoggerAwareInterface.php
297
B
-rwxr-xr-x
LoggerAwareTrait.php
426
B
-rwxr-xr-x
LoggerInterface.php
3.26
KB
-rwxr-xr-x
LoggerTrait.php
3.56
KB
-rwxr-xr-x
NullLogger.php
732
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : NullLogger.php
<?php namespace Psr\Log; /** * This Logger can be used to avoid conditional log calls. * * Logging should always be optional, and if no logger is provided to your * library creating a NullLogger instance to have something to throw logs at * is a good way to avoid littering your code with `if ($this->logger) { }` * blocks. */ class NullLogger extends AbstractLogger { /** * Logs with an arbitrary level. * * @param mixed $level * @param string|\Stringable $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, string|\Stringable $message, array $context = []) { // noop } }
Close