Сборка REDL: панель на PHP 8, капча-тумблер, закрытые уязвимости, установщики в один клик

- панель работает на 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
- документация на русском: ИЗМЕНЕНИЯ, БЕЗОПАСНОСТЬ, ИНСТРУКЦИЯ
This commit is contained in:
2026-07-30 02:00:01 +00:00
commit 6ee2744e3a
492 changed files with 354172 additions and 0 deletions
@@ -0,0 +1,119 @@
<?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 settingsController extends Controller {
public function index() {
$this->document->setActiveSection('admin/settings');
$this->document->setActiveItem('index');
if(!$this->user->isLogged()) {
$this->session->data['error'] = "Вы не авторизированы!";
$this->response->redirect($this->config->url . 'account/login');
}
if($this->user->getAccessLevel() < 3) {
$this->session->data['error'] = "У вас нет доступа к данному разделу!";
$this->response->redirect($this->config->url);
}
$userid = $this->user->getId();
$this->load->model('users');
require(APPLICATION_DIR . 'config.php');
$this->data['settings'] = $config;
unset($config);
$this->getChild(array('common/admheader', 'common/footer'));
return $this->load->view('admin/settings', $this->data);
}
public function ajax() {
if(!$this->user->isLogged()) {
$this->data['status'] = "error";
$this->data['error'] = "Вы не авторизированы!";
return json_encode($this->data);
}
if($this->user->getAccessLevel() < 3) {
$this->data['status'] = "error";
$this->data['error'] = "У вас нет доступа к данному разделу!";
return json_encode($this->data);
}
$userid = $this->user->getId();
$this->load->model('users');
if($this->request->server['REQUEST_METHOD'] == 'POST') {
$file = file_get_contents(APPLICATION_DIR . 'config.php');
$file = str_replace(",", "", $file);
$file = str_replace("<?php", "", $file);
$file = str_replace('$config = array(', "", $file);
$file = str_replace(');', "", $file);
$file = str_replace('?>', "", $file);
$file = explode("\n",$file);
$file2 = array();
foreach($file as $line){
if($line !== ''){
$file2[] = $line;
}
}
unset($line);
$file = $file2;
unset($file2);
$post = array();
foreach($this->request->post as $post_string => $post_value){
$post[$post_string] = $post_value;
if($post_string !== 'close'){
$post['close'] = 'off';
}
}
foreach($post as $string => $value) {
for ($i = 0; $i < count($file); $i++) {
if (strpos($file[$i], $string) !== FALSE) {
$search_line = $file[$i];
$file[$i] = "'".$string."' => '".$value."'";
break;
}
}
if($search_line == null) {
$file[] = "'".$string."' => '".$value."'";
}
unset($search_line);
}
foreach($file as $line => $line2){
if($line < count($file)-1 and $file[$line] != "\n"){
$file[$line] = $line2.',';
}
}
$file = implode("\n", $file);
$file = preg_replace('/([\r\n]){2,}/s', '\1', $file);
$file2 = '<?php';
$file2 .= "\n".'$config = array(';
$file2 .= "\n".$file;
$file2 .= "\n".');';
$file2 .= "\n".'?>';
file_put_contents(APPLICATION_DIR.'config.php', $file2);
$this->data['status'] = "success";
$this->data['success'] = "Настройки сохранены!";
}
return json_encode($this->data);
}
}
?>