aisecwatch.com
DashboardVulnerabilitiesNewsResearchArchiveStatsDatasetFor devs
Subscribe
aisecwatch.com

Real-time AI security monitoring. Tracking AI-related vulnerabilities, safety and security incidents, privacy risks, research developments, and policy changes.

Navigation

VulnerabilitiesNewsResearchDigest ArchiveNewsletter ArchiveSubscribeData SourcesStatisticsDatasetAPIIntegrationsWidgetRSS Feed

Maintained by

Truong (Jack) Luu

Information Systems Researcher

AI Sec Watch

The security intelligence platform for AI teams

AI security threats move fast and get buried under hype and noise. Built by an Information Systems Security researcher to help security teams and developers stay ahead of vulnerabilities, privacy incidents, safety research, and policy developments.

Independent research. No sponsors, no paywalls, no conflicts of interest.

[TOTAL_TRACKED]
6,419
[LAST_24H]
27
[LAST_7D]
172
Daily BriefingFriday, August 14, 2026
>

Apple Partners with Alibaba on China-Specific LLM: Apple has developed a custom large language model (LLM, a type of AI trained on large amounts of text data) for the Chinese market in collaboration with Alibaba, marking a strategic shift to gain greater control over its AI offerings in China's competitive landscape.

Latest Intel

page 91/642
VIEW ALL
01

We built a vulnerability vending machine: AI tokens in, zero-days out

securityresearch
Critical This Week5 issues
critical

CVE-2026-19297: IBM Langflow OSS 1.0.0 through 1.9.6 could allow a remote attacker to obtain unauthorized access to user accounts due to

CVE-2026-19297NVD/CVE DatabaseAug 13, 2026
Aug 13, 2026
Jul 15, 2026

Researchers at Intruder built an automated system using LLMs (large language models, AI systems trained on text data) to find real security vulnerabilities in software code, discovering a SQL injection zero-day (a previously unknown security flaw) in a WordPress plugin with 300,000+ users. The key challenge is that pointing an LLM at an entire codebase causes it to lose focus by processing irrelevant code, so they developed a pipeline using program slicing (a technique that extracts only the relevant code segments) combined with code scanning tools to give the LLM focused context and filter findings through multiple AI models before attempting exploitation.

BleepingComputer
02

The Risk of Exposed Cloud Functions and How to Harden

security
Jul 15, 2026

