Tainted flow: 'image_url' from requests.get (line 50, network input) → requests.get (network output)
Medium
- Category
- Data Flow
- Content
# Download the image try: image_url = data['urls']['regular'] img_response = requests.get(image_url, timeout=60) img_response.raise_for_status() with open(output_path, 'wb') as f:- Confidence
- 93% confidence
- Finding
- img_response = requests.get(image_url, timeout=60)
