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 edc82e9 commit 2fecbb1Copy full SHA for 2fecbb1
cve_bin_tool/data_sources/gad_source.py
@@ -23,6 +23,8 @@
23
24
25
class GAD_Source(Data_Source):
26
+ """Represents a data source for retrieving Common Vulnerabilities and Exposures (CVEs) from GitLab Advisory Database (GAD)."""
27
+
28
SOURCE = "GAD"
29
CACHEDIR = DISK_LOCATION_DEFAULT
30
LOGGER = LOGGER.getChild("CVEDB")
@@ -174,6 +176,9 @@ async def update_cve_entries(self):
174
176
self.all_cve_entries.append(data)
175
177
178
def parse_multiple_version(self, range_string):
179
+ """Parses multiple version strings from a range string.
180
+ Args:range_string (str): The range string to parse.
181
+ Returns:list: A list of parsed version strings."""
182
version_strings = range_string.split(",")
183
start = False
184
versions = []
0 commit comments