get_Sources(); $task_status = $db->get_Task_Statuses(); $ste_id = filter_input(INPUT_POST, 'ste', FILTER_VALIDATE_INT); if (!$ste_id) { $ste_id = filter_input(INPUT_COOKIE, 'ste', FILTER_VALIDATE_INT); } $status = filter_input(INPUT_POST, 'status', FILTER_SANITIZE_STRING); $type = filter_input(INPUT_POST, 'type', FILTER_SANITIZE_STRING); $scans = []; if ($type != 'all' && $status != 'all') { $scans = $db->get_ScanData($ste_id, null, $status, $type); } elseif ($type != 'all') { $scans = $db->get_ScanData($ste_id, null, null, $type); } elseif ($status != 'all') { $scans = $db->get_ScanData($ste_id, null, $status); } elseif (isset($ste_id)) { $scans = $db->get_ScanData($ste_id); } $stes = $db->get_STE(); ?>
Do you want to delete the associated targets?
WARNING: This will delete ALL targets in this scan and all associated data even if it was imported from another scan. This action is irreversible
Are you sure you want to delete this scan?