index.php 235 B

12345678910111213
  1. <?php
  2. ob_start();
  3. include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
  4. // Check token
  5. verify_csrf($_GET);
  6. exec(HESTIA_CMD."v-delete-cron-reports ".$user, $output, $return_var);
  7. unset($output);
  8. header("Location: /list/cron/");
  9. exit;