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 /
opis /
closure /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxr-xr-x
CHANGELOG.md
8.38
KB
-rwxr-xr-x
LICENSE
1.06
KB
-rwxr-xr-x
NOTICE
306
B
-rwxr-xr-x
README.md
3.75
KB
-rwxr-xr-x
autoload.php
1012
B
-rwxr-xr-x
composer.json
1.15
KB
-rwxr-xr-x
functions.php
971
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; /** * Serialize * * @param mixed $data * @return string */ function serialize($data) { SerializableClosure::enterContext(); SerializableClosure::wrapClosures($data); $data = \serialize($data); SerializableClosure::exitContext(); return $data; } /** * Unserialize * * @param string $data * @param array|null $options * @return mixed */ function unserialize($data, array $options = null) { SerializableClosure::enterContext(); $data = ($options === null || \PHP_MAJOR_VERSION < 7) ? \unserialize($data) : \unserialize($data, $options); SerializableClosure::unwrapClosures($data); SerializableClosure::exitContext(); return $data; }
Close