| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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;
- }
- $setname = $_POST['setname'];
- $action = $_POST['action'];
- switch ($action) {
- case 'delete': $cmd='v-delete-firewall-ipset';
- break;
- default: header("Location: /list/firewall/ipset/"); exit;
- }
- foreach ($setname as $value) {
- $v_name = escapeshellarg($value);
- exec (HESTIA_CMD.$cmd." ".$v_name, $output, $return_var);
- }
- header("Location: /list/firewall/ipset/");
|