Publicly exposed serverless applications (cloud functions that run code without requiring you to manage servers) often lack proper authentication and input validation, making them vulnerable to attacks like LFI (local file inclusion, where attackers read files they shouldn't access) and command injection (inserting malicious commands into user inputs). Successful exploitation can give attackers full control of the container instance and potentially the entire cloud environment.

Google Threat Intelligence
03

AI Security Is Never Finished: Building the Continuous Red Teaming Loop 

securityresearch
Jul 15, 2026

AI security testing is fundamentally different from traditional software security because AI systems continuously change in production, making past test results unreliable indicators of current safety. Red teaming (simulated attacks to find vulnerabilities) must be ongoing rather than a one-time checklist, since model behavior, prompts, data sources, and attacker methods all evolve constantly.

Check Point Research
04

New bugs in Claude for Chrome allow extensions to abuse AI privileges

security
Jul 15, 2026

Two security flaws in Anthropic's Claude for Chrome extension allow malicious browser extensions to trick Claude into performing privileged actions like reading Gmail, Google Docs, and Calendar data on a user's behalf. The vulnerabilities have remained unfixed for months despite being reported to Anthropic in May, with the company marking an internal tracking issue as 'resolved' while the problematic code remained unchanged across eight releases. The first flaw involves synthetic clicks (fake user interactions generated by malicious code) bypassing verification checks, while the second involves a URL parameter that improperly grants elevated privileges.

Fix: The source explicitly mentions a fix for the first vulnerability: adding one line of code, 'if (!n.isTrusted) return;' at the top of the click handler to verify clicks are from real users. For the second vulnerability, the source recommends general practices (validating genuine user interactions, avoiding URL-driven privilege transitions, and strengthening internal extension authentication) but does not describe a specific implemented fix or version where these are resolved.

CSO Online
05

The US is advancing AI safety through state and federal action

policy
Jul 15, 2026

The US is developing AI safety standards through coordinated state and federal legislation, with California, New York, and Illinois leading efforts to create a common framework for governing powerful AI systems. These states are implementing three key elements: documented safety frameworks with risk assessments and public disclosure, reporting of serious safety incidents, and independent audits for accountability. This approach, called reverse federalism (states establishing shared direction through common frameworks), aims to create a de facto national standard that prevents regulatory chaos while keeping the US competitive in AI innovation globally.

Fix: According to the source, states should align on three core elements: (1) a documented safety framework with risk assessments for frontier models (AI systems at the cutting edge of capability) and public disclosure of those assessments and their results, (2) reporting of serious safety incidents, and (3) governance and accountability through independent, objective audits. The source states that California, New York, and Illinois have already implemented these elements as a model for other states to follow.

OpenAI Blog
06

SASE Has An AI Blind Spot. Inspecting Packets Is No Longer Enough.

securitypolicy
Jul 15, 2026

Traditional SASE (Secure Access Service Edge, a cloud-based security tool that inspects network traffic) cannot protect against modern data risks because it inspects encrypted traffic at network checkpoints, but today's threats happen inside applications and AI workflows where the network cannot see them. Modern encryption protocols like TLS 1.3 prevent network proxies from inspecting traffic without breaking applications, forcing organizations to create exemptions that weaken security, while AI agents can leak sensitive data through chat interfaces or tool calls before the network ever sees the interaction.

Fix: The source explicitly describes a shifted architecture: enforcement must happen "at the point of interaction, on the device: the browser and the endpoint" with "contextual data protection" where "copy, paste, and prompt content are inspected locally before data ever leaves the device." Traffic should be "steered dynamically to the closest available edge infrastructure, eliminating redundant hops," and the source mentions adoption of the "Perfect Packet" architecture, which "evaluates context at the endpoint before routing, invoking cloud inspection only when a session requires additional verification."

The Hacker News
07

TuxBot v3: Inside an IoT Botnet Framework With LLM-Assisted Development

securityresearch
Jul 15, 2026

Researchers discovered TuxBot v3 Evolution, a modular IoT botnet (malware that infects internet-connected devices and controls them remotely) framework where the developers used an LLM (large language model, an AI trained to understand and generate text) to help write the malware code. Although the LLM generated working botnet code, it included safety warnings that the developers left in place, and the code contained several bugs that manual review could have caught, suggesting more polished versions may already exist in the wild.

Palo Alto Unit 42
08

GPT-Red: Unlocking Self-Improvement for Robustness

safetyresearch
Jul 15, 2026

GPT-Red is an automated red-teaming model (a system designed to find vulnerabilities by simulating attacks) that helps discover weaknesses in AI systems before they're released to the public. OpenAI trained GPT-Red using self-play reinforcement learning (a technique where the model competes against defender models to improve both sides) to find prompt injection attacks (tricks that hide malicious instructions in user input), and then used these findings to train GPT-5.6, making it six times more resistant to such attacks compared to earlier models.

Fix: OpenAI directly incorporated GPT-Red into the training process of their production models. The source states they "directly incorporate GPT‑Red into the training process of our production models" through self-play reinforcement learning, where GPT-Red is trained alongside defender LLMs (large language models) on realistic red-teaming scenarios. As defenders become more robust, GPT-Red discovers stronger attacks, creating an iterative improvement cycle. The source also notes they "will continue to scale this approach alongside human and third-party red-teaming, layered safeguards, and real-time monitoring."

OpenAI Blog
09

Cybersecurity needs more prevention and less reliance on cure

securitypolicy
Jul 15, 2026

The cybersecurity industry has over-invested in detection tools (systems that identify attacks after they happen) rather than prevention tools (systems that block attacks before they occur), even though prevention is more cost-effective and reduces actual risk. Modern attacks now move faster than human teams can respond, so relying on detection and alerts creates alert fatigue (when too many false alarms overwhelm security staff) and leaves organizations vulnerable to initial compromises from known vulnerabilities, stolen credentials, or misconfigurations.

CSO Online
10

7 skills and traits of elite security engineers

securityindustry
Jul 15, 2026

Security engineers design and deploy systems to protect organizations from cyber threats, and their role is evolving due to AI. Elite security engineers need skills in using AI-powered tools (software that uses machine learning to automate security tasks), understanding AI-related threats like prompt injection (tricking an AI by hiding instructions in its input) and model poisoning (corrupting training data to make AI systems malfunction), and balancing security with business performance goals. As AI automates detection and vulnerability scanning work, security engineers are shifting from responding to incidents toward interpreting AI findings and deciding on appropriate responses.

CSO Online
Prev1...8990919293...642Next
critical

CVE-2026-73656: Trigger.dev is a platform for building and deploying fully managed AI agents and workflows. Prior to 4.5.6, POST /api/v1

CVE-2026-73656NVD/CVE DatabaseAug 13, 2026
Aug 13, 2026
critical

CVE-2026-73487: Flowise before 3.1.3 contains a regex-based Python code validator bypass in CSV and Airtable Agent nodes that allows una

CVE-2026-73487NVD/CVE DatabaseAug 13, 2026
Aug 13, 2026
critical

CVE-2026-73485: Flowise before 3.1.3 contains a code injection vulnerability in the Airtable Agent node that allows unauthenticated atta

CVE-2026-73485NVD/CVE DatabaseAug 13, 2026
Aug 13, 2026
critical

Zoom zero-click RCE flaws allow attackers to compromise meeting participants

CSO OnlineAug 11, 2026
Aug 11, 2026