Tainted flow: 'req' from os.environ.get (line 66, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
req = Request(url, data=body, headers=headers, method=method) try: with urlopen(req) as resp: content = resp.read().decode() return json.loads(content) if content else {} except HTTPError as e:- Confidence
- 90% confidence
- Finding
- Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
