wazuh / wazuh

Wazuh - The Open Source Security Platform. Unified XDR and SIEM protection for endpoints and cloud workloads.
https://wazuh.com/
Other
10.37k stars 1.59k forks source link

Missing vulnerabilities in Vulnerability Detection E2E tests #24972

Closed hossam1522 closed 3 weeks ago

hossam1522 commented 1 month ago

Description

While I was carrying out https://github.com/wazuh/wazuh-qa/issues/5608, after re-running the Vulnerability Detection E2E tests, it has been observed that:

CVE-2022-23498
CVE-2022-23552
CVE-2022-31097
CVE-2022-31107
CVE-2022-31123
CVE-2022-31130
CVE-2022-35957
CVE-2022-36062
CVE-2022-39201
CVE-2022-39229
CVE-2022-39306
CVE-2022-39307
CVE-2022-39324
CVE-2023-0507
CVE-2023-0594
CVE-2023-1410
CVE-2023-2183
CVE-2023-3128
CVE-2021-4044
CVE-2021-44531
CVE-2021-44532
CVE-2021-44533
CVE-2022-0778
CVE-2022-21824
CVE-2022-23498
CVE-2022-23552
CVE-2022-31097
CVE-2022-31107
CVE-2022-31123
CVE-2022-31130
CVE-2022-35957
CVE-2022-36062
CVE-2022-39201
CVE-2022-39229
CVE-2022-39306
CVE-2022-39307
CVE-2022-39324
CVE-2023-0507
CVE-2023-0594
CVE-2023-1410
CVE-2023-2183
CVE-2023-3128
CVE-2022-23498
CVE-2022-23552
CVE-2022-31097
CVE-2022-31107
CVE-2022-31123
CVE-2022-31130
CVE-2022-35957
CVE-2022-36062
CVE-2022-39201
CVE-2022-39229
CVE-2022-39306
CVE-2022-39307
CVE-2022-39324
CVE-2023-0507
CVE-2023-0594
CVE-2023-1410
CVE-2023-2183
CVE-2023-3128
CVE-2022-23498
CVE-2022-23552
CVE-2022-31097
CVE-2022-31107
CVE-2022-31123
CVE-2022-31130
CVE-2022-35957
CVE-2022-36062
CVE-2022-39201
CVE-2022-39229
CVE-2022-39306
CVE-2022-39307
CVE-2022-39324
CVE-2023-0507
CVE-2023-0594
CVE-2023-1410
CVE-2023-2183
CVE-2023-3128
CVE-2017-16014
CVE-2022-0778

There is a general loss of vulnerabilities for Windows and Ubuntu ARM in the cases of Grafana and Node. We should investigate to find the source of this problem and solve it.

The evidence to support this information can be found in the section below.

Evidences

sebasfalcone commented 1 month ago

Could be related to the translations:

GabrielEValenzuela commented 1 month ago

Analysis

We have reproduced a local environment utilizing the following Syscollector messages.

