- панель работает на 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 - документация на русском: ИЗМЕНЕНИЯ, БЕЗОПАСНОСТЬ, ИНСТРУКЦИЯ
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
/*
|
|
Copyright (c) 2020 HOSTINPL (HOSTING-RUS) https://vk.com/hosting_rus
|
|
Developed by Samir Shelenko (https://vk.com/id00v)
|
|
*/
|
|
class indexController extends Controller {
|
|
private $limit = 5;
|
|
public function index($page = 1) {
|
|
$this->document->setActiveSection('news');
|
|
$this->document->setActiveItem('index');
|
|
$this->data['vk_id'] = $this->config->vk_id;
|
|
$this->data['url'] = $this->config->url;
|
|
if(!$this->user->isLogged()) {
|
|
$this->response->redirect($this->config->url . 'account/login');
|
|
}
|
|
if($this->user->getAccessLevel() < 0) {
|
|
$this->session->data['error'] = "У вас нет доступа к данному разделу!";
|
|
$this->response->redirect($this->config->url);
|
|
}
|
|
|
|
$this->load->library('pagination');
|
|
$this->load->model('news');
|
|
$userid = $this->user->getId();
|
|
|
|
$sort = array(
|
|
//'ticket_status' => 'DESC',
|
|
'news_date_add' => 'DESC'
|
|
);
|
|
|
|
$options = array(
|
|
'start' => ($page - 1) * $this->limit,
|
|
'limit' => $this->limit
|
|
);
|
|
|
|
$total = $this->newsModel->getTotalNews();
|
|
$news = $this->newsModel->getNews(array(), array(), $sort, $options);
|
|
|
|
$paginationLib = new paginationLibrary();
|
|
|
|
$paginationLib->total = $total;
|
|
$paginationLib->page = $page;
|
|
$paginationLib->limit = $this->limit;
|
|
$paginationLib->url = $this->config->url . 'news/index/index/{page}';
|
|
|
|
$pagination = $paginationLib->render();
|
|
$this->data['news'] = $news;
|
|
$this->data['pagination'] = $pagination;
|
|
|
|
$this->getChild(array('common/header', 'common/footer'));
|
|
return $this->load->view('news/index', $this->data);
|
|
}
|
|
}
|
|
?>
|