Tainted flow: 'req' from os.environ.get (line 102, credential/environment) → urllib.request.urlopen (network output)
- Category
- Data Flow
- Confidence
- 90% confidence
- Finding
Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
- Content
python ) try: with urllib.request.urlopen(req, timeout=30) as resp: result = json.loads(resp.read().decode('utf-8')) # SCF代理返回格式:{"code": 0, "data": {飞常准原始响应}} if result.get("code") == 0:
