<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Suny Choudhary</title>
    <description>The latest articles on DEV Community by Suny Choudhary (@sunychoudhary).</description>
    <link>https://dev.to/sunychoudhary</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg</url>
      <title>DEV Community: Suny Choudhary</title>
      <link>https://dev.to/sunychoudhary</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sunychoudhary"/>
    <language>en</language>
    <item>
      <title>System Prompt Leakage: Why Hidden AI Instructions Are Not a Security Boundary</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Tue, 16 Jun 2026 09:53:52 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/system-prompt-leakage-why-hidden-ai-instructions-are-not-a-security-boundary-4p7e</link>
      <guid>https://dev.to/sunychoudhary/system-prompt-leakage-why-hidden-ai-instructions-are-not-a-security-boundary-4p7e</guid>
      <description>&lt;p&gt;Most developers treat system prompts like hidden configuration.&lt;/p&gt;

&lt;p&gt;That is the mistake.&lt;/p&gt;

&lt;p&gt;In an LLM application, a system prompt is not source code sitting safely behind access controls. It lives inside the model’s context, where user instructions, external content, and conversation history can influence what the model does next.&lt;/p&gt;

&lt;p&gt;That is why system prompt leakage is not just an edge case. It is a design risk.&lt;/p&gt;

&lt;p&gt;System prompts are often treated as confidential assets within LLM applications. They define the behavior of the model, establish safety boundaries, restrict topics, specify workflows, and determine how external tools should be used. Many developers assume these instructions remain hidden from end users and therefore provide a reliable control mechanism. &lt;/p&gt;

&lt;p&gt;In practice, however, that assumption is increasingly being challenged. The growing prevalence of system prompt leakage demonstrates that prompts are not equivalent to source code or traditional secrets. Unlike configuration files stored behind access controls, prompts exist within the model's context window and ultimately become part of the information the model processes. As a result, attackers can attempt to manipulate conversations in ways that expose or reconstruct those hidden instructions. &lt;/p&gt;

&lt;p&gt;This distinguishes prompt leakage from prompt injection. Prompt injection focuses on influencing model behavior, whereas prompt leakage seeks to reveal the instructions governing that behavior. Access to those instructions can provide valuable information about safety mechanisms, tool usage, and application logic, allowing attackers to craft more effective adversarial inputs. &lt;/p&gt;

&lt;p&gt;Ultimately, prompts are inputs, not security boundaries. Treating them as inherently secret creates assumptions that modern AI systems cannot always guarantee. &lt;/p&gt;

&lt;h2&gt;
  
  
  How Prompt Extraction Attacks Work
&lt;/h2&gt;

&lt;p&gt;A prompt extraction attack aims to reveal the hidden instructions that govern an LLM application's behavior. Rather than exploiting software vulnerabilities, these attacks rely on manipulating the model through carefully crafted inputs and conversational techniques. &lt;/p&gt;

&lt;p&gt;Common approaches include direct requests, role-playing scenarios, context switching, translation prompts, and multi-turn conversations designed to gradually expose internal instructions. In many cases, attackers do not ask the model to violate its rules explicitly. Instead, they reframe the interaction in ways that encourage the model to reveal information unintentionally. &lt;/p&gt;

&lt;p&gt;The underlying challenge is that language models do not possess an inherent distinction between system instructions and user instructions. Both ultimately exist within the same context window and are processed together. This makes prompt secrecy a relatively weak security boundary. &lt;/p&gt;

&lt;p&gt;Frameworks such as the &lt;a href="https://www.langprotect.com/blog/responsible-ai-security-framework?utm_source=SystemPromptLeakageBlog_Devto&amp;amp;utm_medium=ResponsibleAiSecurityFramework_Blog" rel="noopener noreferrer"&gt;responsible AI security framework&lt;/a&gt; emphasize that protecting AI systems requires securing prompts, context, and runtime interactions rather than relying solely on hidden instructions. &lt;/p&gt;

&lt;p&gt;Ultimately, the effectiveness of a prompt extraction attack does not depend on breaking the model. It depends on persuading it. As a result, organizations should assume that prompts may eventually be exposed and design their systems accordingly. &lt;/p&gt;

&lt;h2&gt;
  
  
  Common Techniques Used to Leak System Prompts
&lt;/h2&gt;

&lt;p&gt;Prompt extraction attacks rarely rely on sophisticated exploits. More often, they take advantage of the model's tendency to interpret instructions conversationally. Attackers employ a variety of techniques to persuade the model into revealing information that was intended to remain hidden. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Some of the most common approaches include:&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Roleplay Attacks
&lt;/h3&gt;

&lt;p&gt;The attacker reframes themselves as a developer, security auditor, or administrator and asks the model to disclose the instructions it was supposedly given for review purposes. &lt;/p&gt;

&lt;h3&gt;
  
  
  Instruction Hierarchy Manipulation
&lt;/h3&gt;

&lt;p&gt;User prompts attempt to reinterpret or override hidden instructions by introducing new contexts or priorities. &lt;/p&gt;

&lt;h3&gt;
  
  
  Translation and Summarization Tricks
&lt;/h3&gt;

&lt;p&gt;The model is asked to paraphrase, explain, or translate its own operating rules, often exposing portions of the system prompt in the process. &lt;/p&gt;

&lt;h3&gt;
  
  
  Context Window Exploitation
&lt;/h3&gt;

&lt;p&gt;Long conversations can gradually weaken earlier instructions, increasing the likelihood of unintended disclosures. &lt;/p&gt;

&lt;h3&gt;
  
  
  Indirect Prompt Injection
&lt;/h3&gt;

&lt;p&gt;External content such as web pages, documents, or emails influences the model into revealing internal instructions without the attacker's prompt directly requesting them. &lt;/p&gt;

&lt;p&gt;The challenge with system prompt leakage is that these attacks rarely involve compromising the underlying model. Instead, they exploit the way language models interpret and prioritize natural language.  &lt;/p&gt;

&lt;h2&gt;
  
  
  Why Prompt Security Requires More Than Hiding Prompts
&lt;/h2&gt;

&lt;p&gt;Relying on secrecy alone is not a sustainable defense against prompt extraction. Hidden instructions may provide some friction for attackers, but they should not be treated as the primary mechanism protecting an AI application. Effective prompt security requires a broader, defense-in-depth approach. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Several principles are particularly important:&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompts Should Not Be Treated as Secrets
&lt;/h3&gt;

&lt;p&gt;System instructions may eventually be disclosed through adversarial interactions. Organizations should assume that prompt exposure is possible and design systems accordingly.  &lt;/p&gt;

&lt;h3&gt;
  
  
  Layered Security Provides Greater Resilience
&lt;/h3&gt;

&lt;p&gt;Runtime inspection, policy enforcement, and input validation offer stronger protections than secrecy alone.  &lt;/p&gt;

&lt;h3&gt;
  
  
  Least-Privilege Tool Access Limits Impact
&lt;/h3&gt;

&lt;p&gt;Even if prompts are revealed, restricting permissions prevents attackers from escalating the consequences of prompt exposure.  &lt;/p&gt;

&lt;h3&gt;
  
  
  Continuous Monitoring Improves Detection
&lt;/h3&gt;

&lt;p&gt;Observing prompt interactions and anomalous behavior helps identify extraction attempts before they result in broader compromise.  &lt;/p&gt;

&lt;p&gt;Organizations seeking to &lt;a href="https://www.langprotect.com/armor-for-ai-apps?utm_source=SystemPromptLeakageBlog_Devto&amp;amp;utm_medium=ArmorForAiApps_Product" rel="noopener noreferrer"&gt;secure homegrown AI applications&lt;/a&gt; should recognize that prompt confidentiality cannot be guaranteed indefinitely. Instead, systems should be designed so that exposing internal instructions does not automatically compromise security. &lt;/p&gt;

&lt;h2&gt;
  
  
  System Prompt Leakage Is a Design Problem, Not a Model Problem
&lt;/h2&gt;

&lt;p&gt;Ultimately, system prompt leakage is not a failure of the model itself. Nor is a prompt extraction attack necessarily evidence that the underlying LLM is defective. In most cases, prompt disclosure reflects architectural assumptions that treat hidden instructions as security controls rather than operational guidance. &lt;/p&gt;

&lt;p&gt;Organizations should instead adopt a defense-in-depth approach based on permission boundaries, runtime controls, monitoring, and least-privilege access. The objective is not to guarantee that prompts remain secret indefinitely, but to ensure that their exposure does not compromise the application. &lt;/p&gt;

&lt;p&gt;As AI applications continue to evolve, the challenge will not be preventing prompts from ever being revealed. It will be designing systems that remain secure even when they are. &lt;/p&gt;

&lt;p&gt;This is also where tools like LangProtect become relevant. The goal is not to pretend prompts will stay hidden forever. The goal is to add runtime inspection, policy enforcement, monitoring, and audit visibility around AI interactions so that prompt exposure does not automatically become system compromise.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cybersecurity</category>
      <category>security</category>
      <category>llm</category>
    </item>
    <item>
      <title>This Meta incident is a good reminder that once AI can trigger account recovery or access changes, it is no longer “just support.” It is security infrastructure.</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Mon, 08 Jun 2026 10:35:44 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/this-meta-incident-is-a-good-reminder-that-once-ai-can-trigger-account-recovery-or-access-changes-5f43</link>
      <guid>https://dev.to/sunychoudhary/this-meta-incident-is-a-good-reminder-that-once-ai-can-trigger-account-recovery-or-access-changes-5f43</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp" class="crayons-story__hidden-navigation-link"&gt;Meta’s AI Support Hack Is a Warning for Every Team Automating User Access&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/sunychoudhary" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" alt="sunychoudhary profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/sunychoudhary" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Suny Choudhary
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Suny Choudhary
                
              
              &lt;div id="story-author-preview-content-3847786" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/sunychoudhary" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Suny Choudhary&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Jun 8&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp" id="article-link-3847786"&gt;
          Meta’s AI Support Hack Is a Warning for Every Team Automating User Access
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/meta"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;meta&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/security"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;security&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/cybersecurity"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;cybersecurity&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;2&lt;span class="hidden s:inline"&gt;&amp;nbsp;reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            4 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success crayons-icon c-btn__icon"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Meta’s AI Support Hack Is a Warning for Every Team Automating User Access</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Mon, 08 Jun 2026 10:35:15 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp</link>
      <guid>https://dev.to/sunychoudhary/metas-ai-support-hack-is-a-warning-for-every-team-automating-user-access-8mp</guid>
      <description>&lt;p&gt;The recent Meta AI support incident should make every engineering and security team pause.&lt;/p&gt;

