Skip to content

Commit 36d1080

Browse files
authored
fix: update modsecurity CPE ID (#5346)
Add owasp:modsecurity CPE ID Signed-off-by: Fabrice Fontaine <[email protected]>
1 parent 98b0ad2 commit 36d1080

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cve_bin_tool/checkers/modsecurity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66
CVE checker for modsecurity
77
8+
https://www.cvedetails.com/product/179732/Owasp-Modsecurity.html?vendor_id=4880
89
https://www.cvedetails.com/product/62133/Trustwave-Modsecurity.html?vendor_id=11396
910
1011
"""
@@ -17,4 +18,4 @@ class ModsecurityChecker(Checker):
1718
CONTAINS_PATTERNS: list[str] = []
1819
FILENAME_PATTERNS: list[str] = []
1920
VERSION_PATTERNS = [r"ModSecurity v([0-9]+\.[0-9]+\.[0-9]+)"]
20-
VENDOR_PRODUCT = [("trustwave", "modsecurity")]
21+
VENDOR_PRODUCT = [("owasp", "modsecurity"), ("trustwave", "modsecurity")]

0 commit comments

Comments
 (0)