| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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;
- }
- // Check token
- if ((!isset($_GET['token'])) || ($_SESSION['token'] != $_GET['token'])) {
- header('location: /login/');
- exit();
- }
- if ((!empty($_GET['ip'])) && (!empty($_GET['chain']))) {
- $v_ip = escapeshellarg($_GET['ip']);
- $v_chain = escapeshellarg($_GET['chain']);
- exec (VESTA_CMD."v-delete-firewall-ban ".$v_ip." ".$v_chain, $output, $return_var);
- }
- check_return_code($return_var,$output);
- unset($output);
- $back = $_SESSION['back'];
- if (!empty($back)) {
- header("Location: ".$back);
- exit;
- }
- header("Location: /list/firewall/banlist/");
- exit;
|