Tainted flow: 'req' from os.environ.get (line 6, credential/environment) → urllib.request.urlopen (network output)
Critical
- Category
- Data Flow
- Content
print('Missing ELEVENLABS_API_KEY', file=sys.stderr); sys.exit(2) req=urllib.request.Request('https://api.elevenlabs.io/v1/voices',headers={'xi-api-key':KEY,'User-Agent':'openclaw-elevenlabs-skill/1'}) try: with urllib.request.urlopen(req,timeout=30) as r: data=json.loads(r.read().decode('utf-8')) except urllib.error.HTTPError as e: print(f'HTTP {e.code}: '+e.read().decode('utf-8','ignore')[:1000], file=sys.stderr); sys.exit(1)- Confidence
- 90% confidence
- Finding
- Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
