#12249 new view vulnerabilities agent

This commit is contained in:
Daniel Cebrian 2023-11-13 09:38:24 +01:00
parent 9fe85f3425
commit b100d34985
1 changed files with 20 additions and 0 deletions

View File

@ -8230,3 +8230,23 @@ function ui_update_name_fav_element($id_element, $section, $label)
]
);
}
function ui_print_status_vulnerability_div(float $score)
{
$return = '';
$class = 'status_rounded_rectangles forced_title';
if (((float) $score) <= 5) {
return ui_print_div('group_view_ok '.$class, $score);
}
if (((float) $score) > 5 && ((float) $score) <= 7.5) {
return ui_print_div('group_view_warn '.$class, $score);
}
if (((float) $score) > 7.5) {
return ui_print_div('group_view_crit '.$class, $score);
}
return $return;
}