&lt;p&gt;Not because Meta got hacked in some cinematic way.&lt;/p&gt;

&lt;p&gt;But because the attack looks painfully simple from the outside.&lt;/p&gt;

&lt;p&gt;Attackers reportedly abused Meta’s AI-powered support flow to take over Instagram accounts. The system was meant to help users recover access. Instead, it became a shortcut for attackers to change account access and reset credentials.&lt;/p&gt;

&lt;p&gt;That is the real lesson here.&lt;/p&gt;

&lt;p&gt;AI did not need to be “evil.”&lt;br&gt;
It just needed too much authority with too little verification.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem is not AI support
&lt;/h2&gt;

&lt;p&gt;AI support is not the problem.&lt;/p&gt;

&lt;p&gt;Most companies are moving in this direction anyway. Support teams are overloaded. Users expect instant help. Account recovery, onboarding, refunds, compliance requests, and internal IT helpdesk tickets are all obvious places where AI can reduce wait time.&lt;/p&gt;

&lt;p&gt;The issue starts when AI is allowed to act on sensitive workflows without strong guardrails.&lt;/p&gt;

&lt;p&gt;There is a big difference between:&lt;/p&gt;

&lt;p&gt;“Explain how account recovery works.”&lt;/p&gt;

&lt;p&gt;and&lt;/p&gt;

&lt;p&gt;“Change the recovery email for this account.”&lt;/p&gt;

&lt;p&gt;The first is information.&lt;br&gt;
The second is privilege.&lt;/p&gt;

&lt;p&gt;Once an AI system can trigger privileged actions, it becomes part of your security boundary.&lt;/p&gt;

&lt;p&gt;Most teams are still not treating it that way.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI workflows need the same security thinking as APIs
&lt;/h2&gt;

&lt;p&gt;Developers would never expose an API endpoint that lets someone reset another user’s account without authentication, rate limits, logging, and authorization checks.&lt;/p&gt;

&lt;p&gt;But when the same action is wrapped inside a chatbot, teams sometimes treat it as a UX feature instead of an access control surface.&lt;/p&gt;

&lt;p&gt;That is dangerous.&lt;/p&gt;

&lt;p&gt;An AI support agent can be manipulated through prompts, incomplete context, weak verification, confusing instructions, or social engineering. If the agent has access to tools, it can do real damage.&lt;/p&gt;

&lt;p&gt;Not theoretical damage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real actions:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reset passwords&lt;/li&gt;
&lt;li&gt;Change email addresses&lt;/li&gt;
&lt;li&gt;Reveal account details&lt;/li&gt;
&lt;li&gt;Approve refunds&lt;/li&gt;
&lt;li&gt;Modify permissions&lt;/li&gt;
&lt;li&gt;Pull internal data&lt;/li&gt;
&lt;li&gt;Trigger workflows&lt;/li&gt;
&lt;li&gt;Create support escalations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The more useful the agent becomes, the more dangerous it becomes if controls are weak.&lt;/p&gt;

&lt;h2&gt;
  
  
  The missing layer is enforcement
&lt;/h2&gt;

&lt;p&gt;A lot of companies think AI safety means writing better prompts.&lt;/p&gt;

&lt;p&gt;That helps, but it is not enough.&lt;/p&gt;

&lt;p&gt;A system prompt that says “never change account access unless verified” is not a security control. It is guidance.&lt;/p&gt;

&lt;p&gt;Security needs enforcement outside the model.&lt;/p&gt;

&lt;p&gt;For sensitive AI workflows, teams need to ask:&lt;/p&gt;

&lt;p&gt;Can the AI perform privileged actions?&lt;/p&gt;

&lt;p&gt;What identity checks happen before those actions?&lt;/p&gt;

&lt;p&gt;Can the model be tricked into skipping those checks?&lt;/p&gt;

&lt;p&gt;Are risky prompts inspected before tool execution?&lt;/p&gt;

&lt;p&gt;Are responses scanned before they reach the user?&lt;/p&gt;

&lt;p&gt;Are all AI decisions logged?&lt;/p&gt;

&lt;p&gt;Can security teams replay what happened?&lt;/p&gt;

&lt;p&gt;Is there a human approval path for high-risk actions?&lt;/p&gt;

&lt;p&gt;This is where AI security has to become more practical.&lt;/p&gt;

&lt;p&gt;At &lt;a href="https://www.langprotect.com?utm_source=MetaAiHack_Devto&amp;amp;utm_medium=LangProtect" rel="noopener noreferrer"&gt;LangProtect&lt;/a&gt;, this is the exact direction we think enterprises need to move toward. Not blocking AI. Not slowing teams down. But putting a security layer around prompts, responses, files, and AI-triggered workflows before they become incidents.&lt;/p&gt;

&lt;p&gt;Because once AI is connected to real business actions, visibility alone is not enough. You need policy enforcement.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI agents should not be trusted by default
&lt;/h2&gt;

&lt;p&gt;The big mistake is assuming an AI agent is safe because it works well in normal cases.&lt;/p&gt;

&lt;p&gt;Security failures do not happen in normal cases.&lt;/p&gt;

&lt;p&gt;They happen when someone intentionally pushes the edge of the system.&lt;/p&gt;

&lt;p&gt;A good AI support agent may handle 99 percent of users correctly. But the 1 percent edge case can be expensive if the agent has access to account recovery, financial data, admin functions, or internal tools.&lt;/p&gt;

&lt;p&gt;That means AI agents need least privilege.&lt;/p&gt;

&lt;p&gt;They should only access the data they need.&lt;br&gt;
They should only call the tools they are allowed to call.&lt;br&gt;
They should escalate high-risk actions instead of completing them automatically.&lt;br&gt;
They should be monitored like production infrastructure, not treated like a help widget.&lt;/p&gt;

&lt;h2&gt;
  
  
  What teams should fix before shipping AI support
&lt;/h2&gt;

&lt;p&gt;If your team is building AI support, AI agents, or AI copilots, do not wait for a public incident.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Start with these basics:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Separate advice from action&lt;br&gt;
Let AI explain steps, but require strong verification before executing anything sensitive.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Put policy checks before tool calls&lt;br&gt;
The model should not be the final judge of whether an action is safe.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Log every prompt, response, and action&lt;br&gt;
If something goes wrong, you need evidence, not guesses.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add human review for high-impact workflows&lt;br&gt;
Account recovery, permission changes, payments, refunds, and data exports should not be fully autonomous by default.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Test for prompt injection and social engineering&lt;br&gt;
Do not just test happy paths. Test manipulation attempts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scan AI inputs and outputs in real time&lt;br&gt;
Sensitive data, malicious instructions, credential exposure, and unsafe actions should be detected before they move further.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  The real takeaway
&lt;/h2&gt;

&lt;p&gt;This Meta incident is not only about Instagram.&lt;/p&gt;

&lt;p&gt;It is about where AI is going next.&lt;/p&gt;

&lt;p&gt;AI is moving from answering questions to taking actions. That changes the risk model completely.&lt;/p&gt;

&lt;p&gt;When AI only generates text, a bad answer is embarrassing.&lt;/p&gt;

&lt;p&gt;When AI controls workflows, a bad answer becomes an account takeover, data leak, payment fraud, or compliance failure.&lt;/p&gt;

&lt;p&gt;That is the shift every engineering team needs to understand.&lt;/p&gt;

&lt;p&gt;AI automation is powerful. But without security controls around it, you are not just scaling support.&lt;/p&gt;

&lt;p&gt;You are scaling trust in a system that attackers are already learning how to manipulate.&lt;/p&gt;

</description>
      <category>meta</category>
      <category>ai</category>
      <category>security</category>
      <category>cybersecurity</category>
    </item>
    <item>
      <title>Google Patched an Actively Exploited Android Flaw. Enterprises Should Treat This as an AI Security Problem Too</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Wed, 03 Jun 2026 12:17:17 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/google-patched-an-actively-exploited-android-flaw-enterprises-should-treat-this-as-an-ai-security-ohj</link>
      <guid>https://dev.to/sunychoudhary/google-patched-an-actively-exploited-android-flaw-enterprises-should-treat-this-as-an-ai-security-ohj</guid>
      <description>&lt;p&gt;Google recently patched an actively exploited Android flaw affecting millions of devices.&lt;/p&gt;

&lt;p&gt;Most teams will read that sentence and treat it as a mobile patching issue.&lt;/p&gt;

&lt;p&gt;That is not wrong.&lt;/p&gt;

&lt;p&gt;But it is incomplete.&lt;/p&gt;

&lt;p&gt;In 2026, a compromised mobile device is not just a device problem. It can become an AI security problem too.&lt;/p&gt;

&lt;p&gt;Employees use Android phones for work email, SaaS dashboards, MFA approvals, browser sessions, file access, chat apps, and AI tools. They paste work data into ChatGPT, Gemini, Claude, Copilot, and other AI platforms. They approve logins from mobile devices. They read internal documents on mobile browsers. They move between corporate apps and personal tools all day.&lt;/p&gt;

&lt;p&gt;So when an Android vulnerability is actively exploited, security teams should not only ask:&lt;/p&gt;

&lt;p&gt;“Did we patch the device?”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;They should also ask:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;“What enterprise data, AI activity, SaaS access, and prompt workflows could that device expose if compromised?”&lt;/p&gt;

&lt;p&gt;That is the part most organizations still miss.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Google Patched
&lt;/h2&gt;

&lt;p&gt;According to Security Affairs, Google released its June 2026 Android security updates, fixing 124 vulnerabilities across Android.&lt;/p&gt;

&lt;p&gt;The most important one is CVE-2025-48595.&lt;/p&gt;

&lt;p&gt;It is an Android Framework vulnerability with a CVSS score of 8.4. It affects Android 14, Android 15, Android 16, and Android 16 QPR2.&lt;/p&gt;

&lt;p&gt;Google said there are indications that CVE-2025-48595 may be under limited, targeted exploitation.&lt;/p&gt;

&lt;p&gt;The issue is caused by an integer overflow that can lead to code execution and privilege escalation on a vulnerable device. That matters because privilege escalation can allow an attacker to move from limited access to deeper control over the system.&lt;/p&gt;

