Сборка 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:
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright (c) 2020 HOSTINPL (HOSTING-RUS) https://vk.com/hosting_rus
|
||||
Developed by Samir Shelenko (https://vk.com/id00v)
|
||||
*/
|
||||
class successController extends Controller {
|
||||
public function index() {
|
||||
$this->document->setActiveSection('account');
|
||||
$this->document->setActiveItem('pay');
|
||||
|
||||
if(!$this->user->isLogged()) {
|
||||
$this->session->data['error'] = "Вы не авторизированы!";
|
||||
$this->response->redirect($this->config->url . 'account/login');
|
||||
}
|
||||
if($this->user->getAccessLevel() < 0) {
|
||||
$this->session->data['error'] = "У вас нет доступа к данному разделу!";
|
||||
$this->response->redirect($this->config->url);
|
||||
}
|
||||
|
||||
|
||||
if($this->config->interkassa == 1) {
|
||||
$this->load->model('users');
|
||||
$this->load->model('invoices');
|
||||
$this->load->model('waste');
|
||||
|
||||
$secret_key = $this->config->ik_secretkey;
|
||||
$ik_shop_id = $this->config->ik_shopid;
|
||||
|
||||
$err[1] = 'Ошибка - Неверная сумма платежа!';
|
||||
$err[2] = 'Ошибка - Shop ID!';
|
||||
$err[3] = 'Ошибка - Не верный ID платежа!';
|
||||
$err[3] = 'Ошибка - Данный счет уже оплачен!';
|
||||
|
||||
//Получение информации о платеже от системы Interkassa
|
||||
$post_shop_id = trim(stripslashes($_POST['ik_co_id'])); //Номер сайта продавца (eshopId);
|
||||
$ik_payment_amount = trim(stripslashes($_POST['ik_payment_amount'])); //Сумма платежа (recipientAmount);
|
||||
$ik_payment_id = trim(stripslashes($_POST['ik_payment_id'])); //Идентификатор платежа
|
||||
$ik_pm_no = trim(stripslashes($_POST['ik_pm_no'])); //id
|
||||
$ik_am = trim(stripslashes($_POST['ik_am'])); //im
|
||||
$ik_paysystem_alias = trim(stripslashes($_POST['ik_paysystem_alias'])); //Способ оплаты
|
||||
$ik_baggage_fields = trim(stripslashes($_POST['ik_baggage_fields'])); //пользовательское поле
|
||||
$ik_payment_state = trim(stripslashes($_POST['ik_payment_state'])); //Статус платежа (paymentStatus);
|
||||
$ik_trans_id = trim(stripslashes($_POST['ik_trans_id'])); //внутренний номер платежа
|
||||
$ik_currency_exch = trim(stripslashes($_POST['ik_currency_exch'])); //Валюта платежа (recipientCurrency);
|
||||
$ik_fees_payer = trim(stripslashes($_POST['ik_fees_payer'])); //плательщик комиссии
|
||||
|
||||
$sing_hash_str = $ik_shop_id.':'.
|
||||
$ik_payment_amount.':'.
|
||||
$ik_payment_id.':'.
|
||||
$ik_paysystem_alias.':'.
|
||||
$ik_baggage_fields.':'.
|
||||
$ik_payment_state.':'.
|
||||
$ik_trans_id.':'.
|
||||
$ik_currency_exch.':'.
|
||||
$ik_fees_payer.':'.$secret_key;
|
||||
|
||||
|
||||
$userid = $this->user->getId();
|
||||
$invoice = $this->invoicesModel->getInvoiceById($ik_pm_no);
|
||||
|
||||
if($invoice['invoice_ammount'] == $ik_am) {
|
||||
if($post_shop_id == $ik_shop_id) {
|
||||
if($invoice['invoice_id'] == $ik_pm_no){
|
||||
if($invoice['invoice_status'] == 0) {
|
||||
$this->usersModel->upUserBalance($userid, $ik_am);
|
||||
$this->invoicesModel->updateInvoice($ik_pm_no, array('invoice_status' => 1));
|
||||
|
||||
$userid = $invoice['user_id'];
|
||||
$user = $this->usersModel->getUserById($userid);
|
||||
|
||||
if($ammount > 50){
|
||||
$this->usersModel->updateUser($userid, $userData = array('user_promised_pay' => 0));
|
||||
}
|
||||
|
||||
$wasteData = array(
|
||||
'user_id' => $userid,
|
||||
'waste_ammount' => $ammount,
|
||||
'waste_status' => 0,
|
||||
'waste_usluga' => "Пополнение баланса пользователя",
|
||||
);
|
||||
$this->wasteModel->createWaste($wasteData);
|
||||
|
||||
$this->usersModel->upUserBalance($userid, $ammount);
|
||||
|
||||
$bonus_percent = $this->config->bonus_percent;
|
||||
$getbonus = ($ammount * (1 + $bonus_percent / 100)) - $ammount;
|
||||
$this->usersModel->upUserBonuses($userid, $getbonus);
|
||||
} else {
|
||||
$this->response->redirect($this->config->url . 'account/error');
|
||||
$this->data['status'] = "error";
|
||||
$this->data['error'] = $err[4];
|
||||
}
|
||||
} else {
|
||||
$this->response->redirect($this->config->url . 'account/error');
|
||||
$this->data['status'] = "error";
|
||||
$this->data['error'] = $err[3];
|
||||
}
|
||||
} else {
|
||||
$this->response->redirect($this->config->url . 'account/error');
|
||||
$this->data['status'] = "error";
|
||||
$this->data['error'] = $err[2];
|
||||
}
|
||||
} else {
|
||||
$this->response->redirect($this->config->url . 'account/error');
|
||||
$this->data['status'] = "error";
|
||||
$this->data['error'] = $err[1];
|
||||
}
|
||||
}
|
||||
$this->getChild(array('common/header', 'common/footer'));
|
||||
return $this->load->view('account/success', $this->data);
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user