Skip to content

Commit a0f0dcd

Browse files
authored
fix: add additional CPE ID to c-ares (#3787)
Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
1 parent 53b359d commit a0f0dcd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

cve_bin_tool/checkers/c_ares.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
https://www.cvedetails.com/product/11384/Daniel-Stenberg-C-ares.html?vendor_id=613
99
https://www.cvedetails.com/product/34754/C-ares-Project-C-ares.html?vendor_id=15926
10+
https://www.cvedetails.com/product/160076/C-ares-C-ares.html?vendor_id=32666
1011
1112
"""
1213
from __future__ import annotations
@@ -21,4 +22,8 @@ class CAresChecker(Checker):
2122
r"c-ares-([0-9]+\.[0-9]+\.[0-9]+)",
2223
r"c-ares library initialization[A-Za-z \.\r\n]+\r?\n([0-9]+\.[0-9]+\.[0-9]+)",
2324
]
24-
VENDOR_PRODUCT = [("c-ares_project", "c-ares"), ("daniel_stenberg", "c-ares")]
25+
VENDOR_PRODUCT = [
26+
("c-ares", "c-ares"),
27+
("c-ares_project", "c-ares"),
28+
("daniel_stenberg", "c-ares"),
29+
]

0 commit comments

Comments
 (0)