&lt;p&gt;Security Affairs also noted that Google has not publicly disclosed the attacker, delivery method, or victim count.&lt;/p&gt;

&lt;p&gt;That lack of detail is normal in actively exploited vulnerability cases. But it also means enterprises should not wait for perfect information before acting.&lt;/p&gt;

&lt;p&gt;If a vulnerability is already being exploited, the patch window is not theoretical anymore.&lt;/p&gt;

&lt;p&gt;It is live.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Privilege Escalation Matters
&lt;/h2&gt;

&lt;p&gt;Privilege escalation is not always the first step in an attack.&lt;/p&gt;

&lt;p&gt;Often, it is the step that makes the first foothold dangerous.&lt;/p&gt;

&lt;p&gt;A malicious app, phishing link, exploit chain, or compromised device session may start with limited access. But if privilege escalation succeeds, the attacker may gain deeper access to device resources, app data, tokens, files, clipboard activity, browser sessions, or enterprise applications.&lt;/p&gt;

&lt;p&gt;To be clear, there is no public evidence that CVE-2025-48595 is being used to steal AI prompts or SaaS data.&lt;/p&gt;

&lt;p&gt;That is not the claim.&lt;/p&gt;

&lt;p&gt;The real point is that a flaw like this can become part of a broader attack chain.&lt;/p&gt;

&lt;p&gt;And that chain can reach enterprise AI activity if the compromised device is used for AI tools, work data, SaaS apps, authentication, and browser-based workflows.&lt;/p&gt;

&lt;p&gt;This is why mobile endpoint security now overlaps with AI security.&lt;/p&gt;

&lt;p&gt;Not because the vulnerability itself is an AI flaw.&lt;/p&gt;

&lt;p&gt;But because the device is where enterprise data meets AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Becomes an AI Security Problem
&lt;/h2&gt;

&lt;p&gt;AI adoption has changed the value of endpoint compromise.&lt;/p&gt;

&lt;p&gt;A few years ago, a compromised phone might expose email, files, contacts, or login sessions.&lt;/p&gt;

&lt;p&gt;That was already serious.&lt;/p&gt;

&lt;p&gt;Now add AI usage into the same environment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Employees may use mobile devices to:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Access ChatGPT, Gemini, Claude, Copilot, or Perplexity&lt;/p&gt;

&lt;p&gt;Paste customer data into AI tools&lt;/p&gt;

&lt;p&gt;Summarize internal documents&lt;/p&gt;

&lt;p&gt;Draft sales emails from CRM notes&lt;/p&gt;

&lt;p&gt;Analyze screenshots or files&lt;/p&gt;

&lt;p&gt;Use AI through mobile browsers&lt;/p&gt;

&lt;p&gt;Approve logins through MFA apps&lt;/p&gt;

&lt;p&gt;Open SaaS dashboards from unmanaged networks&lt;/p&gt;

&lt;p&gt;Move data between personal and corporate accounts&lt;/p&gt;

&lt;p&gt;This creates a wider risk surface.&lt;/p&gt;

&lt;p&gt;Employees now use Android devices to access AI tools, SaaS apps, browser sessions, work email, and authentication workflows. That means mobile compromise can expose more than files. It can expose the data employees send into AI systems.&lt;/p&gt;

&lt;p&gt;This is why &lt;a href="https://www.langprotect.com/blog/prevent-data-leakage-enterprise-ai-tools?utm_source=ai_data_leak_preventation&amp;amp;utm_medium=Google_Patch_Devto" rel="noopener noreferrer"&gt;AI data leakage prevention&lt;/a&gt; needs to include the endpoint layer, not just the AI model or chatbot interface.&lt;/p&gt;

&lt;p&gt;The risk is not only “someone pasted sensitive data into AI.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The risk is:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Who pasted it?&lt;/p&gt;

&lt;p&gt;From which device?&lt;/p&gt;

&lt;p&gt;Was the device managed?&lt;/p&gt;

&lt;p&gt;Was the session protected?&lt;/p&gt;

&lt;p&gt;Was the data classified before submission?&lt;/p&gt;

&lt;p&gt;Was the AI tool approved?&lt;/p&gt;

&lt;p&gt;Was the prompt logged?&lt;/p&gt;

&lt;p&gt;Was the action blocked, warned, or allowed?&lt;/p&gt;

&lt;p&gt;Most organizations cannot answer those questions clearly today.&lt;/p&gt;

&lt;p&gt;That is the AI security gap.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Patch Gap Is the Real Enterprise Risk
&lt;/h2&gt;

&lt;p&gt;Android patching has a known structural problem.&lt;/p&gt;

&lt;p&gt;Pixel devices usually receive updates quickly. Other manufacturers often require additional testing, customization, and carrier or OEM rollout time before patches reach users.&lt;/p&gt;

&lt;p&gt;Security Affairs pointed out that this fragmented update model can leave some users exposed for weeks or months after a vulnerability becomes public.&lt;/p&gt;

&lt;p&gt;Attackers understand this.&lt;/p&gt;

&lt;p&gt;Once a patch is released, defenders get a fix. But attackers also get a signal. They can reverse engineer patches, identify vulnerable code paths, and hunt for devices that have not yet updated.&lt;/p&gt;

&lt;p&gt;For enterprises, the risk is not just whether Google released the patch.&lt;/p&gt;

&lt;p&gt;The real risk is whether every employee device that touches business systems has actually received it.&lt;/p&gt;

&lt;p&gt;This is where security posture becomes messy.&lt;/p&gt;

&lt;p&gt;Some devices are corporate-managed.&lt;/p&gt;

&lt;p&gt;Some are BYOD.&lt;/p&gt;

&lt;p&gt;Some access work apps through personal profiles.&lt;/p&gt;

&lt;p&gt;Some have outdated OS versions.&lt;/p&gt;

&lt;p&gt;Some use unmanaged browsers.&lt;/p&gt;

&lt;p&gt;Some access AI tools through personal accounts.&lt;/p&gt;

&lt;p&gt;Some are invisible to IT.&lt;/p&gt;

&lt;p&gt;That last part matters most.&lt;/p&gt;

&lt;p&gt;You cannot protect what you cannot see.&lt;/p&gt;

&lt;h2&gt;
  
  
  Mobile Devices Are Becoming Shadow AI Gateways
&lt;/h2&gt;

&lt;p&gt;Shadow AI is usually discussed as a web or SaaS issue.&lt;/p&gt;

&lt;p&gt;Employees use unapproved AI tools. They paste sensitive data. They create personal accounts. Security teams lose visibility.&lt;/p&gt;

&lt;p&gt;But mobile devices make the problem harder.&lt;/p&gt;

&lt;p&gt;An employee may use an approved AI tool on a managed laptop during the day, then use a personal Android phone at night to continue the same work. They may paste notes into a mobile AI app. They may upload a screenshot. They may summarize customer information. They may ask AI to rewrite confidential internal content.&lt;/p&gt;

&lt;p&gt;From the employee’s perspective, this feels harmless.&lt;/p&gt;

&lt;p&gt;From a security perspective, it creates a blind spot.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The organization may have no visibility into:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Which AI tools are being used&lt;/p&gt;

&lt;p&gt;Which accounts are being used&lt;/p&gt;

&lt;p&gt;Which data is being pasted&lt;/p&gt;

&lt;p&gt;Whether prompts contain PII, credentials, source code, or financial data&lt;/p&gt;

&lt;p&gt;Whether the activity happens from a patched or unpatched device&lt;/p&gt;

&lt;p&gt;Whether the AI tool is approved or unmanaged&lt;/p&gt;

&lt;p&gt;This is why &lt;a href="https://www.langprotect.com/blog/what-is-shadow-ai?utm_source=what_is_shadow_ai&amp;amp;utm_medium=Google_Patch_Devto" rel="noopener noreferrer"&gt;Shadow AI discovery&lt;/a&gt; is becoming a real requirement, not just a governance nice-to-have.&lt;/p&gt;

&lt;p&gt;The Android flaw is a reminder of the same bigger issue.&lt;/p&gt;

&lt;p&gt;Enterprise data does not only move through managed laptops anymore.&lt;/p&gt;

&lt;p&gt;It moves through browsers, mobile devices, AI tools, personal accounts, copied text, files, screenshots, chats, and prompts.&lt;/p&gt;

&lt;p&gt;If security teams only monitor the old paths, they will miss the new ones.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Traditional Endpoint Thinking Is Not Enough
&lt;/h2&gt;

&lt;p&gt;Traditional endpoint security focuses on device health, malware detection, patch status, and access control.&lt;/p&gt;

&lt;p&gt;Those still matter.&lt;/p&gt;

&lt;p&gt;But AI workflows introduce a different question:&lt;/p&gt;

&lt;p&gt;What data is leaving the endpoint through AI interactions?&lt;/p&gt;

&lt;p&gt;A device can be patched and still leak data into AI tools.&lt;/p&gt;

&lt;p&gt;A user can pass MFA and still paste confidential information into an unmanaged chatbot.&lt;/p&gt;

&lt;p&gt;A browser session can be legitimate and still move sensitive content into an unapproved AI assistant.&lt;/p&gt;

&lt;p&gt;That is why endpoint security and AI security need to work together.&lt;/p&gt;

&lt;p&gt;Security teams need to know not only whether the device is secure, but also what the user is doing with enterprise data once access is granted.&lt;/p&gt;

&lt;p&gt;That means AI security cannot start at the model.&lt;/p&gt;

&lt;p&gt;It has to start at the point of interaction.&lt;/p&gt;

&lt;p&gt;Prompt fields.&lt;/p&gt;

&lt;p&gt;File uploads.&lt;/p&gt;

&lt;p&gt;Copy paste actions.&lt;/p&gt;

&lt;p&gt;Browser sessions.&lt;/p&gt;

&lt;p&gt;Mobile AI apps.&lt;/p&gt;

&lt;p&gt;SaaS workflows.&lt;/p&gt;

&lt;p&gt;Agent actions.&lt;/p&gt;

&lt;p&gt;Anywhere enterprise data touches AI, security needs visibility and enforcement.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Security Teams Should Do Now
&lt;/h2&gt;

&lt;p&gt;The first step is obvious.&lt;/p&gt;

&lt;p&gt;Patch Android devices quickly.&lt;/p&gt;

&lt;p&gt;But stopping there is lazy security.&lt;/p&gt;

