Tainted flow: 'download_url' from os.environ.get (line 58, credential/environment) → requests.get (network output)
Critical
- Category
- Data Flow
- Content
print(f"Starting to download {file_name} ...") print(f"Download url: {download_url}") with requests.get(download_url, stream=True, timeout=300) as response: if response.status_code != 200: print(f"Download failed, HTTP status code: {response.status_code}") if retry < max_retries - 1:- Confidence
- 94% confidence
- Finding
- with requests.get(download_url, stream=True, timeout=300) as response:
