Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
htdocs /
edgpens /
vendor /
psr /
log /
Psr /
Log /
[ HOME SHELL ]
Name
Size
Permission
Action
Test
[ DIR ]
drwxrwxrwx
AbstractLogger.php
3.03
KB
-rw-rw-rw-
InvalidArgumentException.php
96
B
-rw-rw-rw-
LogLevel.php
336
B
-rw-rw-rw-
LoggerAwareInterface.php
297
B
-rw-rw-rw-
LoggerAwareTrait.php
402
B
-rw-rw-rw-
LoggerInterface.php
3.04
KB
-rw-rw-rw-
LoggerTrait.php
3.33
KB
-rw-rw-rw-
NullLogger.php
707
B
-rw-rw-rw-
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 $message * @param array $context * * @return void * * @throws \Psr\Log\InvalidArgumentException */ public function log($level, $message, array $context = array()) { // noop } }
Close