Tainted flow: 'request' from os.getenv (line 116, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
for attempt in range(retries + 1): request = urllib.request.Request(url, data=data, headers=headers, method="POST") try: with urllib.request.urlopen(request, timeout=timeout) as response: return json.loads(response.read().decode("utf-8")) except urllib.error.HTTPError as exc: body = exc.read().decode("utf-8", errors="replace")- Confidence
- 90% confidence
- Finding
- Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
