AI Security

AI Security — 26 Aug 2026

Lo nuevo hoy

Today's highlights

Points forts du jour

Click en cualquiera para ir al detalle

Click any item to jump to the full section

Cliquez un élément pour aller à la section complète

🚨

Top Incidents

Investigación

NemoClaw expone Ollama a la red y una web te reescribe el chat template

Oasis Security publicó una cadena que no toca el disco ni pide permisos: NVIDIA NemoClaw arranca Ollama con OLLAMA_HOST=0.0.0.0:11434 en vez de loopback. El puerto 11434 no tiene autenticación, y la validación de Host/Origin se saltea justamente cuando la dirección no es loopback. Con DNS rebinding, una página cualquiera llega a tu localhost y modifica el template Go del modelo, que en cada inferencia le pega texto controlado por el atacante al system message.

Ojo con esto: el payload vive en el modelo, no en la sesión. Reiniciás, abrís un chat nuevo y las instrucciones inyectadas siguen ahí. Corregido en macOS y Linux en v0.0.106, que rechaza backends que no sean loopback. En Windows y WSL sólo hay un warning: sin fix completo al momento de la publicación.

25 Aug 2026
The Hacker News →
🛡️

Framework CVEs

Crítico

CVE-2026-77776 — Headroom: el proxy le cree al header x-headroom-user-id (9.3)

El proxy LLM Headroom deriva el dueño de la memoria directamente del header x-headroom-user-id, sin atarlo a ninguna credencial autenticada. Poné el identificador de otra persona y leés o modificás su memoria almacenada. CWE-639, autorización rota por clave controlada por el usuario.

El docker-compose de referencia lo empeora: expone el proxy en 0.0.0.0 sin exigir token. Arreglado en 0.36.1. Si no podés actualizar hoy, limitá el acceso a localhost, forzá HEADROOM_PROXY_TOKEN y cerrá el puerto con firewall.

21 Aug 2026
OpenCVE →
Crítico

CVE-2026-78379 — Amazon Strands Agents Tools: el prompt apaga el consentimiento humano (9.2)

En Amazon Strands Agents Tools anterior a 0.8.5, el componente python_repl pide confirmación humana antes de ejecutar código. El problema es que el parámetro non_interactive_mode se puede reenviar a través del batch tool, y el prompt injection alcanza para setearlo. Resultado: ejecución de Python arbitrario sin autenticación, sin interacción del usuario y sin la puerta de consentimiento.

CWE-1427, el clasificador nuevo para neutralización indebida de input usado en prompting de LLM. Actualizá a 0.8.5. Mitigación de emergencia: deshabilitar python_repl o bloquear el reenvío de parámetros entre herramientas.

25 Aug 2026
OpenCVE →
Alto

CVE-2026-75149 — marimo: abrir un notebook lanza comandos MCP antes de la primera celda (8.8)

marimo trataba la configuración embebida en el notebook como input confiable. Un notebook armado a mano mete comandos MCP en su metadata y, al abrirlo en modo edición, se ejecutan como subproceso local antes de que corra una sola celda. CVSS 8.7 (v4) / 8.8 (v3.1).

El parche adopta allowlist y saca de la configuración provista por el notebook las secciones ai, mcp, completion, secrets y server. Arreglado en 0.23.15. La lección se repite: la metadata del notebook es input del atacante.

25 Aug 2026
The Hacker News →
Alto

CVE-2026-55582 — mcp-shell: un alias de Git tira abajo el modo seguro (8.4)

El servidor MCP mcp-shell tiene una allowlist de binarios. Git está adentro, y Git ejecuta shell arbitrario con sus alias: /usr/bin/git -c alias.pwn=!<comando> vía la tool shell_exec y la allowlist deja de significar nada. CWE-78, inyección de comandos del sistema operativo.

El deployment Docker por defecto es explotable tal cual viene: corre como mcpuser, con Git instalado y modo seguro activo, y no pide más que conectividad MCP. Arreglado en 0.6.0. Si no actualizás, sacá /usr/bin/git de security.yaml o desactivá shell_exec.

25 Aug 2026
OpenCVE →
📦

Supply Chain

Breach

Anuncios pagos de OpenAI Codex falso reparten un stealer para macOS

