Tainted flow: 'image_url' from requests.post (line 163, network input) → requests.get (network output)
Medium
- Category
- Data Flow
- Content
output_path.parent.mkdir(parents=True, exist_ok=True) print("Downloading image...") img_response = requests.get(image_url, timeout=30, verify=not args.no_verify_ssl) img_response.raise_for_status() # Save the image- Confidence
- 95% confidence
- Finding
- img_response = requests.get(image_url, timeout=30, verify=not args.no_verify_ssl)
