| 1234567891011121314151617181920212223242526272829 |
- <?php
- use function Hestiacp\quoteshellarg\quoteshellarg;
- ob_start();
- include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
- // Check token
- verify_csrf($_GET);
- if ($_SESSION["userContext"] === "admin" && !empty($_GET["user"])) {
- $user = quoteshellarg($_GET["user"]);
- }
- if (!empty($_GET["key"])) {
- $v_key = quoteshellarg(trim($_GET["key"]));
- exec(HESTIA_CMD . "v-delete-user-ssh-key " . $user . " " . $v_key, $output, $return_var);
- check_return_code($return_var, $output);
- }
- unset($output);
- //die();
- $back = $_SESSION["back"];
- if (!empty($back)) {
- header("Location: " . $back);
- exit();
- }
- header("Location: /list/key/");
- exit();
|