惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
H
Help Net Security
Jina AI
Jina AI
V
V2EX
G
Google Developers Blog
B
Blog
GbyAI
GbyAI
U
Unit 42
爱范儿
爱范儿
腾讯CDC
Engineering at Meta
Engineering at Meta
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
小众软件
小众软件
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园 - 聂微东
The Cloudflare Blog
I
InfoQ
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏

A10 Networks

How to Secure AI Applications From Modern Threats? | A10 Networks How to Secure AI Applications From Modern Threats? | A10 Networks A10 Thunder 3360S ADC: 150 Gbps for AI & Enterprise | A10 Networks AI Security Is an Architecture Problem | A10 Networks What Is an AI Gateway? The AI Control Plane | A10 Networks AI in Financial Services: Why Leadership Is the Risk OWASP Now Has Two AI Top 10s: What Changed? OWASP Now Has Two AI Top 10s: What Changed? TrojAI by A10 Networks AI Security Platform TrojAI Defend for MCP by A10 Networks TrojAI Detect by A10 Networks TrojAI Defend by A10 Networks Secure, High-Performance Networking Solutions | A10 Battling Bots, Fraud & AI Threats Summit | Retail IT & Cybersecurity What Is Healthcare Data Compliance? | A10 Networks Interop Best of Show Runner's Up - People's Choice | A10 Networks Interop Best of Show Runner's Up - Security for AI | A10 Networks What Is FIX Protocol Trading? | A10 Networks A10 Joins OpenAI's Trusted Access for Cyber Flexible Licensing for Multiple Clouds | A10 Networks A10 Acquires TrojAI to Advance Enterprise AI Security HFT Infrastructure: High Frequency Trading Explained | A10 Networks A10 Networks Acquires TrojAI Inc., Expanding AI Roadmap | A10 Networks What Is Low-latency Trading? | A10 Networks Multi-Vector DDoS: 11 Amplification Vectors | A10 Healthcare Cloud Compliance: HIPAA & GDPR Guide | A10 LLM Unbounded Consumption & DoS Attacks | OWASP LLM10 LLM Hallucination & Misinformation | OWASP LLM09:2025 Healthcare Network Protection for Hospitals & Clinics RAG Security: Vector & Embedding Weaknesses | OWASP LLM08
Sensitive Information Disclosure | OWASP LLM02:2025
Richard Tuma · 2026-05-21 · via A10 Networks

Sensitive information disclosure remains one of the most serious risks in LLM-enabled systems.

Large language models (LLMs) process, generate, and sometimes retain data that may include personal, financial, medical, legal, or proprietary information. When improperly configured or insufficiently controlled, LLMs and their surrounding applications can expose this data through model outputs, training processes, or integrations. This risk affects both the model and the application context in which it operates.

Key Takeaways

  • Sensitive information disclosure occurs when LLMs expose PII, business data, proprietary algorithms, or security credentials through their outputs, either unintentionally or via exploitation.
  • Disclosed training data can enable model inversion attacks, where adversaries reconstruct sensitive inputs or extract proprietary information from the model itself.
  • System prompt restrictions can reduce disclosure risk but are not reliable on their own because they can be bypassed through prompt injection, making layered defenses essential.
  • Privacy-preserving techniques such as federated learning, differential privacy, and homomorphic encryption reduce exposure by limiting centralized data access and making individual data points harder to reverse-engineer.
  • Prevention relies on combining data sanitization before training, strict access controls, robust input/output validation, and clear user policies on data retention and opt-out rights.

What is Sensitive Information in LLM Systems?

Sensitive information includes, but is not limited to:

  • Personally identifiable information (PII)
  • Financial records
  • Health information
  • Confidential business data
  • Security credentials and access tokens
  • Legal documents
  • Proprietary algorithms and source code

In addition, proprietary training methodologies, model architectures, and fine-tuning datasets may themselves be considered sensitive, especially in closed or foundation model deployments.

When LLMs are embedded into enterprise workflows, customer-facing tools, or internal systems, improper data handling can result in privacy violations, intellectual property leakage, and unauthorized access.

How Disclosure Happens

Sensitive information disclosure can occur through multiple paths. The model reproduces data from training sets. User-provided data is inadvertently included in responses to other users. System prompts or internal configuration details are exposed. External integrations return more data than intended. Prompt injection bypasses filtering controls.

Consumers may also unintentionally provide confidential information during interactions. Without proper safeguards, that data can be retained, reused, or surfaced later in outputs. Mitigation requires both technical controls and clear transparency policies.

Common Vulnerability Examples

  • PII leakage: An LLM discloses personal data belonging to another user due to inadequate isolation or sanitization.
  • Proprietary algorithm exposure: Improper configuration allows internal logic, training data, or proprietary algorithms to be revealed. In extreme cases, exposure of training data enables model extraction or inversion attacks. For example, documented research such as the “Proof Pudding” attack (CVE-2019-20634) demonstrated how leaked training data facilitated model extraction and bypassed security controls.
  • Sensitive business data disclosure: Generated responses unintentionally include confidential enterprise information, such as internal financial projections or trade secrets.

Prevention and Mitigation Strategies

Reducing disclosure risk requires layered controls across data handling, model configuration, and user transparency.

Data Sanitization

Integrate data sanitization techniques to scrub or mask sensitive data before it is included in model training or processing pipelines. Also ensure robust input validation to detect and filter harmful or sensitive inputs before they reach the model.

Access Controls

Enforce least privilege by limiting access to sensitive data to only what is necessary for a given user or process. Restrict data sources to carefully manage and secure runtime data orchestration and prevent unintended exposure through external integrations.

Federated Learning and Privacy Techniques

Use federated learning to train models using decentralized datasets across multiple systems to reduce centralized data risk and differential privacy to introduce statistical noise into data or outputs to prevent reconstruction of individual records.

User Education and Transparency

As always, educate users on safe interactions and provide guidance on avoiding the input of sensitive data into LLM systems. In addition, ensure transparency in data use by publishing clear data retention, usage, and deletion policies and offer opt-out mechanisms for training data inclusion.

Secure System Configuration

Conceal system preambles and internal prompts to limit user access to system-level instructions and internal configurations. Follow secure configuration best practices by applying established guidance such as OWASP API security recommendations to prevent leakage through misconfiguration or verbose error messages.

Advanced Privacy Techniques

Use advanced privacy techniques such as homomorphic encryption to enable privacy-preserving data processing where data remains encrypted during computation, and tokenization and redaction to detect and redact sensitive content using pattern matching and pre-processing before model interaction.

Example Attack Scenarios

There are multiple examples of attack scenarios that should be considered to protecting sensitive data.

  • Unintentional data exposure: A user receives a response containing another user’s personal data due to inadequate sanitization controls.
  • Targeted prompt injection: An attacker bypasses input filters and extracts confidential information through crafted prompts.
  • Training data leakage: Sensitive enterprise data is inadvertently included in model training and later surfaced in responses.

Why It Matters

LLMs amplify both productivity and risk. When embedded into applications, they can access, process, and generate sensitive data at scale. Without strict controls, this creates opportunities for unauthorized disclosure, privacy violations, intellectual property loss, regulatory exposure and ultimately, erosion of user trust. Sensitive information disclosure is not solely a model issue. It is a system design issue.

Secure LLM deployments require clear data governance policies, strict access control enforcement, privacy enhancing technologies, continuous monitoring and adversarial testing and transparent communication with users.

Organizations must treat LLM systems as high-sensitivity data processors and architect them accordingly and security and privacy must be embedded from design through deployment.

< Back to Glossary of Terms