Skip to content

Commit

Permalink
fix: update dlt-daemon checker
Browse files Browse the repository at this point in the history
Update dlt-daemon pattern to avoid the following false positive with
some 'exotic' libpcap library:

IEEE 802.15.4
DLT_SITA

Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine committed Jan 17, 2025
1 parent a8800da commit 719bf94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cve_bin_tool/checkers/dlt_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ class DltDaemonChecker(Checker):
CONTAINS_PATTERNS: list[str] = []
FILENAME_PATTERNS: list[str] = []
VERSION_PATTERNS = [
r"([0-9]+\.[0-9]+\.[0-9]+)\r?\n[A-Za-z0-9+_:%(), \[\]\.\-\r\n]*DLT(?:_| Package Version)"
r"\r?\n([0-9]+\.[0-9]+\.[0-9]+)\r?\n[A-Za-z0-9+_:%(), \[\]\.\-\r\n]*DLT(?:_| Package Version)"
]
VENDOR_PRODUCT = [("covesa", "dlt-daemon")]

0 comments on commit 719bf94

Please sign in to comment.