# LLM Sensitive Information Disclosure - ID: go-llm-sensitive-info-disclosure - Severity: HIGH - CWE: Information Exposure (CWE-200) - Languages: Go ## Description Detects sensitive information disclosure in AI/LLM implementations such as credentials or PII in prompts. ## Detection Message Potential sensitive information disclosure: {issue_type} ## Remediation Mask or redact PII and credentials before sending to LLM APIs. ```go safeMessage := maskPII(userInput) safeMessage = redactCredentials(safeMessage) ``` Learn more: https://shoulder.dev/learn/go/cwe-200/llm-sensitive-info-disclosure ## Documentation [object Object] ## Related Rules - **Environment Variable Secret Exposure** [HIGH]: - **LLM Model Theft** [HIGH]: - **Sensitive Field Exposure in API Response** [CRITICAL]: - **Environment Variable Secret Exposure** [HIGH]: - **LLM Model Theft** [HIGH]: