mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 18:49:17 -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
|
@ -9,7 +9,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
|
||||
|
@ -19,19 +19,18 @@ if ($_SESSION['user'] != 'admin') {
|
|||
}
|
||||
|
||||
if (!empty($_GET['user'])) {
|
||||
$user=$_GET['user'];
|
||||
}
|
||||
if (!empty($_GET['database'])) {
|
||||
$v_username = escapeshellarg($user);
|
||||
$v_database = escapeshellarg($_GET['database']);
|
||||
exec (VESTA_CMD."v-unsuspend-database ".$v_username." ".$v_database, $output, $return_var);
|
||||
check_return_code($return_var,$output);
|
||||
unset($output);
|
||||
$user = $_GET['user'];
|
||||
}
|
||||
|
||||
$back=getenv("HTTP_REFERER");
|
||||
if (!empty($_GET['database'])) {
|
||||
$v_username = $user;
|
||||
$v_database = $_GET['database'];
|
||||
v_exec('v-unsuspend-database', [$v_username, $v_database]);
|
||||
}
|
||||
|
||||
$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