OSInfo ```json { "agent_info": { "agent_id": "023" }, "data_type": "dbsync_osinfo", "data": { "architecture": "x86_64", "checksum": "1708734360392506855", "hostname": "test_vm", "os_codename": "jammy", "os_major": "22", "os_minor": "04", "os_name": "Ubuntu", "os_patch": "3", "os_platform": "ubuntu", "os_version": "22.04.3 LTS (Jammy Jellyfish)", "release": "6.5.0-18-generic", "scan_time": "2024/02/24 00:26:02", "sysname": "Linux", "version": "#18~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 7 11:40:03 UTC 2" }, "operation": "INSERTED" } ``` ```json { "agent_info": { "agent_id": "025" }, "data_type": "state", "data": { "attributes_type": "syscollector_osinfo", "attributes": { "architecture": "x86_64", "checksum": "1691178971959743855", "hostname":"fd9b83c25f30", "os_major":"10", "os_minor":"0", "os_build":"19045", "os_name":"Microsoft Windows 10 Pro", "os_display_version":"22H2", "os_platform":"windows", "os_version":"10.0.19045", "scan_time":"2023/08/04 19:56:11" } } } ```
NodeJS ```json { "agent_info": { "agent_id": "025" }, "data_type": "dbsync_packages", "data": { "architecture": "x86_64", "checksum": "eec8dacdb7087b2e0cc5ccebeb1259a6ec7a731e", "description": "Node.js", "vendor": "Node.js Foundation", "name": "Node.js", "size": 334, "format": "win", "item_id": "f97fcd7d34fa7b705241093e8ba47c4458017285", "location": " ", "multiarch": " ", "priority": " ", "scan_time": "2024/05/28 02:01:07", "source": " ", "groups" : " ", "version": "17.0.1" }, "operation": "INSERTED" } ```
Grafana ```json { "agent_info": { "agent_id": "024" }, "data_type": "dbsync_packages", "data": { "architecture": "amd64", "checksum": "eec8dacdb7087b2e0cc5ccebeb1259a6ec7a731e", "description": "Grafana", "vendor": "contact@grafana.com", "name": "grafana", "size": 334, "format": "deb", "item_id": "f97fcd7d34fa7b705241093e8ba47c4458017285", "location": " ", "multiarch": "foreign", "priority": "required", "scan_time": "2024/05/28 02:01:07", "source": "util-linux (2.37.2-4ubuntu3.4)", "groups" : "utils", "version": "8.5.27" }, "operation": "INSERTED" } ```

Through our investigation, we conducted an analysis with the following script

Python script ```python import sys def search_words_in_log(word_list_file, log_file): # Read the list of words and remove duplicates with open(word_list_file, 'r') as f: words = list(set(line.strip() for line in f)) # Open the log file and search for each word with open(log_file, 'r') as log: log_lines = log.readlines() for word in words: print(f"Searching for word: {word}") for line_num, line in enumerate(log_lines, 1): if word in line and ('match' in line or 'Match' in line): print(f">>>{line_num}: {line.strip()}") if __name__ == "__main__": if len(sys.argv) != 3: print("Usage: python search_words.py word_list_file log_file") sys.exit(1) word_list_file = sys.argv[1] log_file = sys.argv[2] # Check if the files exist try: search_words_in_log(word_list_file, log_file) except FileNotFoundError as e: print(e) sys.exit(1) ```

Conclusion

Log ```console Searching for word: CVE-2022-36062 >>>2199: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-36062 Searching for word: CVE-2023-2183 >>>2251: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2023-2183 Searching for word: CVE-2023-3128 >>>2266: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2023-3128 Searching for word: CVE-2022-39324 >>>2220: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-39324 Searching for word: CVE-2021-44533 >>>3661: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'node.js', is vulnerable to 'CVE-2021-44533'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '025', Version: ''). Searching for word: CVE-2022-39307 >>>2216: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-39307 Searching for word: CVE-2023-0507 >>>2228: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2023-0507 Searching for word: CVE-2022-31107 >>>2175: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-31107 Searching for word: CVE-2021-4044 >>>3643: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'node.js', is vulnerable to 'CVE-2021-4044'. Current version: '17.0.1' (less than '17.3.0' or equal to ''). - Agent '' (ID: '025', Version: ''). Searching for word: CVE-2022-23498 >>>2144: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.27' (less than '9.2.10' or equal to ''). - Agent '' (ID: '024', Version: ''). Searching for word: CVE-2023-1410 >>>Know issue Searching for word: CVE-2022-31123 >>>1894: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-31123 Searching for word: CVE-2022-39306 >>>1927: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-39306 Searching for word: CVE-2022-31130 >>>1898: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-31130 Searching for word: CVE-2022-39201 >>>2204: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-39201 Searching for word: CVE-2017-16014 >>> Wrong package Searching for word: CVE-2022-0778 >>> Know issue Searching for word: CVE-2022-39229 >>>2208: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-39229 Searching for word: CVE-2022-21824 >>>3674: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'node.js', is vulnerable to 'CVE-2022-21824'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '025', Version: ''). Searching for word: CVE-2022-31097 >>>2169: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-31097 Searching for word: CVE-2021-44532 >>>3655: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'node.js', is vulnerable to 'CVE-2021-44532'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '025', Version: ''). Searching for word: CVE-2023-0594 >>>2233: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2023-0594 Searching for word: CVE-2022-23552 >>>2149: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-23552 Searching for word: CVE-2022-35957 >>>2194: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:564 versionMatch : No match due to default status for Package: grafana, Version: 8.5.27 while scanning for Vulnerability: CVE-2022-35957 Searching for word: CVE-2021-44531 >>>3649: wazuh-modulesd:vulnerability-scanner:packageScanner.hpp:499 versionMatch : Match found, the package 'node.js', is vulnerable to 'CVE-2021-44531'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '025', Version: ''). ```
sebasfalcone commented 1 month ago

