Tainted flow: 'content' from httpx.post (line 234, network input) → httpx.get (network output)
Medium
- Category
- Data Flow
- Content
# Check if content is a URL if not image_saved and content.startswith("http"): img_response = httpx.get(content, timeout=60) img_response.raise_for_status() image = PILImage.open(BytesIO(img_response.content)) image.save(str(output_path), 'PNG')- Confidence
- 96% confidence
- Finding
- img_response = httpx.get(content, timeout=60)
