Skip to content

Commit 0ef0ff9

Browse files
committed
fix: add openssl Windows-specific pattern
Add a Windows-specific pattern to detect openssl in NxLib64.dll See #5159 Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
1 parent d7a69a6 commit 0ef0ff9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cve_bin_tool/checkers/openssl.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@ class OpensslChecker(Checker):
2020
VERSION_PATTERNS = [
2121
r"OpenSSL ([0-9]+\.[0-9]+\.[0-9]+[a-z]*) [a-zA-Z0-9 ]+\r?\n(?:%s \(Library: %s\)|[a-zA-Z0-9:,_ \.\-\r\n]*OPENSSLDIR|ssl)",
2222
r"(?:%s \(Library: %s\)\r?\n|OPENSSLDIR[a-zA-Z0-9:/ \"\-\r\n]*)OpenSSL ([0-9]+\.[0-9]+\.[0-9]+[a-z]*) [a-zA-Z0-9 ]+",
23+
r"openssl\\([0-9]+\.[0-9]+\.[0-9]+[a-z]*)",
2324
]
2425
VENDOR_PRODUCT = [("openssl", "openssl")]

0 commit comments

Comments
 (0)