Skip to content

Commit 8de8ca2

Browse files
authored
fix: add additional ppp CPE ID (#4092)
samba:ppp is also a valid CPE ID: https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:samba:ppp Signed-off-by: Fabrice Fontaine <[email protected]>
1 parent dd023c4 commit 8de8ca2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cve_bin_tool/checkers/ppp.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66
CVE checker for point-to-point_protocol
77
8+
https://www.cvedetails.com/product/2091/Samba-PPP.html?vendor_id=102
89
https://www.cvedetails.com/product/61854/Point-to-point-Protocol-Project-Point-to-point-Protocol.html?vendor_id=20961
910
1011
"""
@@ -21,4 +22,7 @@ class PppChecker(Checker):
2122
r"pppd[a-z, :%\)]*\r?\n([0-9]+\.[0-9]+\.[0-9]+)",
2223
r"([0-9]+\.[0-9]+\.[0-9]+)\r?\npppd",
2324
]
24-
VENDOR_PRODUCT = [("point-to-point_protocol_project", "point-to-point_protocol")]
25+
VENDOR_PRODUCT = [
26+
("point-to-point_protocol_project", "point-to-point_protocol"),
27+
("samba", "ppp"),
28+
]

0 commit comments

Comments
 (0)