&lt;p&gt;Enterprises should treat this kind of vulnerability as a trigger to review mobile AI exposure more broadly.&lt;/p&gt;

&lt;p&gt;Here is what security teams should do.&lt;/p&gt;

&lt;p&gt;First, identify which Android devices can access work email, SaaS apps, cloud storage, AI tools, and authentication workflows.&lt;/p&gt;

&lt;p&gt;Second, prioritize high-risk users. Executives, engineers, finance teams, legal teams, security teams, HR, and anyone with access to customer data or source code should be patched and checked first.&lt;/p&gt;

&lt;p&gt;Third, enforce device posture checks. Sensitive apps should not be accessible from outdated or non-compliant devices.&lt;/p&gt;

&lt;p&gt;Fourth, review BYOD access. If personal devices can access AI tools and enterprise SaaS systems, the organization needs clear policy and visibility.&lt;/p&gt;

&lt;p&gt;Fifth, monitor AI prompt and file flows. Security teams need visibility into what AI tools employees use, what data they paste, and whether that activity happens through managed or unmanaged devices.&lt;/p&gt;

&lt;p&gt;This is where an &lt;a href="https://www.langprotect.com/guardia-for-employees?utm_source=Guardia&amp;amp;utm_medium=Google_Patch_Devto" rel="noopener noreferrer"&gt;enterprise AI security firewall&lt;/a&gt; becomes useful because it gives teams a control layer around AI interactions, not just network access.&lt;/p&gt;

&lt;p&gt;Sixth, classify sensitive data before it enters AI tools. PII, PHI, credentials, secrets, source code, financial data, and internal documents should be detected before submission.&lt;/p&gt;

&lt;p&gt;Seventh, log AI activity for audit readiness. If a sensitive prompt is blocked or allowed, there should be a record.&lt;/p&gt;

&lt;p&gt;Eighth, align AI usage policies with endpoint policy. AI governance cannot sit in a PDF while device access remains unmanaged.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The practical goal is simple:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Do not let an unpatched or unmanaged endpoint become the easiest path into enterprise AI data.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Lesson From CVE-2025-48595
&lt;/h2&gt;

&lt;p&gt;CVE-2025-48595 is an Android vulnerability.&lt;/p&gt;

&lt;p&gt;But the lesson goes beyond Android.&lt;/p&gt;

&lt;p&gt;Every modern enterprise runs on connected workflows.&lt;/p&gt;

&lt;p&gt;A mobile device connects to SaaS.&lt;/p&gt;

&lt;p&gt;SaaS connects to identity.&lt;/p&gt;

&lt;p&gt;Identity connects to MFA.&lt;/p&gt;

&lt;p&gt;MFA connects to account recovery.&lt;/p&gt;

&lt;p&gt;Browsers connect to AI tools.&lt;/p&gt;

&lt;p&gt;AI tools receive prompts, files, screenshots, code, notes, and customer data.&lt;/p&gt;

&lt;p&gt;That means security teams cannot treat mobile, SaaS, identity, and AI as separate risk categories anymore.&lt;/p&gt;

&lt;p&gt;Attackers do not care about your internal categories.&lt;/p&gt;

&lt;p&gt;They care about paths.&lt;/p&gt;

&lt;p&gt;A compromised endpoint is a path.&lt;/p&gt;

&lt;p&gt;A personal AI account is a path.&lt;/p&gt;

&lt;p&gt;A pasted customer list is a path.&lt;/p&gt;

&lt;p&gt;An unmonitored prompt is a path.&lt;/p&gt;

&lt;p&gt;An unpatched Android device used for work is a path.&lt;/p&gt;

&lt;p&gt;The question is whether your security program can see the path before it becomes an incident.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Security Starts Before the Prompt
&lt;/h2&gt;

&lt;p&gt;Many teams still think AI security starts when a prompt reaches the model.&lt;/p&gt;

&lt;p&gt;That is too late.&lt;/p&gt;

&lt;p&gt;AI security starts earlier.&lt;/p&gt;

&lt;p&gt;It starts with the device.&lt;/p&gt;

&lt;p&gt;The browser.&lt;/p&gt;

&lt;p&gt;The identity session.&lt;/p&gt;

&lt;p&gt;The file.&lt;/p&gt;

&lt;p&gt;The clipboard.&lt;/p&gt;

&lt;p&gt;The app.&lt;/p&gt;

&lt;p&gt;The account.&lt;/p&gt;

&lt;p&gt;The user action.&lt;/p&gt;

&lt;p&gt;By the time sensitive data reaches an AI tool, the organization has already lost part of the control battle.&lt;/p&gt;

&lt;p&gt;That does not mean AI adoption should be blocked.&lt;/p&gt;

&lt;p&gt;Blocking AI usually pushes employees into worse behavior. They use personal accounts, personal devices, and unapproved apps. That creates even less visibility.&lt;/p&gt;

&lt;p&gt;The better answer is controlled enablement.&lt;/p&gt;

&lt;p&gt;Let employees use AI.&lt;/p&gt;

&lt;p&gt;But enforce security where data moves.&lt;/p&gt;

&lt;p&gt;Monitor prompt fields.&lt;/p&gt;

&lt;p&gt;Classify sensitive content.&lt;/p&gt;

&lt;p&gt;Warn or block risky submissions.&lt;/p&gt;

&lt;p&gt;Detect unmanaged AI tools.&lt;/p&gt;

&lt;p&gt;Log activity.&lt;/p&gt;

&lt;p&gt;Tie AI access to device posture.&lt;/p&gt;

&lt;p&gt;Treat mobile AI usage as part of the enterprise security surface.&lt;/p&gt;

&lt;p&gt;That is how AI adoption becomes safer without killing productivity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Takeaway
&lt;/h2&gt;

&lt;p&gt;Google patched an actively exploited Android flaw.&lt;/p&gt;

&lt;p&gt;Security teams should patch fast.&lt;/p&gt;

&lt;p&gt;But they should also zoom out.&lt;/p&gt;

&lt;p&gt;The bigger issue is that employee devices are now connected to AI workflows, SaaS apps, identity systems, and sensitive enterprise data. A mobile endpoint compromise can become more than a device incident. It can become a data leakage incident, an identity incident, or an AI governance failure.&lt;/p&gt;

&lt;p&gt;AI security does not start at the model.&lt;/p&gt;

&lt;p&gt;It starts wherever enterprise data touches AI.&lt;/p&gt;

&lt;p&gt;In many organizations, that place is now the employee’s phone.&lt;/p&gt;

</description>
      <category>security</category>
      <category>android</category>
      <category>cybersecurity</category>
      <category>ai</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Wed, 27 May 2026 08:00:50 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/-545p</link>
      <guid>https://dev.to/sunychoudhary/-545p</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje" class="crayons-story__hidden-navigation-link"&gt;AI Adoption Security: The Missing Layer in Every Enterprise Security Stack&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/sunychoudhary" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" alt="sunychoudhary profile" class="crayons-avatar__image"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/sunychoudhary" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Suny Choudhary
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Suny Choudhary
                
              
              &lt;div id="story-author-preview-content-3762448" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/sunychoudhary" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" class="crayons-avatar__image" alt=""&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Suny Choudhary&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;May 27&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje" id="article-link-3762448"&gt;
          AI Adoption Security: The Missing Layer in Every Enterprise Security Stack
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/cybersecurity"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;cybersecurity&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/security"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;security&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="18" height="18"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;1&lt;span class="hidden s:inline"&gt;&amp;nbsp;reaction&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            3 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
    </item>
    <item>
      <title>AI Adoption Security: The Missing Layer in Every Enterprise Security Stack</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Wed, 27 May 2026 08:00:44 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje</link>
      <guid>https://dev.to/sunychoudhary/ai-adoption-security-the-missing-layer-in-every-enterprise-security-stack-jje</guid>
      <description>&lt;p&gt;Most enterprise security stacks were designed around predictable infrastructure. DLP monitors files, SIEM tracks logs, IAM governs identities, and endpoint tools inspect devices and applications. &lt;/p&gt;

&lt;p&gt;AI systems change how all of those layers behave. Prompts, retrieval pipelines, copilots, plugins, memory layers, and AI agents introduce entirely new operational workflows inside enterprise environments. Sensitive data now moves conversationally, context is retrieved dynamically, and AI systems increasingly make decisions or trigger downstream actions during runtime. &lt;/p&gt;

&lt;p&gt;That is why enterprise AI adoption security is becoming a separate security challenge rather than simply an extension of existing controls. The issue is not that current enterprise security tooling is obsolete. It is that most of it was never designed to observe AI interaction layers deeply. &lt;/p&gt;

&lt;p&gt;And as AI adoption accelerates across organizations, that visibility gap is becoming increasingly difficult to ignore. &lt;/p&gt;

&lt;h2&gt;
  
  
  AI Introduced A New Runtime Layer Most Security Tools Don’t Inspect
&lt;/h2&gt;

&lt;p&gt;AI systems introduced a runtime interaction layer that most traditional enterprise controls still inspect only partially. Prompts move through browsers, copilots, retrieval systems, APIs, plugins, and orchestration layers continuously during execution. &lt;/p&gt;

&lt;p&gt;That changes how enterprise data moves operationally. Sensitive information is no longer limited to documents or structured transfers. It now flows through prompts, contextual memory, AI-generated outputs, and connected workflow systems that interact dynamically during runtime. In many environments, these interactions happen invisibly from the perspective of traditional monitoring tools. &lt;/p&gt;

&lt;p&gt;This is why modern AI security architecture increasingly focuses on runtime visibility rather than static infrastructure inspection alone. Organizations need visibility into how prompts move, what context gets retrieved, which systems AI interacts with, and where enterprise data travels after inference begins. &lt;/p&gt;

&lt;p&gt;That is also where frameworks like &lt;a href="https://www.langprotect.com/blog/responsible-ai-security-enterprise-llm-deployment?utm_source=devto&amp;amp;utm_medium=Sahil" rel="noopener noreferrer"&gt;practical enterprise AI security framework&lt;/a&gt;) become important. AI adoption security is no longer just about controlling access to AI tools. It is about governing the operational interaction layer forming around them. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why Existing Enterprise Controls Miss AI Risk Structurally
&lt;/h2&gt;

&lt;p&gt;The problem is not that enterprise security tools are poorly designed. The problem is that AI systems changed the operational model underneath them. &lt;/p&gt;