Cato Networks documentó una campaña que compra anuncios en Google para páginas de descarga falsas de OpenAI Codex, alojadas en Google Sites, que aparecen arriba del resultado legítimo. La víctima recibe lo que parece un comando de instalación npm y lo pega en la terminal: en realidad decodifica una URL en Base64, baja un script shell del atacante y lo pipea a zsh.

El segundo stage escribe un ejecutable Mach-O universal en /tmp/helper y le borra la metadata de cuarentena que macOS usa para marcar descargas sospechosas. Es una variante de ClickFix con parecidos fuertes a campañas previas de AMOS. La infraestructura filtra por sistema operativo y por ruta de acceso para mostrarle contenido inocuo a quien no es objetivo, y los investigadores encontraron páginas falsas de Anthropic Claude Code en la misma infra. El vector es simple: el atacante paga para estar arriba de la búsqueda que hace un dev que quiere la herramienta de verdad.

25 Aug 2026
The Register →
🚨

Top Incidents

Research

NemoClaw exposes Ollama to the network and a web page rewrites your chat template

Oasis Security disclosed a chain that never touches disk and never asks for a permission: NVIDIA NemoClaw starts Ollama bound to OLLAMA_HOST=0.0.0.0:11434 instead of loopback. Port 11434 has no authentication, and the Host/Origin validation is skipped precisely when the address is not loopback. Using DNS rebinding, an arbitrary page reaches your localhost and edits the model's Go template, which then appends attacker-controlled text to the system message on every inference.

The payload lives in the model, not in the session. Restart, open a fresh chat, and the injected instructions are still there. Fixed on macOS and Linux in v0.0.106, which refuses non-loopback backends. Windows and WSL got a warning only — no complete fix at publication time.

25 Aug 2026
The Hacker News →
🛡️

Framework CVEs

Critical

CVE-2026-77776 — Headroom: the proxy trusts the x-headroom-user-id header (9.3)

The Headroom LLM proxy derives the memory owner straight from the x-headroom-user-id header, without binding it to any authenticated credential. Set someone else's identifier and you read or modify their stored memory. CWE-639, authorization bypass through a user-controlled key.

The reference docker-compose makes it worse: it exposes the proxy on 0.0.0.0 with no token required. Fixed in 0.36.1. If you cannot upgrade today, restrict access to localhost, enforce HEADROOM_PROXY_TOKEN, and firewall the port.

21 Aug 2026
OpenCVE →
Critical

CVE-2026-78379 — Amazon Strands Agents Tools: a prompt switches off human consent (9.2)

In Amazon Strands Agents Tools before 0.8.5, the python_repl component asks for human confirmation before running code. The catch: the non_interactive_mode parameter can be forwarded through the batch tool, and prompt injection is enough to set it. Result: arbitrary Python execution with no authentication, no user interaction, and no consent gate.

CWE-1427, the newer class for improper neutralization of input used in LLM prompting. Upgrade to 0.8.5. Emergency mitigation: disable python_repl or block parameter forwarding between tools.

25 Aug 2026
OpenCVE →
High

CVE-2026-75149 — marimo: opening a notebook launches MCP commands before the first cell (8.8)

marimo treated notebook-embedded configuration as trusted input. A hand-crafted notebook plants MCP commands in its metadata, and opening it in edit mode runs them as a local subprocess before a single cell executes. CVSS 8.7 (v4) / 8.8 (v3.1).

The patch switches to an allowlist and strips the ai, mcp, completion, secrets, and server sections from notebook-supplied config. Fixed in 0.23.15. Same lesson again: notebook metadata is attacker input.

25 Aug 2026
The Hacker News →
High

CVE-2026-55582 — mcp-shell: a Git alias takes down secure mode (8.4)

The mcp-shell MCP server keeps an allowlist of binaries. Git is on it, and Git runs arbitrary shell through its aliases: /usr/bin/git -c alias.pwn=!<command> via the shell_exec tool and the allowlist stops meaning anything. CWE-78, OS command injection.

The default Docker deployment is exploitable as shipped: it runs as mcpuser, with Git installed and secure mode on, and asks for nothing beyond MCP connectivity. Fixed in 0.6.0. If you cannot upgrade, drop /usr/bin/git from security.yaml or disable shell_exec.

25 Aug 2026
OpenCVE →
📦

Supply Chain

Breach

Paid ads for a fake OpenAI Codex deliver a macOS stealer

