Skip to content

Commit

Permalink
fix: update mosquitto pattern (intel#3580)
Browse files Browse the repository at this point in the history
Update mosquitto pattern to avoid false positives with libmosquittopp

Signed-off-by: Fabrice Fontaine <fabrice.fontaine@orange.com>
  • Loading branch information
ffontaine authored Dec 12, 2023
1 parent aa60bfe commit dc957a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cve_bin_tool/checkers/mosquitto.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
class MosquittoChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [r"([0-9]+\.[0-9]+\.[0-9]+)\r?\nmosquitto"]
VERSION_PATTERNS = [r"\r?\n([0-9]+\.[0-9]+\.[0-9]+)\r?\nmosquitto"]
VENDOR_PRODUCT = [("eclipse", "mosquitto")]

0 comments on commit dc957a0

Please sign in to comment.