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
- 96% confidence
- Finding
- The code sends authentication material and other sensitive data to URLs whose base is taken from environment variables, with no allowlist or scheme/host validation. In a hostile or misconfigured runtime, an attacker can redirect login and token-generation traffic to attacker-controlled endpoints and capture SMS login tokens, access tokens, refresh tokens, and generated API keys.
