Tainted flow: 'url' from os.environ.get (line 235, credential/environment) → requests.post (network output)
Critical
- Category
- Data Flow
- Content
except RuntimeError as e: return {"_error": str(e)} try: r = requests.post(url, json=body or {}, headers=headers, timeout=timeout) return r.json() except Exception as e: body_text = ""- Confidence
- 94% confidence
- Finding
- The POST target is derived from environment-controlled base URLs and the request carries sensitive authentication material such as access tokens, uid/tid headers, and user phone/login data. If an attacker can influence environment variables or deployment configuration, they can redirect these requests to an attacker-controlled endpoint and exfiltrate credentials and account data.
