mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-23 11:22:53 -08:00
39 lines
866 B
PHP
39 lines
866 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
|
|
// Main include
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Check token
|
|
if ((!isset($_POST['token'])) || ($_SESSION['token'] != $_POST['token'])) {
|
|
header('location: /login/');
|
|
exit();
|
|
}
|
|
|
|
// Check user
|
|
if ($_SESSION['user'] != 'admin') {
|
|
header("Location: /list/user");
|
|
exit;
|
|
}
|
|
|
|
$ipchain = $_POST['ipchain'];
|
|
$action = $_POST['action'];
|
|
|
|
switch ($action) {
|
|
case 'delete': $cmd='v-delete-firewall-ipv6-ban';
|
|
break;
|
|
default: header("Location: /list/firewallv6/banlist/"); exit;
|
|
}
|
|
|
|
foreach ($ipchain as $value) {
|
|
list($ipv6,$chain) = explode("|",$value);
|
|
$v_ipv6 = escapeshellarg($ipv6);
|
|
$v_chain = escapeshellarg($chain);
|
|
exec (VESTA_CMD.$cmd." ".$v_ipv6." ".$v_chain, $output, $return_var);
|
|
}
|
|
|
|
header("Location: /list/firewallv6/banlist");
|