TCL Portal

Generative AI Security for Enterprises: Prompt Injection, Data Leakage & Controls (2026)

Published:
  • #Generative AI
  • #LLM Security
  • #Prompt Injection
  • #Japan
  • #OWASP

Part of our Japan AI governance cluster. Japan’s AI law is soft, but the security risks of the AI you deploy under it are not.

Most generative-AI security conversations I sit in start in the wrong place — model accuracy, hallucinations, “is the output any good.” Those are quality problems. The security problems are different, more concrete, and increasingly well-catalogued. The OWASP Top 10 for LLM Applications, updated for 2025, is the closest thing the industry has to a shared map, and it is where I start any enterprise GenAI review.

I work in information security at a Japanese enterprise (CISSP, CCSP). This is the short version of that review, with the Japanese regulatory overlay that foreign teams tend to miss.

The three risks that matter most first

The 2025 OWASP LLM Top 10 reworked the list to reflect real-world incidents and the rise of agentic AI (OWASP). Three risks deserve your attention before the rest:

1. Prompt injection (the #1 risk). Untrusted input — a user message, a web page your model reads, a document in a RAG pipeline — manipulates the model into ignoring its instructions. It holds the top position because it is the most fundamental LLM vulnerability and potentially the hardest to fully prevent. You manage it; you do not “solve” it.

2. Sensitive information disclosure. The model surfaces confidential data — from its prompt, its context, its training, or a connected source — to someone who should not see it. This is the risk that turns an AI feature into a data-breach vector.

3. System-prompt leakage (new in 2025). Added after real incidents, this is the extraction of your system prompt — which often contains internal rules, filtering criteria, permission structures, and decision logic. Treat anything in a system prompt as potentially exposable, not as a secret store.

To these, the 2025 list adds RAG-specific weaknesses: vulnerabilities in how vectors and embeddings are generated, stored, or retrieved can allow content injection, output manipulation, or unauthorized data access.

Why these are hard — the security-design reading

The uncomfortable truth is that an LLM does not cleanly separate instructions from data. Everything is tokens. That single design fact is why prompt injection resists a clean fix: there is no architectural boundary between “the system’s rules” and “the attacker’s input” the way there is between code and a parameterized query.

So the principles I apply are the same ones I apply everywhere, adjusted for that reality:

Enterprise controls that contain the risk

Not a silver bullet — a defense-in-depth stack (OWASP):

The Japanese regulatory overlay

Here is the part foreign teams under-weight. Japan’s AI Promotion Act is soft law with no penalties — but the security failures above do not live in the AI law. They live in the binding law underneath it:

So the security work and the compliance work are the same work: contain prompt injection and data disclosure, and you simultaneously satisfy the soft AI guidance and stay clear of the hard APPI line.

References

FAQ

What is the biggest security risk with generative AI?

Prompt injection. It tops the OWASP Top 10 for LLM Applications because it is the most fundamental LLM vulnerability and potentially the hardest to fully prevent — untrusted input can manipulate the model into ignoring its instructions or leaking data.

What is system-prompt leakage?

A risk added to the OWASP 2025 LLM Top 10 after real incidents showed attackers extracting the system prompt — which can contain internal rules, filtering criteria, permission structures, and decision logic that should stay hidden.

How does generative AI cause data leakage?

Through sensitive information disclosure: a model may surface confidential data it was given or trained on. Mitigations include data sanitization before training, semantic output filters, and not feeding regulated personal data into prompts or fine-tuning without controls.

Does Japanese law apply to generative AI data leakage?

Yes. If an AI system leaks personal data of people in Japan, the APPI's breach-notification duties can be triggered just as with any other breach, independent of Japan's soft-law AI Promotion Act.

About the authors

Sekiko Jo

CISSPCCSP

CISSP and CCSP-certified security specialist focused on cloud threat modeling and security governance. A Registered Information Security Specialist (情報処理安全確保支援士) in Japan, she writes from hands-on incident-response experience inside a Japanese enterprise.

Hiroto Yuki

CISSPCCSP

CISSP and CCSP-certified. Writes from red-team and SOC operational experience about defenses that actually hold up.