We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e87e86 commit 1c02c90Copy full SHA for 1c02c90
cve_bin_tool/checkers/gnutls.py
@@ -11,6 +11,8 @@ def get_version(lines, filename):
11
returns version information for gnutls found in given file.
12
Verfies using the tools gnutls-cli
13
Verifies using the libraries libgnutls.so and libgnutls-dane.so
14
+
15
+ VPkg: gnutls, gnutls
16
"""
17
regex = [r"gnutls-cli ([3]+\.[0-9]+\.[0-9]+)"]
18
version_info = dict()
@@ -27,4 +29,4 @@ def get_version(lines, filename):
27
29
elif "libgnutls-dane.so" in filename:
28
30
version_info["is_or_contains"] = "is"
31
- return version_info
32
+ return version_info
0 commit comments