diff --git a/cve_bin_tool/checkers/c_ares.py b/cve_bin_tool/checkers/c_ares.py index 7778b91b8c..ea5f68c5a3 100644 --- a/cve_bin_tool/checkers/c_ares.py +++ b/cve_bin_tool/checkers/c_ares.py @@ -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 @@ -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"), + ]