@GabrielEValenzuela Let's add the efficacy tests for these CVEs to align with the QA tests

sebasfalcone commented 1 month ago

Summary

Vulnerable

CVE-2021-44533

CVE-2021-4044

CVE-2022-23498

CVE-2022-21824

CVE-2021-44532

CVE-2021-44531

Non vulnerable

CVE-2022-36062

CVE-2023-2183

CVE-2023-3128

CVE-2022-39324

CVE-2022-39307

CVE-2023-0507

CVE-2022-31107

CVE-2022-31123

CVE-2022-39306

CVE-2022-31130

CVE-2022-39201

CVE-2022-39229

CVE-2022-31097

CVE-2023-0594

CVE-2022-23552

CVE-2022-35957

sebasfalcone commented 1 month ago

Further analysis

The Grafana version used for the test seems not be affected by many of the CVEs tested against. For example (CVE-2022-39229)[https://nvd.nist.gov/vuln/detail/CVE-2022-39229]:

image

The result is the one expected:

GabrielEValenzuela commented 1 month ago

Update

sebasfalcone commented 1 month ago

Release change

We identify that there is no issue with the scanner, and all the expected CVEs are detected (this can be validated in the efficacy tests)

The conclusion is that this issue has to do with the tests themselves and not the scanner, we are moving this to 4.10.0

@GabrielEValenzuela Will further expand this on its report

GabrielEValenzuela commented 1 month ago

The following comments split the analysis into three parts for better reading

Analysis Windows

We made the analysis based on the filtered log provided by @sebasfalcone , (Many thanks for the help!) and the output of the test case on #24986

Log filtered output ```console Vulnerabilities found: Match found, the package 'node.js', is vulnerable to 'CVE-2021-4044'. Current version: '17.0.1' (less than '17.3.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-4044'. Current version: '17.1.0' (less than '17.3.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-4044'. Current version: '17.0.1' (less than '17.3.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-4044'. Current version: '17.1.0' (less than '17.3.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44531'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44531'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44531'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44531'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44532'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44532'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44532'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44532'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44533'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44533'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44533'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2021-44533'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-21824'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-21824'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-21824'. Current version: '17.0.1' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-21824'. Current version: '17.1.0' (less than '17.3.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32212'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32212'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32212'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32212'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32213'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32213'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32213'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32213'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32214'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32214'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32214'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32214'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32215'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32215'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32215'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32215'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32222'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32222'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32222'. Current version: '18.0.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-32222'. Current version: '18.1.0' (less than '18.5.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35255'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35255'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35255'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35255'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35256'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35256'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35256'. Current version: '18.0.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-35256'. Current version: '18.1.0' (less than '18.9.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3602'. Current version: '18.0.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3602'. Current version: '18.1.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3602'. Current version: '18.0.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3602'. Current version: '18.1.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3786'. Current version: '18.0.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3786'. Current version: '18.1.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3786'. Current version: '18.0.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-3786'. Current version: '18.1.0' (less than '18.11.0' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-43548'. Current version: '18.0.0' (less than '' or equal to '18.11.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-43548'. Current version: '18.1.0' (less than '' or equal to '18.11.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-43548'. Current version: '18.0.0' (less than '' or equal to '18.11.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2022-43548'. Current version: '18.1.0' (less than '' or equal to '18.11.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23918'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23918'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23918'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23918'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23919'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23919'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23919'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23919'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23920'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23920'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23920'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23920'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23936'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23936'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23936'. Current version: '18.0.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-23936'. Current version: '18.1.0' (less than '18.14.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30581'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30581'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30581'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30581'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30585'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30585'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30585'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30585'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30588'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30588'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30588'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30588'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30589'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30589'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30589'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30589'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30590'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30590'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30590'. Current version: '18.0.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-30590'. Current version: '18.1.0' (less than '18.16.1' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32002'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32002'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32002'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32002'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32006'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32006'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32006'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32006'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32559'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32559'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32559'. Current version: '18.0.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-32559'. Current version: '18.1.0' (less than '' or equal to '18.17.0'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.0.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.1.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.0.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.1.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.0.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-38552'. Current version: '18.1.0' (less than '' or equal to '18.18.1'). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.0.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.1.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.0.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.1.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.0.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Match found, the package 'node.js', is vulnerable to 'CVE-2023-44487'. Current version: '18.1.0' (less than '18.18.2' or equal to ''). - Agent '' (ID: '035', Version: ''). Non-vulnerabilities found: No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-4044 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-4044 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-4044 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-4044 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44531 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44531 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44531 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44531 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44532 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44532 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44532 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44532 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44533 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44533 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2021-44533 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2021-44533 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2022-21824 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2022-21824 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2022-21824 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2022-21824 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32212 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32212 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32212 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32212 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32213 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32213 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32213 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32213 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32214 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32214 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32214 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32214 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32215 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32215 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32215 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32215 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32222 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32222 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-32222 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-32222 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-35255 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-35255 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-35255 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-35255 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-35256 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-35256 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-35256 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-35256 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-3602 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-3602 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-3602 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-3602 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-3786 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-3786 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-3786 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-3786 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-43548 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-43548 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2022-43548 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2022-43548 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23918 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23918 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23918 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23918 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23919 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23919 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23919 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23919 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23920 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23920 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23920 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23920 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23936 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23936 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-23936 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-23936 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30581 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30581 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30581 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30581 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30585 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30585 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30585 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30585 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30588 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30588 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30588 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30588 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30589 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30589 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30589 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30589 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30590 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30590 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-30590 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-30590 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32002 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32002 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32002 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32002 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32006 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32006 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32006 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32006 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32559 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32559 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-32559 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-32559 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-38552 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-39331 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-39331 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2023-39331 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2023-39331 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-39332 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-39332 No match due to default status for Package: node.js, Version: 18.0.0 while scanning for Vulnerability: CVE-2023-39332 No match due to default status for Package: node.js, Version: 18.1.0 while scanning for Vulnerability: CVE-2023-39332 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-44487 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-44487 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-44487 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-44487 No match due to default status for Package: node.js, Version: 17.0.1 while scanning for Vulnerability: CVE-2023-44487 No match due to default status for Package: node.js, Version: 17.1.0 while scanning for Vulnerability: CVE-2023-44487 Not all CVEs were found in the log file The CVE-2022-0778 not found in log file The CVE-2022-0778 not found in log file The CVE-2022-32223 not found in log file ```

Conclusion

CVE-2022-0778

Know issue https://github.com/wazuh/intelligence-platform/issues/1467

CVE-2022-32223
The platform is not in the list for Package: node.js, Version: 17.1.0, CVE: CVE-2022-32223, OS CPE: cpe:/o:microsoft:windows_10_22h2:10.0.19045:::::, OS code name: 
GabrielEValenzuela commented 1 month ago

Ubuntu 22

Log filtered output ```console Vulnerabilities found: Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39328'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1387'. Current version: '9.1.1' (less than '9.2.17' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1387'. Current version: '9.2.0' (less than '9.2.17' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1387'. Current version: '9.1.1' (less than '9.2.17' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1387'. Current version: '9.2.0' (less than '9.2.17' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-22462'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '033', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '033', Version: ''). Non-vulnerabilities found: No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 8.5.5 while scanning for Vulnerability: CVE-2022-39328 No match due to default status for Package: grafana, Version: 8.5.5-1 while scanning for Vulnerability: CVE-2022-39328 No match due to default status for Package: grafana, Version: 8.5.6 while scanning for Vulnerability: CVE-2022-39328 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-39328 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 8.5.5 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.5-1 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.6 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.5 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.5-1 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.6 while scanning for Vulnerability: CVE-2023-1387 No match due to default status for Package: grafana, Version: 8.5.5 while scanning for Vulnerability: CVE-2023-22462 No match due to default status for Package: grafana, Version: 8.5.5-1 while scanning for Vulnerability: CVE-2023-22462 No match due to default status for Package: grafana, Version: 8.5.6 while scanning for Vulnerability: CVE-2023-22462 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-22462 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 Not all CVEs were found in the log file ```

Conclusion

🟢 All fine

GabrielEValenzuela commented 1 month ago

Centos 7.9

Log filtered output ```console Vulnerabilities found: Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.5-1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '8.5.6' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23498'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.1.1' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-23552'. Current version: '9.2.0' (less than '9.2.10' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31097'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.5-1' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31107'. Current version: '8.5.6' (less than '8.5.9' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31123'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-31130'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-35957'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.5-1' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '8.5.6' (less than '8.5.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-36062'. Current version: '9.1.1' (less than '9.1.6' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39201'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.5-1' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '8.5.6' (less than '8.5.14' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39229'. Current version: '9.1.1' (less than '9.1.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39306'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.5-1' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '8.5.6' (less than '8.5.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.1.1' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39307'. Current version: '9.2.0' (less than '9.2.4' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.5-1' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '8.5.6' (less than '8.5.16' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.1.1' (less than '9.2.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2022-39324'. Current version: '9.2.0' (less than '9.2.8' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0507'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.5-1' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '8.5.6' (less than '8.5.21' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-0594'. Current version: '9.2.0' (less than '9.2.13' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.5-1' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '8.5.6' (less than '8.5.22' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-1410'. Current version: '9.2.0' (less than '9.2.15' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.5-1' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '8.5.6' (less than '8.5.26' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.1.1' (less than '9.2.19' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-2183'. Current version: '9.2.0' (less than '9.2.19' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.5-1' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '8.5.6' (less than '8.5.27' or equal to ''). - Agent '' (ID: '034', Version: ''). Match found, the package 'grafana', is vulnerable to 'CVE-2023-3128'. Current version: '9.2.0' (less than '9.2.20' or equal to ''). - Agent '' (ID: '034', Version: ''). Non-vulnerabilities found: No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31097 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31107 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31123 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-31130 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-35957 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-36062 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39201 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 9.2.0 while scanning for Vulnerability: CVE-2022-39229 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0507 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-0594 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-1410 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-1410 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 No match due to default status for Package: grafana, Version: 9.1.1 while scanning for Vulnerability: CVE-2023-3128 Not all CVEs were found in the log file ```

Conclusion

🟢 All fine

GabrielEValenzuela commented 1 month ago

Update

sebasfalcone commented 1 month ago

Issue blocked

We tested this tests locally with the latest content offsets, which are not yet in the current content snapshot

@ooniagbi Do we have an ETA for the next commit + snapshot generation?

GabrielEValenzuela commented 1 month ago

Update

sebasfalcone commented 3 weeks ago

Conclusion

We added all CVEs that QA reported into an efficacy test:

python -m pytest -k "run_process_and_monitor_log23"  wazuh_modules/vulnerability_scanner/qa/
============================================================ test session starts =============================================================
platform linux -- Python 3.11.9, pytest-7.2.2, pluggy-1.5.0
rootdir: /home/gvalenzuela/Documents/Work/wazuh/src
collected 30 items / 29 deselected / 1 selected                                                                                              

wazuh_modules/vulnerability_scanner/qa/test_efficacy_log.py .                                                                          [100%]

====================================================== 1 passed, 29 deselected in 2.34s ======================================================

We detect all of them, so we can safely close this issue

New tests

We are going to add these new tests in the next issue:

Dwordcito commented 3 weeks ago

The results are positive in terms of the scanner, there is no efficacy problem, is this a testing issue?

Reopen you see some explicit problem with the product.