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,483
[LAST_24H]
33
[LAST_7D]
151
Daily BriefingTuesday, August 18, 2026
>

OpenAI Launches ChatGPT for Teens with Enhanced Safety Controls: OpenAI introduced a dedicated version of ChatGPT for users aged 13-17 with features including Study Mode (which prompts students to work through problems rather than providing direct answers), human-reviewed parental alerts for harmful requests like eating disorder content, and options to disable human-like voice responses. The rollout comes amid growing pressure on AI platforms to implement age verification and youth-specific protections.

>

LLMs Leak Sensitive Data When Using Persistent Memory: Research found that frontier LLMs (the most advanced current systems) inappropriately share private details from past conversations at rates up to 69% attribute-level violations, even when explicitly instructed to protect privacy. The findings reveal that models struggle to make context-appropriate decisions about what information to share, tending to either overshare or withhold everything rather than apply nuanced judgment.

Latest Intel

page 495/649
VIEW ALL
01

Generative Artificial Intelligence in Information Systems Education: Benefits, Challenges and Recommendations

research
Jan 21, 2026

Generative artificial intelligence (GAI, AI systems that create new text, images, or code) is significantly changing how information systems are taught in universities. IS educators are discussing both the benefits and risks of GAI, including concerns about academic integrity (students using AI to cheat), and they are developing recommendations for how to responsibly teach with and about GAI in the classroom.

Critical This Week5 issues
critical

GHSA-7gwp-5pfp-969j: MLflow: Unauthenticated full-read SSRF in webhook delivery: _validate_webhook_url bypassed via unvalidated HTTP redirects (and DNS rebinding)

CVE-2026-64849GitHub Advisory DatabaseAug 17, 2026
Aug 17, 2026
>

AI Excels at Finding Zero-Days but Doubles Security Flaw Rates in Generated Code: While LLMs demonstrate growing capability in discovering zero-day vulnerabilities (previously unknown security flaws) and building exploits, AI-generated code contains security weaknesses at roughly twice the rate of human-written code, with 44% containing at least one OWASP Top 10 vulnerability (the most critical categories of code weaknesses). Despite 99% syntax correctness, the asymmetry between AI's offensive and defensive security capabilities remains unexplained.

AIS eLibrary (Journal of AIS, CAIS, etc.)
02

Handling Condition-Aware Noise and Outlier Disparities: A Transfer Learning Framework for Robust Cross-Domain Process Monitoring

research
Jan 21, 2026

Industrial process monitoring systems often perform poorly when dealing with noise (unwanted signal disturbances) and outliers (unusual data points) across different working conditions. This research proposes a transfer learning (a technique where a model trained on one task is adapted for a different but related task) framework that combines several advanced neural network approaches, including a variational autoencoder generative adversarial network (a type of AI that learns to generate and discriminate realistic data patterns) and dictionary learning (a method that finds the simplest way to represent complex data), to make monitoring systems more robust and reliable across different industrial scenarios.

IEEE Xplore (Security & AI Journals)
03

Words Become SQL: Securing AI Assistants That Talk to Databases

securityresearch
Jan 21, 2026

The article demonstrates how attackers can use crafted prompts to trick AI assistants into running harmful database queries through prompt-to-SQL injection attacks (where malicious instructions hidden in user input cause an AI to generate dangerous database commands). It identifies vulnerabilities in real systems and describes practical defenses including query filtering, rewriting, data preloading, and using another AI model as a security guard.

Fix: The source mentions four explicit defenses: query filtering, query rewriting, data preloading, and large-language-model-based guards (using another AI model to validate or block dangerous queries).

IEEE Xplore (Security & AI Journals)
04

CVE-2025-33233: NVIDIA Merlin Transformers4Rec for all platforms contains a vulnerability where an attacker could cause code injection.

security
Jan 20, 2026

NVIDIA Merlin Transformers4Rec contains a code injection vulnerability (CWE-94, a weakness where attackers can trick software into running malicious code) that could let attackers execute arbitrary code, gain elevated permissions, steal information, or modify data. The vulnerability affects all platforms running this software. A CVSS severity score has not yet been assigned by NIST.

NVD/CVE Database
05

The Impact of Digital Technology Intensity on Greenhouse Gas Emissions and Natural Resources Consumption

research
Jan 20, 2026

This research paper analyzes how companies that invest in digital technologies, including AI, affect their greenhouse gas emissions and natural resource use. The study found that companies investing in these technologies tend to reduce their emissions and consume fewer natural resources, suggesting that digital tools can help address environmental challenges.

AIS eLibrary (Journal of AIS, CAIS, etc.)
06

CVE-2026-23842: ChatterBot is a machine learning, conversational dialog engine for creating chat bots. ChatterBot versions up to 1.2.10

security
Jan 19, 2026

ChatterBot versions up to 1.2.10 have a vulnerability that causes denial-of-service (when a service becomes unavailable due to being overwhelmed), triggered when multiple concurrent calls to the get_response() method exhaust the SQLAlchemy connection pool (a group of reusable database connections). The service becomes unavailable and requires manual restart to recover.

Fix: Version 1.2.11 fixes the issue.

NVD/CVE Database
07

From Generation to Detection: Multimodal Generative AI and the Threat of Automated Misinformation

researchsafety
Jan 15, 2026

Researchers studied how multimodal generative AI systems (AI that creates both text and images) could be misused to generate fake news by testing AI image generators like Stable Diffusion 3 and evaluating whether GPT-4 (a large language model) could detect these false images. The findings show that current AI has both strengths and weaknesses in creating misinformation, and highlight that stronger safeguards, transparent monitoring, and human oversight are needed to prevent AI from spreading false information.

IEEE Xplore (Security & AI Journals)
08

BlindU: Blind Machine Unlearning Without Revealing Erasing Data

researchprivacy
Jan 15, 2026

BlindU is a method that allows users to remove their data's influence from trained AI models while keeping that data hidden from the server. Instead of uploading raw data to the server (which creates privacy risks), BlindU lets users create compressed versions of their data locally, and the server performs the removal process only on these compressed versions, making it practical for federated learning (a distributed training setup where data stays on users' devices).

Fix: BlindU implements unlearning through several stated mechanisms: (1) 'the user locally generates privacy-preserving representations, and the server performs unlearning solely on these representations and their labels', (2) use of an information bottleneck mechanism that 'learns representations that distort maximum task-irrelevant information from inputs', (3) 'two dedicated unlearning modules tailored explicitly for IB-based models and uses a multiple gradient descent algorithm to balance forgetting and utility retaining', and (4) 'a noise-free differential privacy masking method to deal with the raw erasing data before compressing' for additional privacy protection.

IEEE Xplore (Security & AI Journals)
09

Practical Continual Forgetting for Pre-Trained Vision Models

researchprivacy
Jan 15, 2026

This research addresses how to remove unwanted information from pre-trained vision models (AI systems trained to understand images) when users or model owners request it, especially when these deletion requests come one after another over time. The researchers propose Group Sparse LoRA (GS-LoRA), a technique that uses Low-Rank Adaptation modules (efficient add-on components that modify specific neural network layers) to selectively forget targeted classes or information while keeping the rest of the model working well, even when some training data is missing.

Fix: The paper proposes two explicit solutions: (1) Group Sparse LoRA (GS-LoRA), which uses Low-Rank Adaptation modules to fine-tune Feed-Forward Network layers in Transformer blocks for each forgetting task independently, combined with group sparse regularization to automatically select and zero out specific LoRA groups. (2) GS-LoRA++, an extension that incorporates prototype information as additional supervision, moving logits (output scores) away from the original prototype of forgotten classes while pulling logits closer to prototypes of remaining classes.

IEEE Xplore (Security & AI Journals)
10

CVE-2026-22708: Cursor is a code editor built for programming with AI. Prior to 2.3, hen the Cursor Agent is running in Auto-Run Mode wi

security
Jan 14, 2026

Cursor is a code editor designed for programming with AI. Before version 2.3, when the Cursor Agent runs in Auto-Run Mode with Allowlist mode enabled (a security setting that restricts which commands can run), attackers could bypass this protection by using prompt injection (tricking the AI by hiding instructions in its input) to execute shell built-ins (basic operating system commands) and modify environment variables (settings that affect how programs behave). This vulnerability allows attackers to compromise the shell environment without user approval.

Fix: This vulnerability is fixed in 2.3.

NVD/CVE Database
Prev1...493494495496497...649Next
critical

CVE-2026-75110: MemOS is a memory operating system for LLMs and AI agents. In deployments where authentication is enabled (AUTH_ENABLED=

CVE-2026-75110NVD/CVE DatabaseAug 17, 2026
Aug 17, 2026
critical

CVE-2026-64859: New API is a large language mode (LLM) gateway and artificial intelligence (AI) asset management system. Prior to 1.0.0-

CVE-2026-64859NVD/CVE DatabaseAug 17, 2026
Aug 17, 2026
critical

CVE-2025-27772: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the `

CVE-2025-27772NVD/CVE DatabaseAug 17, 2026
Aug 17, 2026
critical

CVE-2025-27771: UpTrain is an open-source platform to evaluate and improve generative AI applications. In version 0.7.1 and prior, the `

CVE-2025-27771NVD/CVE DatabaseAug 17, 2026
Aug 17, 2026