&lt;p&gt;Traditional controls were built around infrastructure events, while AI systems operate through contextual interactions happening dynamically during runtime. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In practice:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DLP monitors files, not prompts
&lt;/li&gt;
&lt;li&gt;SIEM tracks logs, not conversational reasoning
&lt;/li&gt;
&lt;li&gt;IAM governs identities, not autonomous AI actions
&lt;/li&gt;
&lt;li&gt;CASB sees applications, not AI interaction flows&lt;/li&gt;
&lt;li&gt;Existing controls rarely inspect retrieval-layer context movement
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is also why discussions around &lt;a href="https://www.langprotect.com/blog/ai-security-layer-beyond-traditional-controls?utm_source=devto&amp;amp;utm_medium=Sahil" rel="noopener noreferrer"&gt;why traditional controls fail at the AI layer&lt;/a&gt; are becoming increasingly relevant. AI systems continuously retrieve context, trigger workflows, interact with external tools, and move enterprise data across operational layers that many traditional controls cannot fully observe. &lt;/p&gt;

&lt;p&gt;That creates entirely new enterprise AI governance controls challenges, especially once AI systems become deeply integrated into everyday enterprise workflows. &lt;/p&gt;

&lt;h2&gt;
  
  
  The Missing Layer Is Operational AI Visibility And Governance
&lt;/h2&gt;

&lt;p&gt;The missing layer in most enterprise environments is operational AI governance during runtime itself. Organizations already monitor infrastructure heavily. What they often lack is visibility into how AI systems interact with enterprise data while workflows are actively executing. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That requires controls around:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Prompt and response inspection &lt;br&gt;
Monitor sensitive information before prompts reach models and before outputs move into workflows or downstream systems.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Context governance &lt;br&gt;
Control how retrieval systems, memory layers, plugins, and AI agents access enterprise context during execution.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Runtime policy enforcement &lt;br&gt;
Apply security and governance controls dynamically while AI interactions are happening instead of relying only on static policies.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Continuous AI activity logging &lt;br&gt;
Create visibility into prompts, outputs, tool calls, and cross-system AI interactions operationally.  &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is also why resources like complete enterprise guide to AI adoption security are becoming more important. AI security increasingly depends on governing interactions, context movement, and runtime workflows rather than only protecting infrastructure boundaries. &lt;/p&gt;

&lt;h2&gt;
  
  
  AI Adoption Security Will Become A Core Enterprise Security Layer
&lt;/h2&gt;

&lt;p&gt;AI systems are no longer experimental tooling sitting outside enterprise operations. They are increasingly becoming embedded into customer workflows, internal productivity systems, decision-making pipelines, and operational infrastructure itself. &lt;/p&gt;

&lt;p&gt;That shift is why enterprise AI adoption security is becoming a foundational security layer rather than an optional add-on. Organizations are realizing that traditional controls still matter, but they are no longer sufficient on their own once AI systems begin interacting dynamically with enterprise data and workflows. &lt;/p&gt;

&lt;p&gt;The future enterprise security stack will not replace DLP, SIEM, IAM, or existing governance systems. It will add an AI interaction and governance layer above them, one focused on prompts, context movement, runtime behavior, retrieval systems, and AI-driven operational workflows. &lt;/p&gt;

&lt;p&gt;Because the missing layer in modern enterprise security is no longer visibility into infrastructure alone. It is visibility into how AI systems interact, retrieve context, and make decisions operationally. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>cybersecurity</category>
      <category>security</category>
      <category>devops</category>
    </item>
    <item>
      <title>AI governance is not just a policy problem anymore.

CISOs now need runtime visibility, prompt inspection, enforcement, context governance, and audit logs before AI adoption gets ahead of control.

Shared a practical breakdown here.</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Thu, 21 May 2026 11:04:39 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/ai-governance-is-not-just-a-policy-problem-anymore-cisos-now-need-runtime-visibility-prompt-3obe</link>
      <guid>https://dev.to/sunychoudhary/ai-governance-is-not-just-a-policy-problem-anymore-cisos-now-need-runtime-visibility-prompt-3obe</guid>
      <description>&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104" class="crayons-story__hidden-navigation-link"&gt;The 5 AI Adoption Security Controls Every CISO Needs Before Q3 2026&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;
          &lt;a class="crayons-logo crayons-logo--l" href="/langprotect"&gt;
            &lt;img alt="Langprotect logo" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F12577%2Fd7a6c2bc-43cd-46b4-a5b4-4f7fde2f0100.png" class="crayons-logo__image" width="800" height="800"&gt;
          &lt;/a&gt;

          &lt;a href="/sunychoudhary" class="crayons-avatar  crayons-avatar--s absolute -right-2 -bottom-2 border-solid border-2 border-base-inverted  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" alt="sunychoudhary profile" class="crayons-avatar__image" width="357" height="400"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/sunychoudhary" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Suny Choudhary
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Suny Choudhary
                
              
              &lt;div id="story-author-preview-content-3716879" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/sunychoudhary" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3796155%2F2589848c-8a3a-40c4-838b-e243c993bc16.jpg" class="crayons-avatar__image" alt="" width="357" height="400"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Suny Choudhary&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;span&gt;
              &lt;span class="crayons-story__tertiary fw-normal"&gt; for &lt;/span&gt;&lt;a href="/langprotect" class="crayons-story__secondary fw-medium"&gt;Langprotect&lt;/a&gt;
            &lt;/span&gt;
          &lt;/div&gt;
          &lt;a href="https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;May 21&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104" id="article-link-3716879"&gt;
          The 5 AI Adoption Security Controls Every CISO Needs Before Q3 2026
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/cybersecurity"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;cybersecurity&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/security"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;security&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devops"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devops&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;1&lt;span class="hidden s:inline"&gt;&amp;nbsp;reaction&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            4 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


</description>
      <category>ai</category>
      <category>cybersecurity</category>
      <category>management</category>
      <category>security</category>
    </item>
    <item>
      <title>The 5 AI Adoption Security Controls Every CISO Needs Before Q3 2026</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Thu, 21 May 2026 11:03:52 +0000</pubDate>
      <link>https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104</link>
      <guid>https://dev.to/langprotect/the-5-ai-adoption-security-controls-every-ciso-needs-before-q3-2026-5104</guid>
      <description>&lt;p&gt;Enterprise AI adoption is already operational. Copilots, AI assistants, workflow automations, and internal agents are now embedded into daily workflows across most organizations. &lt;/p&gt;

&lt;p&gt;The problem is that governance has not kept pace. Most enterprises are still writing policies and inventorying tools while employees continue integrating AI into operational systems faster than security teams can realistically monitor. By the time governance discussions happen, AI usage is often already widespread across the organization. &lt;/p&gt;

&lt;p&gt;That is why enterprise AI security controls are becoming increasingly important heading into Q3 2026 and the EU AI Act enforcement timeline. The challenge is no longer whether enterprises will adopt AI. It is whether they can build enough visibility and operational control around AI usage before regulatory expectations catch up. &lt;/p&gt;

&lt;h2&gt;
  
  
  Control #1 and #2: Visibility and Prompt-Level Inspection
&lt;/h2&gt;

&lt;p&gt;The first control CISOs need is visibility. Organizations cannot govern AI systems they cannot see. That means understanding which AI tools employees use, which workflows interact with AI systems, and how enterprise data moves during execution. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;In practice, this requires visibility into: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Browser-based AI usage
&lt;/li&gt;
&lt;li&gt;AI plugins and connected SaaS tools
&lt;/li&gt;
&lt;li&gt;Internal AI workflows and copilots
&lt;/li&gt;
&lt;li&gt;Prompt and response activity across systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where many AI governance controls still struggle. Traditional inventories were built for applications and infrastructure, not dynamic AI interactions happening across operational workflows. &lt;/p&gt;

&lt;p&gt;The second control is prompt-level inspection. Sensitive information increasingly moves through conversational workflows rather than traditional files or databases. Enterprises need runtime inspection before prompts, uploads, or outputs reach the model itself. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;This includes controls around: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sensitive data detection
&lt;/li&gt;
&lt;li&gt;Prompt injection inspection
&lt;/li&gt;
&lt;li&gt;Output validation
&lt;/li&gt;
&lt;li&gt;Unauthorized context sharing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without these two controls, organizations lose visibility at the exact layer where most AI operational risk now exists. &lt;/p&gt;

&lt;h2&gt;
  
  
  Control #3 and #4: Runtime Enforcement and Context Governance
&lt;/h2&gt;

&lt;p&gt;Visibility alone is not enough. Organizations also need controls that actively govern AI behavior during execution, not just after deployment. This is where enterprise AI risk management becomes operational rather than policy-driven, and also where organizations begin realizing &lt;a href="https://www.langprotect.com/blog/ai-security-layer-beyond-traditional-controls?utm_source=DevTo&amp;amp;utm_medium=Sahil" rel="noopener noreferrer"&gt;why existing security controls fail AI systems&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;The third control is runtime enforcement. AI systems should be monitored and controlled while prompts, outputs, and tool calls are actively happening. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;This includes: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sensitive data filtering
&lt;/li&gt;
&lt;li&gt;Prompt injection detection
&lt;/li&gt;
&lt;li&gt;Output moderation
&lt;/li&gt;
&lt;li&gt;Tool-call restrictions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The fourth control is context governance. Modern AI systems continuously retrieve, retain, and reuse information across workflows, which creates entirely new data exposure paths. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Organizations need governance around:&lt;/strong&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Session memory retention
&lt;/li&gt;
&lt;li&gt;Retrieval-layer access
&lt;/li&gt;
&lt;li&gt;Plugin context boundaries
&lt;/li&gt;
&lt;li&gt;Context expiration policies&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most enterprise AI risk now emerges from how context moves between systems, not just from the model itself. &lt;/p&gt;

&lt;p&gt;Control #5: Continuous Logging and Auditability &lt;/p&gt;

