fix: proper detail msg in vuln status

This commit is contained in:
Stéphane Lesimple 2018-01-14 15:47:22 +01:00
parent 8ed7d465aa
commit dead0054a4
1 changed files with 3 additions and 1 deletions

View File

@ -360,8 +360,10 @@ pvulnstatus()
esac
# display info if we're not in quiet/batch mode
vulnstatus="$2"
shift 2
_info_nol "> \033[46m\033[30mSTATUS:\033[0m "
case "$2" in
case "$vulnstatus" in
UNK) pstatus yellow 'UNKNOWN' "$@";;
VULN) pstatus red 'VULNERABLE' "$@";;
OK) pstatus green 'NOT VULNERABLE' "$@";;