Files
VestaCP/web/delete/firewall/index.php

37 lines
719 B
PHP
Raw Normal View History

2014-09-17 00:35:24 +03:00
<?php
// Init
error_reporting(NULL);
ob_start();
session_start();
// Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
// Check user
if ($_SESSION['user'] != 'admin') {
header("Location: /list/user");
exit;
}
2015-06-03 02:31:03 +03:00
// Check token
if ((!isset($_GET['token'])) || ($_SESSION['token'] != $_GET['token'])) {
header('location: /login/');
exit();
2015-06-03 02:31:03 +03:00
}
2014-09-17 00:35:24 +03:00
if (!empty($_GET['rule'])) {
$v_rule = escapeshellarg($_GET['rule']);
exec (VESTA_CMD."v-delete-firewall-rule ".$v_rule, $output, $return_var);
2014-09-17 00:35:24 +03:00
}
check_return_code($return_var,$output);
unset($output);
2014-09-17 00:35:24 +03:00
$back = $_SESSION['back'];
if (!empty($back)) {
header("Location: ".$back);
2014-09-17 00:35:24 +03:00
exit;
}
header("Location: /list/firewall/");
exit;