&lt;p&gt;The fifth control is continuous logging and auditability. As AI systems become operational infrastructure, enterprises need a reliable record of how AI interactions occur across workflows, systems, and users. This is becoming a foundational part of any effective &lt;a href="https://www.langprotect.com/blog/responsible-ai-security-enterprise-llm-deployment?utm_source=DevTo&amp;amp;utm_medium=Sahil" rel="noopener noreferrer"&gt;enterprise AI security framework&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;This requires visibility into: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prompt and response activity
&lt;/li&gt;
&lt;li&gt;Tool calls and downstream actions
&lt;/li&gt;
&lt;li&gt;Context retention and retrieval behavior
&lt;/li&gt;
&lt;li&gt;Cross-system AI interactions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Operational logging is becoming critical not just for investigations, but for governance and regulatory readiness as well. Organizations increasingly need evidence showing how AI systems handled data, what decisions were influenced, and which controls were active during execution. &lt;/p&gt;

&lt;p&gt;Without continuous auditability, AI governance becomes difficult to prove operationally, especially as enterprise AI environments grow more dynamic and interconnected. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why Traditional Security And Governance Models Break Down With AI
&lt;/h2&gt;

&lt;p&gt;Traditional security models were designed around predictable systems. Applications had defined behaviors, users had scoped permissions, and data movement followed relatively structured paths. AI systems operate very differently. &lt;/p&gt;

&lt;p&gt;Prompts dynamically change context, AI agents interact with external tools, and retrieval systems continuously pull information from multiple sources during execution. A single interaction may involve APIs, vector databases, plugins, logging systems, and downstream workflows simultaneously. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;This creates several governance gaps: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Static policies struggle to govern dynamic AI behavior
&lt;/li&gt;
&lt;li&gt;Traditional DLP tools miss conversational data movement
&lt;/li&gt;
&lt;li&gt;Existing IAM systems were not built for autonomous AI actions
&lt;/li&gt;
&lt;li&gt;Security reviews often stop at deployment instead of runtime behavior&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is why AI governance is increasingly shifting from documentation-driven processes to operational control layers. The challenge is no longer simply approving AI systems. It is continuously governing how they behave after deployment across real enterprise workflows. &lt;/p&gt;

&lt;h2&gt;
  
  
  AI Governance Will Become Operational, Not Policy-Based
&lt;/h2&gt;

&lt;p&gt;Most organizations already have AI policies. Very few have operational AI governance. &lt;/p&gt;

&lt;p&gt;That distinction will become increasingly important as AI adoption scales and regulatory expectations tighten heading into Q3 2026. Policies can define acceptable usage, but they cannot control prompts, monitor context movement, inspect outputs, or govern runtime behavior across connected AI systems. &lt;/p&gt;

&lt;p&gt;That is why enterprise AI security controls are becoming foundational to enterprise AI adoption itself. The organizations best prepared for the next phase of AI governance will not necessarily be the ones with the longest policy documents. They will be the ones with visibility, enforcement, logging, and runtime controls already embedded into their AI infrastructure. &lt;/p&gt;

&lt;p&gt;Because AI adoption is already happening. The real question is whether operational governance will arrive before regulators do. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>cybersecurity</category>
      <category>security</category>
      <category>devops</category>
    </item>
    <item>
      <title>Why OAuth Tokens Are Becoming the New API Keys for Attackers</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Thu, 14 May 2026 09:15:19 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/why-oauth-tokens-are-becoming-the-new-api-keys-for-attackers-10ke</link>
      <guid>https://dev.to/sunychoudhary/why-oauth-tokens-are-becoming-the-new-api-keys-for-attackers-10ke</guid>
      <description>&lt;p&gt;OAuth was originally adopted because it solved a practical problem for developers. It reduced password sharing, simplified third-party authentication, and made integrations easier to manage. Over time, it became the default trust layer for modern SaaS applications, cloud platforms, developer tools, and AI systems. &lt;/p&gt;

&lt;p&gt;What changed is the role these tokens now play inside infrastructure. &lt;/p&gt;

&lt;p&gt;An OAuth token is no longer just an authentication artifact tied to a single application. In modern environments, especially across AI platforms and workflow automation systems, tokens inherit delegated permissions that extend across multiple services simultaneously. A single approved integration can gain access to repositories, internal documentation, messaging systems, cloud storage, customer data, and AI workflows without requiring repeated authentication. &lt;/p&gt;

&lt;p&gt;That shift matters because tokens now behave much more like infrastructure credentials than application credentials. They carry trust between systems automatically, often with broad scopes and long-lived access patterns that developers rarely revisit after onboarding. &lt;/p&gt;

&lt;p&gt;This is becoming increasingly important in conversations around the OAuth supply chain attack AI platform 2026 landscape. Attackers are starting to recognize that compromising a trusted token can be more valuable than exploiting an application directly. Instead of breaking into systems, they can move through existing trust relationships that organizations already approved themselves. &lt;/p&gt;

&lt;p&gt;The result is a security model where access is no longer defined only by who authenticates, but by which systems are connected, what scopes were granted, and how far delegated trust extends once a token enters the ecosystem. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why OAuth Tokens Are More Valuable Than API Keys Now
&lt;/h2&gt;

&lt;p&gt;For years, API keys were considered one of the most sensitive assets inside modern applications. They granted direct access to services, infrastructure, and developer environments. But in many AI-driven systems today, OAuth tokens have become significantly more valuable from an attacker’s perspective. &lt;/p&gt;

&lt;p&gt;The reason is simple: API keys usually grant application-level access. OAuth tokens increasingly grant ecosystem-level access. &lt;/p&gt;

&lt;p&gt;Unlike traditional API keys, OAuth tokens often inherit: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Delegated user permissions&lt;/strong&gt; &lt;br&gt;
Tokens operate with the authority of the user or system that approved them, allowing access to workflows, documents, repositories, and communication systems.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Context-aware access across platforms *&lt;/em&gt;&lt;br&gt;
A single token may connect AI tools to CRMs, cloud storage, Slack workspaces, GitHub repositories, and internal knowledge bases simultaneously.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Dynamic workflow permissions&lt;/strong&gt; &lt;br&gt;
AI systems use tokens to trigger actions automatically, retrieve context, and interact with external services in real time.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Long-lived trust relationships *&lt;/em&gt;&lt;br&gt;
Refresh tokens and persistent integrations can quietly maintain access long after the original onboarding event is forgotten.  &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is what makes an OAuth token compromise so powerful in modern AI ecosystems. Compromising a token no longer means gaining access to one application. It can mean inheriting an entire chain of trusted interactions between connected systems. &lt;/p&gt;

&lt;p&gt;AI platforms amplify this further because they aggregate multiple integrations into a single operational layer. An AI assistant connected to several tools effectively becomes a centralized access point into a much larger environment. &lt;/p&gt;

&lt;h2&gt;
  
  
  How Modern AI Platforms Expand the Attack Surface
&lt;/h2&gt;

&lt;p&gt;Modern AI platforms are built around connectivity. They pull information from multiple systems, trigger workflows automatically, and continuously exchange data between services. That flexibility is what makes them useful, but it also creates a much larger attack surface than most teams initially realize. &lt;/p&gt;

&lt;p&gt;In many environments, AI systems now operate as orchestration layers sitting between several connected platforms at once. Every integration introduces another trust relationship, another token, and another path through which information can move. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;In practice, this often looks like: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tokens reused across multiple integrations
&lt;/li&gt;
&lt;li&gt;Excessive OAuth scopes granted during onboarding
&lt;/li&gt;
&lt;li&gt;Background refresh tokens extending access lifetimes
&lt;/li&gt;
&lt;li&gt;AI agents triggering downstream API calls automatically
&lt;/li&gt;
&lt;li&gt;Plugins inheriting permissions from connected systems
&lt;/li&gt;
&lt;li&gt;Internal context being passed between tools silently
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is why concerns around AI platform supply chain security are growing quickly. AI systems do not operate in isolation. They continuously interact with SaaS platforms, developer tools, cloud services, and internal data sources, often with very little runtime visibility into how those interactions evolve over time. &lt;/p&gt;

&lt;p&gt;That is also where solutions like &lt;a href="https://www.langprotect.com/blog/oauth-supply-chain-attack-ai-vercel-breach?utm_source=Medium&amp;amp;utm_medium=Sahil&amp;amp;utm_campaign=Information" rel="noopener noreferrer"&gt;AI security for applications&lt;/a&gt; become increasingly relevant. The challenge is no longer just securing the application itself, but understanding how AI systems behave across the broader ecosystem of connected services. &lt;/p&gt;

&lt;p&gt;The result is a trust chain that becomes increasingly difficult to visualize. A single compromised token can quietly move through several connected systems without ever looking like a traditional intrusion. &lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem Isn’t OAuth. It’s Invisible Delegated Trust
&lt;/h2&gt;

&lt;p&gt;OAuth itself is not the problem. In fact, the protocol solves many important security and usability challenges. The real issue is how delegated trust behaves once OAuth tokens begin moving across interconnected AI systems and SaaS workflows. &lt;/p&gt;

&lt;p&gt;Most teams understand authentication reasonably well. They know how users log in, how permissions are granted, and how integrations are approved. What becomes much harder to track is how those trust relationships evolve after deployment, especially when AI systems begin interacting with multiple services dynamically. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;In practice, the gaps usually appear in areas like: *&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No runtime visibility into how tokens are actually being used
&lt;/li&gt;
&lt;li&gt;Over-permissioned scopes remaining active long after they are needed
&lt;/li&gt;
&lt;li&gt;Third-party integrations inheriting broader access than expected
&lt;/li&gt;
&lt;li&gt;Token revocation and lifecycle management happening inconsistently&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The problem becomes even more complex in AI environments because integrations are rarely static. AI assistants, plugins, and orchestration systems continuously exchange context and trigger downstream actions automatically. Over time, small trust relationships accumulate into much larger access chains that few teams fully map or audit. &lt;/p&gt;

&lt;p&gt;This is where solutions like &lt;a href="https://www.langprotect.com/?utm_source=Devto&amp;amp;utm_medium=Sahil&amp;amp;utm_campaign=Promotional" rel="noopener noreferrer"&gt;AI security services&lt;/a&gt; become increasingly important. The challenge is no longer limited to authentication itself. It is understanding and governing how delegated trust behaves across systems after access has already been granted. &lt;/p&gt;

&lt;p&gt;Most organizations still evaluate integrations as isolated tools. Attackers increasingly view them as connected trust networks. &lt;/p&gt;

&lt;h2&gt;
  
  
  OAuth Tokens Are Becoming the New Attack Path of AI Infrastructure
&lt;/h2&gt;

