Tainted flow: 'req' from os.environ.get (line 46, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
req.add_header("Content-Type", "application/json") if self.access_token: req.add_header("Authorization", f"Bearer {self.access_token}") with urllib.request.urlopen(req, timeout=15) as resp: return json.loads(resp.read()) def _login(self, username: str, password: str):- Confidence
- 90% confidence
- Finding
- Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