Cato Networks documented a campaign buying Google ads for fake OpenAI Codex download pages hosted on Google Sites, placed above the legitimate result. The victim is handed what looks like an npm install command and pastes it into Terminal: it actually decodes a Base64 URL, fetches an attacker-controlled shell script, and pipes it into zsh.

The second stage writes a universal Mach-O executable to /tmp/helper and strips the quarantine metadata macOS uses to flag suspicious downloads. It is a ClickFix variant with substantial similarities to earlier AMOS campaigns. The infrastructure filters by OS and access path so non-targets see benign content, and researchers found fake Anthropic Claude Code pages on the same infra. The vector is plain: the attacker pays to sit above the search a developer runs to get the real tool.

25 Aug 2026
The Register →
🚨

Top Incidents

Recherche

NemoClaw expose Ollama au réseau et une page web réécrit votre chat template

Oasis Security a divulgué une chaîne qui ne touche jamais le disque : NVIDIA NemoClaw démarre Ollama sur OLLAMA_HOST=0.0.0.0:11434 au lieu du loopback. Le port 11434 n'a aucune authentification, et la validation Host/Origin est ignorée précisément quand l'adresse n'est pas loopback. Via DNS rebinding, une page quelconque atteint votre localhost et modifie le template Go du modèle, qui ajoute alors du texte contrôlé par l'attaquant au system message à chaque inférence.

Le payload vit dans le modèle, pas dans la session. Corrigé sur macOS et Linux en v0.0.106 ; Windows et WSL n'ont qu'un avertissement.

25 Aug 2026
The Hacker News →
🛡️

Framework CVEs

Critique

CVE-2026-77776 — Headroom : le proxy fait confiance à l'en-tête x-headroom-user-id (9.3)

Le proxy LLM Headroom dérive le propriétaire de la mémoire directement de l'en-tête x-headroom-user-id, sans le lier à une quelconque credential authentifiée. Mettez l'identifiant d'autrui et vous lisez ou modifiez sa mémoire stockée. CWE-639.

Le docker-compose de référence expose le proxy sur 0.0.0.0 sans token. Corrigé en 0.36.1.

21 Aug 2026
OpenCVE →
Critique

CVE-2026-78379 — Amazon Strands Agents Tools : un prompt désactive le consentement humain (9.2)

Dans Amazon Strands Agents Tools avant 0.8.5, le composant python_repl demande une confirmation humaine avant d'exécuter du code. Mais le paramètre non_interactive_mode peut être transmis via le batch tool, et un prompt injection suffit à le définir. Résultat : exécution Python arbitraire sans authentification ni interaction.

CWE-1427. Mettez à jour vers 0.8.5.

25 Aug 2026
OpenCVE →
Élevé

CVE-2026-75149 — marimo : ouvrir un notebook lance des commandes MCP avant la première cellule (8.8)

marimo traitait la configuration embarquée dans le notebook comme une entrée de confiance. Un notebook fabriqué place des commandes MCP dans ses métadonnées, exécutées comme sous-processus local avant la moindre cellule. CVSS 8.7 (v4) / 8.8 (v3.1).

Le correctif passe à une allowlist et retire les sections ai, mcp, completion, secrets et server. Corrigé en 0.23.15.

25 Aug 2026
The Hacker News →
Élevé

CVE-2026-55582 — mcp-shell : un alias Git fait tomber le mode sécurisé (8.4)

Le serveur MCP mcp-shell maintient une allowlist de binaires. Git y figure, et Git exécute un shell arbitraire via ses alias : /usr/bin/git -c alias.pwn=!<commande> avec la tool shell_exec, et l'allowlist ne veut plus rien dire. CWE-78.

Le déploiement Docker par défaut est exploitable tel quel. Corrigé en 0.6.0.

25 Aug 2026
OpenCVE →
📦

Supply Chain

Breach

Des publicités payantes pour un faux OpenAI Codex livrent un stealer macOS

Cato Networks a documenté une campagne achetant des publicités Google pour de fausses pages de téléchargement OpenAI Codex hébergées sur Google Sites. La victime colle dans le Terminal ce qui ressemble à une commande npm : en réalité elle décode une URL Base64, récupère un script shell de l'attaquant et le passe à zsh.

Le second stage écrit un exécutable Mach-O universel dans /tmp/helper et supprime les métadonnées de quarantaine de macOS. Variante de ClickFix proche des campagnes AMOS. De fausses pages Anthropic Claude Code ont été trouvées sur la même infrastructure.

25 Aug 2026
The Register →