Skip to content

Commit

Permalink
fix: add additional CPE ID to yasm
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine committed Feb 4, 2024
1 parent 6aa33be commit 53dbe10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cve_bin_tool/checkers/yasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
CVE checker for yasm
https://www.cvedetails.com/product/118056/Tortall-Yasm.html?vendor_id=27855
https://www.cvedetails.com/product/138490/Yasm-Project-Yasm.html?vendor_id=30316
"""
from __future__ import annotations
Expand All @@ -17,4 +18,4 @@ class YasmChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [r"yasm ([0-9]+\.[0-9]+\.[0-9]+)"]
VENDOR_PRODUCT = [("tortall", "yasm")]
VENDOR_PRODUCT = [("tortall", "yasm"), ("yasm_project", "yasm")]

0 comments on commit 53dbe10

Please sign in to comment.