Tainted flow: 'image_url' from requests.post (line 47, network input) → requests.get (network output)
Medium
- Category
- Data Flow
- Content
image_url = data["data"][0]["url"] # Download image img_response = requests.get(image_url) img = Image.open(BytesIO(img_response.content)) if filename is None:- Confidence
- 83% confidence
- Finding
- img_response = requests.get(image_url)
