| 123456789101112131415161718192021222324 |
- <?php
- // Init
- error_reporting(NULL);
- ob_start();
- session_start();
- include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
- $pkg = $_POST['pkg'];
- $action = $_POST['action'];
- if ($_SESSION['user'] == 'admin') {
- switch ($action) {
- case 'update': $cmd='v-update-sys-vesta';
- break;
- default: header("Location: /list/updates/"); exit;
- }
- foreach ($pkg as $value) {
- $value = escapeshellarg($value);
- exec (VESTA_CMD.$cmd." ".$value, $output, $return_var);
- }
- }
- header("Location: /list/updates/");
|