Skip to content

Commit

Permalink
fix: add additional CPE ID to c-ares
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine committed Feb 3, 2024
1 parent 6aa33be commit 6d0555b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cve_bin_tool/checkers/c_ares.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
https://www.cvedetails.com/product/11384/Daniel-Stenberg-C-ares.html?vendor_id=613
https://www.cvedetails.com/product/34754/C-ares-Project-C-ares.html?vendor_id=15926
https://www.cvedetails.com/product/160076/C-ares-C-ares.html?vendor_id=32666
"""
from __future__ import annotations
Expand All @@ -21,4 +22,8 @@ class CAresChecker(Checker):
r"c-ares-([0-9]+\.[0-9]+\.[0-9]+)",
r"c-ares library initialization[A-Za-z \.\r\n]+\r?\n([0-9]+\.[0-9]+\.[0-9]+)",
]
VENDOR_PRODUCT = [("c-ares_project", "c-ares"), ("daniel_stenberg", "c-ares")]
VENDOR_PRODUCT = [
("c-ares", "c-ares"),
("c-ares_project", "c-ares"),
("daniel_stenberg", "c-ares"),
]

0 comments on commit 6d0555b

Please sign in to comment.