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 303376e commit 274a307Copy full SHA for 274a307
cve_bin_tool/available_fix/debian_cve_tracker.py
@@ -93,7 +93,7 @@ def update_json():
93
"""Update the Debian CVE JSON file"""
94
95
LOGGER.info("Updating Debian CVE JSON file for checking available fixes.")
96
- response = request.urlopen(JSON_URL).read().decode("utf-8")
+ response = request.urlopen(JSON_URL).read().decode("utf-8") # nosec - static url
97
response = loads(response)
98
with open(DEB_CVE_JSON_PATH, "w") as debian_json:
99
dump(response, debian_json, indent=4)
0 commit comments