mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
🔒 ♻️ Implement secure exec
wrapper functions.
This commit is contained in:
parent
6e13036780
commit
8e951ac72e
115 changed files with 1345 additions and 1986 deletions
|
@ -8,7 +8,7 @@ include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|||
// Check token
|
||||
if ((!isset($_GET['token'])) || ($_SESSION['token'] != $_GET['token'])) {
|
||||
header('location: /login/');
|
||||
exit();
|
||||
exit;
|
||||
}
|
||||
|
||||
// Check user
|
||||
|
@ -18,15 +18,13 @@ if ($_SESSION['user'] != 'admin') {
|
|||
}
|
||||
|
||||
if (!empty($_GET['rule'])) {
|
||||
$v_rule = escapeshellarg($_GET['rule']);
|
||||
exec (VESTA_CMD."v-unsuspend-firewall-rule ".$v_rule, $output, $return_var);
|
||||
$v_rule = $_GET['rule'];
|
||||
v_exec('v-unsuspend-firewall-rule', [$v_rule]);
|
||||
}
|
||||
check_return_code($return_var,$output);
|
||||
unset($output);
|
||||
|
||||
$back=getenv("HTTP_REFERER");
|
||||
$back = getenv('HTTP_REFERER');
|
||||
if (!empty($back)) {
|
||||
header("Location: ".$back);
|
||||
header("Location: $back");
|
||||
exit;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue