Skip to content

Commit

Permalink
fix: update libksba CPE ID (#3217)
Browse files Browse the repository at this point in the history
libksba_project:libksba has been deprecated by NVD [0],
gnupg:libksba should be used instead.

[0]: https://nvd.nist.gov/products/cpe/detail/AA709F75-0B9E-4B67-ACEA-C1DCF33E7745?namingFormat=2.3&orderBy=CPEURI&keyword=libksba&status=FINAL

Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine authored Aug 9, 2023
1 parent 06b55f7 commit 6cbca4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cve_bin_tool/checkers/libksba.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
CVE checker for libksba:
https://www.cvedetails.com/product/64485/Libksba-Project-Libksba.html?vendor_id=14973
https://www.cvedetails.com/product/139830/Gnupg-Libksba.html?vendor_id=4711
"""
from __future__ import annotations
Expand All @@ -17,4 +17,4 @@ class LibksbaChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [r"Libksba ([0-9]+\.[0-9]+\.[0-9]+)"]
VENDOR_PRODUCT = [("libksba_project", "libksba")]
VENDOR_PRODUCT = [("gnupg", "libksba")]

0 comments on commit 6cbca4e

Please sign in to comment.