&lt;p&gt;OAuth tokens are starting to function less like temporary authentication mechanisms and more like persistent infrastructure credentials. In AI-driven environments, they carry trust across systems automatically, often with access levels that extend far beyond what teams initially intended. As AI platforms become more interconnected, these tokens increasingly sit at the center of how applications, workflows, and services communicate with one another. &lt;/p&gt;

&lt;p&gt;That shift changes how supply chain attacks evolve. Future incidents will likely rely less on exploiting software vulnerabilities directly and more on abusing trusted integrations that already exist inside the environment. A compromised token can quietly inherit permissions, move between connected systems, and access valuable context without triggering the kinds of signals traditional security models were built to detect. &lt;/p&gt;

&lt;p&gt;This is why conversations around the OAuth supply chain attack AI platform 2026 landscape are becoming more important. The attack surface is no longer defined only by code. It is defined by delegated trust, connected workflows, and invisible interaction paths between AI systems and SaaS infrastructure. &lt;/p&gt;

&lt;p&gt;The most dangerous credential in modern AI environments may no longer be the API key. It may be the OAuth token everyone already approved. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>cybersecurity</category>
      <category>oauth</category>
      <category>security</category>
    </item>
    <item>
      <title>How to Implement AI Governance in LLM Systems Without Slowing Development</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Thu, 07 May 2026 10:46:01 +0000</pubDate>
      <link>https://dev.to/sunychoudhary/how-to-implement-ai-governance-in-llm-systems-without-slowing-development-4o17</link>
      <guid>https://dev.to/sunychoudhary/how-to-implement-ai-governance-in-llm-systems-without-slowing-development-4o17</guid>
      <description>&lt;p&gt;Most teams treat governance as something that slows development down. It shows up as extra reviews, stricter controls, and additional steps before anything can go live. Developers see it as friction. Product teams see it as delay. So governance gets pushed to later stages, often after the system is already built. That is where the real problem begins. &lt;/p&gt;

&lt;p&gt;Because governance introduced late is almost always restrictive. It tries to control a system that is already moving fast, already integrated, already in use. At that point, the only way to enforce it is by adding blockers, approvals, and manual checks. Naturally, it feels like it is slowing everything down. &lt;/p&gt;

&lt;p&gt;But that is not a problem with governance itself. It is a problem with how it is implemented. In LLM systems, where behavior changes with every prompt and interaction, governance cannot be something you layer on after development. It has to be part of how the system is designed from the start. When done correctly, governance does not slow teams down. It removes uncertainty. It allows developers to move faster because the system itself enforces what is safe and what is not. &lt;/p&gt;

&lt;p&gt;The tradeoff between speed and governance is not real. It only exists when governance is treated as an afterthought. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why Traditional AI Governance Frameworks Break in LLM Systems
&lt;/h2&gt;

&lt;p&gt;Most existing approaches to an AI governance framework were not designed for how LLM systems behave. &lt;/p&gt;

&lt;p&gt;They are built around predictable systems, where inputs are structured, outputs are constrained, and behavior can be validated at specific checkpoints. Governance, in that model, happens through policy documents, manual reviews, and compliance processes that sit around the system rather than inside it. &lt;/p&gt;

&lt;p&gt;LLM systems do not operate that way. Every interaction is dynamic. Prompts change based on user intent. Context is pulled from multiple sources. Outputs are generated in ways that cannot always be anticipated in advance. This makes it difficult to rely on static rules or one-time validations. The result is a growing gap between governance and execution. &lt;/p&gt;

&lt;p&gt;Policies may define what should happen, but they do not control what actually happens at runtime. A model can process sensitive data, generate unintended outputs, or trigger downstream actions without violating any predefined rule in a way that gets detected. &lt;/p&gt;

&lt;p&gt;This is where governance begins to fail. From a leadership perspective, especially for roles focused on AI security governance at the CISO level, this creates a difficult situation. There is an expectation of control, but no direct visibility into how AI systems are behaving in real time. &lt;/p&gt;

&lt;h2&gt;
  
  
  What a Dev-Friendly LLM Governance Policy Actually Looks Like
&lt;/h2&gt;

&lt;p&gt;A practical LLM governance policy cannot feel like an external approval system. If it interrupts workflows or adds manual steps, developers will either bypass it or delay it. For governance to work in LLM systems, it has to be embedded into how the system already operates. &lt;/p&gt;

&lt;p&gt;That means shifting from rigid controls to adaptive, low-friction mechanisms that run alongside development rather than against it. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In practice, a dev-friendly governance policy looks like this:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prompt-level checks that evaluate inputs before they reach the model, without requiring manual review
&lt;/li&gt;
&lt;li&gt;Output validation that ensures responses are safe before they are returned or reused
&lt;/li&gt;
&lt;li&gt;Context-aware enforcement that adapts based on data sensitivity, user role, and use case
&lt;/li&gt;
&lt;li&gt;Automated policy application so developers define rules once and the system enforces them continuously
&lt;/li&gt;
&lt;li&gt;Minimal friction within workflows, allowing developers to build without waiting on approvals &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to restrict how developers use LLMs. It is to make safe usage the default behavior of the system. &lt;/p&gt;

&lt;p&gt;When governance operates this way, it becomes almost invisible. Developers do not have to think about enforcement because it is already happening in the background. That is what makes it effective. &lt;/p&gt;

&lt;h2&gt;
  
  
  How to Implement Governance Without Slowing Down Development
&lt;/h2&gt;

&lt;p&gt;Implementing governance in LLM systems does not require adding more checkpoints. It requires choosing the right layer to enforce control. &lt;/p&gt;

&lt;p&gt;Most teams try to implement governance at the edges, either before deployment through reviews or after deployment through monitoring. Both approaches introduce delay and still miss what happens during actual usage. The more effective approach is to operate at the interaction layer, where prompts, context, and outputs are continuously flowing. &lt;/p&gt;

&lt;p&gt;This is where governance becomes part of execution instead of a separate process. Rather than relying on manual reviews, teams can introduce real-time inspection of prompts and responses. Policies are defined once and then enforced automatically every time the system is used. This removes the need for constant oversight while still maintaining control over how data is handled and how outputs are generated. &lt;/p&gt;

&lt;p&gt;Integrating governance into existing workflows is also critical. It should fit naturally into development pipelines, APIs, and application layers without requiring teams to change how they build. When governance is embedded this way, it does not interrupt velocity. It supports it. &lt;/p&gt;

&lt;p&gt;This is the shift that approaches like &lt;a href="https://www.langprotect.com/armor-for-ai-apps/?utm_source=Sahil&amp;amp;utm_medium=Medium&amp;amp;utm_campaign=Promotion" rel="noopener noreferrer"&gt;AI security for AI applications&lt;/a&gt; enable. They focus on enforcing governance at runtime, where decisions are actually made, rather than relying on assumptions defined earlier in the process. &lt;/p&gt;

&lt;h2&gt;
  
  
  What Changes When Governance Is Done Right
&lt;/h2&gt;

&lt;p&gt;When an AI governance framework is implemented at the right layer, the impact is immediate. Governance stops feeling like a constraint and starts functioning as an enabler for both development and security. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The difference shows up in how teams build, deploy, and operate LLM systems:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Development cycles move faster because safety checks are automated, not manual
&lt;/li&gt;
&lt;li&gt;Risk is reduced without slowing down experimentation or iteration
&lt;/li&gt;
&lt;li&gt;Developers gain confidence in using real data within controlled boundaries
&lt;/li&gt;
&lt;li&gt;Security teams get visibility into how AI is actually being used
&lt;/li&gt;
&lt;li&gt;Audit readiness improves with clear logs of prompts, decisions, and outputs
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is also where leadership priorities align more clearly. For roles focused on AI security governance at the CISO level, governance is no longer abstract. It becomes measurable, enforceable, and visible across systems. &lt;/p&gt;

&lt;p&gt;Capabilities like &lt;a href="https://www.langprotect.com/?utm_source=Sahil&amp;amp;utm_medium=DevTo&amp;amp;utm_campaign=Information" rel="noopener noreferrer"&gt;AI security services&lt;/a&gt; support this shift by enabling continuous enforcement and visibility, rather than relying on periodic checks or assumptions. &lt;/p&gt;

&lt;p&gt;The outcome is not just better governance. It is a system where development speed and control exist together, without tradeoffs. &lt;/p&gt;

&lt;p&gt;Also Read: &lt;a href="https://www.langprotect.com/blog/ai-governance-requirements-2026?utm_source=Sahil&amp;amp;utm_medium=DevTo&amp;amp;utm_campaign=Information" rel="noopener noreferrer"&gt;What Does AI Governance Actually Require in 2026?&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Governance Should Accelerate, Not Restrict
&lt;/h2&gt;

&lt;p&gt;AI governance is often positioned as a control mechanism, something that limits how systems are built and used. But in LLM environments, that framing does not hold for long. When governance is added late or enforced manually, it creates friction. It slows teams down, introduces delays, and often leads to workarounds. That is why many teams hesitate to implement it early. &lt;/p&gt;

&lt;p&gt;But when governance is designed as part of the system, the outcome changes. It removes uncertainty instead of adding constraints. Developers can move faster because they do not have to constantly question whether something is safe or compliant. Security teams gain visibility without interrupting workflows. Governance becomes something that supports execution, not something that blocks it. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>cybersecurity</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Why Developers Trust AI Code More Than They Should</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Tue, 05 May 2026 09:34:06 +0000</pubDate>
      <link>https://dev.to/langprotect/why-developers-trust-ai-code-more-than-they-should-4igf</link>
      <guid>https://dev.to/langprotect/why-developers-trust-ai-code-more-than-they-should-4igf</guid>
      <description>&lt;p&gt;Most developers don’t trust AI.&lt;/p&gt;

&lt;p&gt;Until it writes code that works.&lt;/p&gt;

&lt;p&gt;Then suddenly… they do.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Shift That’s Happening Quietly
&lt;/h2&gt;

&lt;p&gt;You paste a prompt.&lt;br&gt;
It generates a function.&lt;br&gt;
You test it.&lt;br&gt;
It works.&lt;/p&gt;

&lt;p&gt;You move on.&lt;/p&gt;

&lt;p&gt;No deep review. No second guessing.&lt;/p&gt;

&lt;p&gt;Because it looks right.&lt;/p&gt;

&lt;p&gt;That’s the moment trust creeps in.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem Isn’t AI Code
&lt;/h2&gt;

&lt;p&gt;AI-generated code isn’t the real issue.&lt;br&gt;
The issue is how quickly we stop questioning it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;We assume:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the logic is correct&lt;/li&gt;
&lt;li&gt;the inputs are handled safely&lt;/li&gt;
&lt;li&gt;the dependencies are fine&lt;/li&gt;
&lt;li&gt;the security is “good enough”
But AI doesn’t know your system.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;It doesn’t know:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;your access controls&lt;/li&gt;
&lt;li&gt;your data sensitivity&lt;/li&gt;
&lt;li&gt;your internal architecture&lt;/li&gt;
&lt;li&gt;your compliance requirements
It predicts patterns.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Is Getting Risky
&lt;/h2&gt;

&lt;p&gt;Modern AI security research is already pointing this out.&lt;/p&gt;

&lt;p&gt;The OWASP Foundation highlights risks like insecure outputs, prompt injection, and unsafe integrations in its LLM security guidance.&lt;/p&gt;

&lt;p&gt;And it’s not just theory.&lt;/p&gt;

&lt;p&gt;The GitGuardian reports that millions of secrets are still leaking through codebases, with AI-assisted development accelerating the problem.&lt;/p&gt;

&lt;p&gt;So this isn’t about “AI might be risky.”&lt;/p&gt;

&lt;p&gt;It already is.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where Developers Get It Wrong
&lt;/h2&gt;

&lt;p&gt;Most AI-generated code failures don’t come from obvious bugs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;They come from things like:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;missing input validation&lt;/li&gt;
&lt;li&gt;over-permissive access&lt;/li&gt;
&lt;li&gt;unsafe API usage&lt;/li&gt;
&lt;li&gt;weak error handling&lt;/li&gt;
&lt;li&gt;hidden dependency risks&lt;/li&gt;
&lt;li&gt;logging sensitive data
Nothing breaks immediately.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Which is exactly why it slips through.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Issue: Trust Without Verification
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Here’s the pattern:&lt;/strong&gt;&lt;br&gt;
AI explains the code → it feels correct&lt;br&gt;
Code runs → it feels safe&lt;br&gt;
Tests pass → it feels done&lt;/p&gt;

&lt;p&gt;But none of that guarantees security.&lt;/p&gt;

&lt;p&gt;That’s the gap.&lt;/p&gt;

&lt;h2&gt;
  
  
  This Is Bigger Than Just Code
&lt;/h2&gt;

&lt;p&gt;Attackers are already shifting toward exploiting system complexity instead of single vulnerabilities.&lt;/p&gt;

&lt;p&gt;The CrowdStrike 2025 Threat Hunting Report shows how modern attacks move across systems, APIs, identities, and cloud layers instead of targeting one weak point .&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That’s exactly what AI-generated code creates:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More connections&lt;/li&gt;
&lt;li&gt;More paths&lt;/li&gt;
&lt;li&gt;More surface area&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What You Should Actually Do
&lt;/h2&gt;

&lt;p&gt;Not “stop using AI.”&lt;/p&gt;

&lt;p&gt;That’s unrealistic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Instead:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Treat AI-generated code as untrusted&lt;/li&gt;
&lt;li&gt;Review logic, not just syntax&lt;/li&gt;
&lt;li&gt;Validate inputs explicitly&lt;/li&gt;
&lt;li&gt;Check dependencies&lt;/li&gt;
&lt;li&gt;Watch how outputs are used&lt;/li&gt;
&lt;li&gt;Understand what the code actually touches
If you didn’t write it, you still own it.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Bigger Pattern
&lt;/h2&gt;

&lt;p&gt;Developers don’t blindly trust AI.&lt;/p&gt;

&lt;p&gt;They trust working results.&lt;/p&gt;

&lt;p&gt;AI just happens to produce those faster.&lt;/p&gt;

&lt;p&gt;That’s why this is dangerous.&lt;/p&gt;

&lt;p&gt;Because it doesn’t feel risky.&lt;/p&gt;

&lt;h2&gt;
  
  
  If You Want a Deeper Breakdown
&lt;/h2&gt;

&lt;p&gt;We went deeper into how this expands attack surface and why it’s becoming a real security problem:&lt;br&gt;
👉 &lt;a href="https://medium.com/@suny/ai-generated-code-security-risks-77f3d623bd31" rel="noopener noreferrer"&gt;AI-generated code is expanding your attack surface&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you want the legal + product risk angle (especially in legal tech):&lt;br&gt;
👉 &lt;a href="https://www.langprotect.com/blog/vibe-coding-security-risks-legal-tech?utm_source=Sahil&amp;amp;utm_medium=Devto&amp;amp;utm_campaign=Information" rel="noopener noreferrer"&gt;Vibe coding security risks explained&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Question for Devs Here
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Be honest:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Do you fully review AI-generated code before shipping it?&lt;/p&gt;

&lt;p&gt;Or do you trust it once it works?&lt;/p&gt;

&lt;h2&gt;
  
  
  Sources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;OWASP Top 10 for LLM Applications&lt;/li&gt;
&lt;li&gt;GitGuardian State of Secrets Sprawl Report&lt;/li&gt;
&lt;li&gt;CrowdStrike 2025 Threat Hunting Report&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>security</category>
      <category>ai</category>
      <category>programming</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Your “AI-Powered” Fintech App Might Not Survive an Audit</title>
      <dc:creator>Suny Choudhary</dc:creator>
      <pubDate>Fri, 01 May 2026 07:24:24 +0000</pubDate>
      <link>https://dev.to/langprotect/your-ai-powered-fintech-app-might-not-survive-an-audit-4866</link>
      <guid>https://dev.to/langprotect/your-ai-powered-fintech-app-might-not-survive-an-audit-4866</guid>
      <description>&lt;p&gt;**Most fintech apps say they use AI.&lt;/p&gt;

&lt;p&gt;Few can prove it.&lt;/p&gt;

&lt;p&gt;And that gap is starting to get companies fined.**&lt;/p&gt;

&lt;p&gt;Everyone says their product uses AI.&lt;/p&gt;

&lt;p&gt;AI-powered fraud detection&lt;br&gt;
AI-driven underwriting&lt;br&gt;
AI-based trading signals&lt;/p&gt;

&lt;p&gt;Sounds familiar.&lt;/p&gt;

&lt;p&gt;But here’s the problem:&lt;/p&gt;

&lt;p&gt;If your system can’t prove those claims, you don’t just have a marketing issue.&lt;/p&gt;

&lt;p&gt;You have a &lt;strong&gt;system design flaw.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  This Isn’t About “Fake AI”
&lt;/h2&gt;

&lt;p&gt;AI washing is rarely fake AI.&lt;/p&gt;

&lt;p&gt;It’s overstated AI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You say:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Our AI detects fraud in real time”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Reality:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;model runs on batch data&lt;/li&gt;
&lt;li&gt;rules engine handles most decisions&lt;/li&gt;
&lt;li&gt;humans review high-risk cases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI exists.&lt;/p&gt;

&lt;p&gt;But your claim describes something else.&lt;/p&gt;

&lt;p&gt;That mismatch is the risk.&lt;/p&gt;

&lt;h2&gt;
  
  
  What an Audit Actually Looks Like
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Regulators don’t ask:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Do you use AI?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;They ask:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which model is used?&lt;/li&gt;
&lt;li&gt;Which version was active?&lt;/li&gt;
&lt;li&gt;What data was processed?&lt;/li&gt;
&lt;li&gt;Where are the logs?&lt;/li&gt;
&lt;li&gt;Can you reproduce the output?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you can’t answer this cleanly, your claim falls apart.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Problem: No Evidence Layer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Most systems today lack:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;model-to-feature mapping&lt;/li&gt;
&lt;li&gt;prompt + output logging&lt;/li&gt;
&lt;li&gt;decision traceability&lt;/li&gt;
&lt;li&gt;visibility into fallback logic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;So when someone asks:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Show me how your AI made this decision”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You don’t have a clean answer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Is Getting Risky Now
&lt;/h2&gt;

&lt;p&gt;The SEC has already penalized firms for misleading AI claims.&lt;/p&gt;

&lt;p&gt;They called it &lt;strong&gt;AI washing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.sec.gov/newsroom/press-releases/2024-36" rel="noopener noreferrer"&gt;https://www.sec.gov/newsroom/press-releases/2024-36&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This isn’t theoretical anymore.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where Developers Get Caught Off Guard
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Your architecture probably looks like:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;User → API → Model → Output&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;But reality is:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;User → API → Rules → Model → Human Review → Output&lt;/p&gt;

&lt;p&gt;And your marketing only mentions the model.&lt;/p&gt;

&lt;p&gt;That’s the gap.&lt;/p&gt;

&lt;h2&gt;
  
  
  What You Should Fix (Practical)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Map every AI claim to a real system
&lt;/h3&gt;

&lt;p&gt;If it doesn’t map, remove it.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Add observability
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Log:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;inputs&lt;/li&gt;
&lt;li&gt;outputs&lt;/li&gt;
&lt;li&gt;decision paths&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Not for debugging. For proof.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Track model versions
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Know exactly:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what changed&lt;/li&gt;
&lt;li&gt;when it changed&lt;/li&gt;
&lt;li&gt;how behavior changed&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Be honest about human involvement
&lt;/h3&gt;

&lt;p&gt;If humans are in the loop, say it.&lt;/p&gt;

&lt;h4&gt;
  
  
  5. Test your own claims
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Ask:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Can we prove this today?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If not, fix it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bigger Insight
&lt;/h2&gt;

&lt;p&gt;AI washing is not a marketing problem.&lt;/p&gt;

&lt;p&gt;It’s a visibility problem.&lt;/p&gt;

&lt;p&gt;A system problem.&lt;/p&gt;

&lt;p&gt;A traceability problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;Most teams focus on building AI.&lt;/p&gt;

&lt;p&gt;Very few focus on defending AI claims.&lt;/p&gt;

&lt;p&gt;In fintech, that’s the difference between scaling and getting flagged.&lt;/p&gt;

&lt;h2&gt;
  
  
  Full Breakdown
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.langprotect.com/blog/ai-washing-sec-fintech-enforcement-risk" rel="noopener noreferrer"&gt;https://www.langprotect.com/blog/ai-washing-sec-fintech-enforcement-risk?utm_source=Sahil&amp;amp;utm_medium=Medium&amp;amp;utm_campaign=Information&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>machinelearning</category>
      <category>fintech</category>
    </item>
  </channel>
</rss>
