Tainted flow: 'response' from os.environ.get (line 732, credential/environment) → socket.socket.sendall (network output)
Critical
- Category
- Data Flow
- Content
request = json.loads(data.decode("utf-8").strip()) result = _handle_request(daemon, request) response = json.dumps(result).encode("utf-8") conn.sendall(response) except Exception as e: try: conn.sendall(json.dumps({"error": str(e)}).encode("utf-8"))- Confidence
- 90% confidence
- Finding
- Credentials or environment variables flow to a network sink. This is a high-confidence indicator of credential exfiltration.
