Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cve_bin_tool/checkers/upx.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
CVE checker for upx

https://www.cvedetails.com/product/40873/Upx-Project-UPX.html?vendor_id=17080
https://www.cvedetails.com/product/178026/UPX-UPX.html?vendor_id=36845

"""
from __future__ import annotations
Expand All @@ -17,4 +18,4 @@ class UpxChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [r"UPX ([0-9]+\.[0-9]+\.?[0-9]*)"]
VENDOR_PRODUCT = [("upx_project", "upx")]
VENDOR_PRODUCT = [("upx_project", "upx"), ("upx", "upx")]
Loading