Tainted flow: 'req' from os.environ.get (line 59, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
req = urllib.request.Request(url, data=data, headers=headers, method=method) try: with urllib.request.urlopen(req, timeout=30) as resp: body = resp.read().decode("utf-8", errors="replace") except urllib.error.HTTPError as exc: body = exc.read().decode("utf-8", errors="replace")- Confidence
- 92% confidence
- Finding
- with urllib.request.urlopen(req, timeout=30) as resp:
