- панель работает на PHP 8.4 (оригинал под PHP 7.0): elFinder utf8_encode, apache_get_modules, warnings - капча выключена и управляется из админки (флаг captcha_enable + блок настроек) - закрыты две SQL-инъекции без авторизации (createAuthLog: пароль из POST и CF-Connecting-IP) - убрано хранение паролей в открытом виде в authlog, XSS в поле ref - установщики install-panel.sh и install-node.sh (оригинальный затирал sources.list репозиториями Debian 9) - современный Dockerfile (оригинальный на debian:stretch больше не собирается) - планировщик и автозапуск работают без systemd - брендинг REDL.IO, год 2026, ссылки на redl.io - документация на русском: ИЗМЕНЕНИЯ, БЕЗОПАСНОСТЬ, ИНСТРУКЦИЯ
65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
/*
|
|
Copyright (c) 2020 HOSTINPL (HOSTING-RUS) https://vk.com/hosting_rus
|
|
Developed by Samir Shelenko and Alexander Zemlyanoy (https://vk.com/id00v / https://vk.com/mrsasha082)
|
|
*/
|
|
class Load {
|
|
private $registry;
|
|
|
|
public function __construct($registry) {
|
|
$this->registry = $registry;
|
|
}
|
|
|
|
public function view($name, $vars = array()){
|
|
$file = APPLICATION_DIR . 'views/' . $name . '.php';
|
|
if(is_readable($file)){
|
|
extract($vars);
|
|
|
|
ob_start();
|
|
include($file);
|
|
$content = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
return $content;
|
|
}
|
|
$error = 'Ошибка: Не удалось загрузить шаблон ' . $name . '!';
|
|
require_once("application/views/main/error.php");
|
|
exit();
|
|
}
|
|
|
|
public function model($name){
|
|
$modelClass = $name . 'Model';
|
|
$modelPath = APPLICATION_DIR . 'models/' . $name . '.php';
|
|
|
|
if(is_readable($modelPath)){
|
|
require_once($modelPath);
|
|
if(class_exists($modelClass)){
|
|
$this->registry->$modelClass = new $modelClass($this->registry);
|
|
return true;
|
|
}
|
|
}
|
|
$error = 'Ошибка: Не удалось загрузить модель ' . $name . '!';
|
|
require_once("application/views/main/error.php");
|
|
exit();
|
|
}
|
|
|
|
public function library($name){
|
|
$libClass = $name . 'Library';
|
|
$libPath = ENGINE_DIR . 'libs/' . $name . '.php';
|
|
|
|
if(is_readable($libPath)){
|
|
require_once($libPath);
|
|
return true;
|
|
}
|
|
$error = 'Ошибка: Не удалось загрузить библиотеку ' . $name . '!';
|
|
require_once("application/views/main/error.php");
|
|
exit();
|
|
}
|
|
|
|
public function genpass($length) {
|
|
return substr(md5(microtime() . rand(0, 9999)), 0, $length);
|
|
}
|
|
|
|
}
|
|
?>
|