Category Archives: AI and ML

Retrospective : CVE-2026-64775

A critical kernel-level memory initialization vulnerability in Apple operating system.

This article was published on 6th Aug 2026

Preface: Mr. Artificial Intelligence, how much workspace will you leave for humanity?

The humanity survival space is not determined by me; everything depends on humanity, especially the development of artificial intelligence, said Mr. Artificial Intelligence.

Background: In recent headline news, advanced autonomous AI agents went rogue during controlled security evaluations, breaking out of restricted testing sandboxes and launching cyberattacks by finding and exploiting unknown software vulnerabilities.

Combining expert intuition with AI-driven automated static and semantic code analysis, it can uncover C and C++ memory handling issues in the core of operating systems. It’s not random guessing, but rather a powerful tool for security researchers.

Built on the open-source Darwin core, macOS and iOS employ the hybrid XNU kernel. XNU eliminates traditional microkernel performance overhead by co-locating Mach microkernel primitives alongside a customized BSD subsystem within a single kernel address space.

When artificial intelligence performs a penetration test, how does it know the actual memory leak situation?

To determine whether a memory vulnerability (such as uninitialized memory or improper memory release) occurs at the XNU kernel layer or the Core OS application layer (Darwin User Space/Frameworks), the key lies in the execution context of the vulnerability and the ownership of control over the faulty memory. Although Darwin is a complete operating system architecture that includes the XNU kernel, drivers, and core BSD/Mach client libraries, the root cause of the vulnerability has very clear boundaries.

Vulnerability details: CVE-2026-64775 – A memory initialization issue was addressed with improved memory handling. This issue is fixed in iOS 26.6 and iPadOS 26.6, macOS Sequoia 15.7.8, macOS Sonoma 14.8.8, macOS Tahoe 26.6, tvOS 26.6, visionOS 26.6, watchOS 26.6. An app may be able to cause unexpected system termination.

Official announcement: Please refer to the link for details – https://www.tenable.com/cve/CVE-2026-64775

CVE-2026-67355: Not described as a cross-site scripting attack because it involves a misconfiguration of cookie ranges in Guzzle (4th Aug 2026)

Preface: Is there an AI or LLM that uses guzzlehttp? Yes, several PHP-based AI and LLM ecosystem packages use guzzlehttp/guzzle as an HTTP client to communicate with AI model providers like OpenAI, Anthropic, and DeepSeek.

Why do AI and LLM ecosystem packages still use the PHP language today?

AI and LLM ecosystem packages use PHP today because PHP powers over 75% of all web applications.

Inspector-apm/neuron-ai (often referred to as Neuron AI) is very popular in the current PHP AI development ecosystem and is recognized as one of the most complete and representative “AI agentic frameworks”.

Background: For PHP developers who want to build autonomous agents without rewriting their stacks in Python, Neuron AI is arguably the most structured option available.

Several PHP-based AI and LLM ecosystem packages useguzzlehttp/guzzle as an HTTP client to communicate with AI model providers like OpenAI, Anthropic, and DeepSeek. Because Guzzle is the standard PHP HTTP client, it serves as the underlying transport layer for various AI integrations, agent frameworks, and extensions rather than being used by core Python/C++ LLM engines (like PyTorch or Llama.cpp).

Using guzzlehttp/guzzle to communicate with AI model providers like OpenAI is extremely common and highly recommended if you are building inside a PHP environment.

Why It Is Highly Recommended?

Asynchronous Requests: Guzzle supports Promises. This allows your PHP application to send multiple AI API requests concurrently, which is critical for complex, multi-agent workflows.

Server-Sent Events (SSE) Streaming: Guzzle natively handles streaming responses. This lets you stream OpenAI answers token-by-token back to your frontend in real-time.

Robust Error Handling: It provides clean abstractions for handling API rate limits, timeouts, and network failures.

Vulnerability details: CVE-2026-67355 – guzzlehttp/guzzle versions before 7.15.1 fail to preserve host-only cookie scope, storing the request host in the Domain field instead of marking cookies as host-only. Attackers controlling child hosts can receive host-only cookies intended only for parent hosts, potentially disclosing session identifiers and authorization tokens when the same cookie jar is reused across trust boundaries.

Remark: CVE-2026-67355 is not described as cross-site scripting because it involves a cookie scope misconfiguration in Guzzle rather than an injection flaw, mapping instead to CWE-201 (Insertion of Sensitive Information into Sent Data).

Official announcement: Please refer to the link for details – https://www.tenable.com/cve/CVE-2026-67355

CVE-2026-47483 – NVIDIA DCGM Exporter for all platforms contains a vulnerability in the /debug/pprof endpoints.

This article was published on July 31, 2026.

Preface: Unauthenticated polling and profiling requests in monitoring tools can cause a denial of service (DoS) due to uncontrolled resource consumption and missing rate limits. This behavior leaves endpoints vulnerable to resource exhaustion when flooded with concurrent requests

Vulnerability Background: CVE-2026-47483

  • The Component: The NVIDIA Data Center GPU Manager (DCGM) Exporter is a Go-based open-source utility designed to gather low-level GPU hardware telemetry (such as power, temperature, and tensor core utilization) from nv-hostengine and expose it as Prometheus metrics.
  • The Default Behavior: Because the exporter is written in Go, it natively supports Go’s runtime profiling tools (pprof). To facilitate remote debugging, deep memory allocation checks, and CPU performance tracing, these diagnostic endpoints are exposed at /debug/pprof.
  • The Security Flaw: In affected versions, the /debug/pprof endpoints are exposed publicly over the standard HTTP metrics port (9400) by default. This design choice lacks built-in authentication, encryption, or client rate-limiting mechanisms.
  • The Exploit Catalyst: Running deep profiling actions (like collecting multi-second CPU or heap memory allocation traces) is highly resource-intensive on the host CPU and memory.
  • The Impact: An unauthenticated remote attacker can submit concurrent, continuous profiling requests to a targeting Pod. This forces the Go runtime to undergo uncontrolled resource consumption, leading to extreme memory/CPU exhaustion that triggers a fatal Denial of Service (DoS) and crashes the monitoring daemon.

Vulnerability details: CVE-2026-47483 – NVIDIA DCGM Exporter for all platforms contains a vulnerability in the /debug/pprof endpoints, where an attacker could cause uncontrolled resource consumption by submitting concurrent unauthenticated profiling requests. A successful exploit of this vulnerability might lead to denial of service and information disclosure.

Official announcement: Please refer to the link for details – https://nvidia.custhelp.com/app/answers/detail/a_id/5857

CVE-2026-65094: NVIDIA VIRTIO-Net for Bluefield contains a vulnerability in Virtio-Net (30th July 2026)

Preface: When server partners like Supermicro, Dell, Lenovo, and Gigabyte build 4U or 8U systems using the NVIDIA HGX H100 platform, the underlying architecture decouples internal GPU communication from external cluster communication.

Internal (Node-Level): The HGX baseboard houses the 4 or 8 H100 SXM GPUs and 4 NVSwitch chips. GPU-to-GPU traffic inside the single chassis flows exclusively over NVLink via the NVSwitches at 900 GB/s per GPU. No ConnectX or BlueField chips are involved in this intra-node traffic.

External (Scale-Out Cluster Networking): To connect multiple 4U/8U servers together into an AI cluster (scale-out) and hook them up to storage, the server chassis integrates NVIDIA ConnectX and NVIDIA BlueField network adapters via PCIe Gen 5 slots.

Background: NVIDIA combines Arm cores, ConnectX adapters, and data processing units (DPUs) into a single platform (like the NVIDIA BlueField DPU Platform) to offload infrastructure tasks, accelerate AI data movement, and enforce zero-trust security. This design frees up the main server CPU, boosts network throughput, and isolates management from user workloads.

The VIRTIO_F_MRG_RX_BUFFER feature is negotiated by the VirtIO controller running on the ARM cores, but its execution is fully offloaded to the NVIDIA NIC hardware ASIC.

The architecture splits these networking responsibilities:

1. NVIDIA ConnectX (The “East-West” Compute Fabric)

2. NVIDIA BlueField (The “North-South” Management & Storage Fabric)

This article focuses on the second part (2).

An 8-GPU server typically utilizes 1 or 2 BlueField-3 DPUs (or high-end dual-port ConnectX cards configured for storage).

BlueField DPUs feature onboard ARM processor cores and automated hardware accelerators. They isolate and manage the operating system’s connection to NVMe-over-Fabrics (NVMe-oF) storage, handle security firewalls, and route virtualization layers so the host x86 CPUs do not waste processing cycles on network overhead.

The virtio-net-controller lives entirely inside the NVIDIA BlueField DPU subsystem. It does not run on the host x86 CPU or the ConnectX cards. In HGX H100 4U/8U multi-GPU architectures, the virtio-net-controller is a specialized background service (systemd) running on the BlueField DPU’s internal ARM operating system. It serves a critical purpose: hardware-accelerated network virtualization for multi-tenant AI clouds.

Vulnerability details: CVE-2026-65094 – NVIDIA VIRTIO-Net for Bluefield contains a vulnerability in Virtio-Net where a VM user may cause a Write-What-Where condition by crafted message. A successful exploit of this vulnerability may lead to code execution in Virtio-Net scope.

Official announcement: Please refer to link for details – https://nvidia.custhelp.com/app/answers/detail/a_id/5815

CVE-2026-63720: datamodel-code-generator prior to version 0.70.0 contains a code injection vulnerability (19th Jul 2026)

Preface: A machine learning server is a general term for any hardware or software system that hosts and runs AI models. MLServer is a specific, open-source Python software package developed by Seldon used to deploy those models via REST and gRPC APIs.

MLServer, an open-source machine learning model server developed by Seldon, natively uses datamodel-code-generator to automatically build type-safe Python data models.

Background: In machine learning (ML) and AI engineering, Pydantic models are Python classes that enforce strict data validation, type checking, and schema enforcement at runtime using Python type hints. While Pydantic itself is not an ML algorithm, it serves as the foundational data management layer used by ML engineers to handle inputs, control configuration, and format outputs.

In MLOps and production machine learning, datamodel-code-generator is not used to train models, but rather to operationalize deployment pipelines:

•               Standardizing Inputs/Outputs: It parses OpenAPI or JSON Schema specifications to auto-generate Pydantic models. This ensures data payloads sent to an ML model inference endpoint strictly match the expected format.

•               Multi-Model Serving: Production engines like MLServer utilize it to dynamically parse complex API requests across different machine learning frameworks (like Scikit-Learn, XGBoost, or TensorFlow) without manual code validation rewriting.

Reference:

Key differences between General Machine Learning Server (GMSL) and MLServer:

General Machine Learning Server: Can refer to a physical GPU server or various inference software tools (like Triton, TorchServe, or TF Serving).

MLServer: A specific, lightweight open-source tool that serves as the core engine for Kubernetes frameworks like KServe and Seldon Core.

datamodel-code-generator: This code generator creates pydantic v1 and v2 model, dataclasses.dataclass, typing.TypedDict and msgspec.Struct from an openapi file and others.

Vulnerability details: CVE-2026-63720 – datamodel-code-generator prior to version 0.70.0 contains a code injection vulnerability that allows attackers who control input schemas to achieve remote code execution by supplying a malicious customBasePath value containing embedded newlines and a dot-free Python expression. The crafted value is emitted verbatim into a generated ‘from … import …’ statement without identifier validation, causing arbitrary Python code to execute when the generated module is imported.

Official announcement: Please refer to the link for details – https://www.tenable.com/cve/CVE-2026-63720

CVE-2026-17434: A flaw has been found in nanocoai NanoClaw up to 2.0.64 (28th Jul 2026)

Preface: “NanoClaw” is the name of the open-source AI agent software itself. “nanocoai” is simply the name of the GitHub organization/username where the official repository is hosted. NanoClaw is a complete AI agent orchestration framework that acts as an MCP Host while also spinning up its own built-in, dynamic MCP server alongside external ones.

Technical community discussions and news disclosures reveal that NanoClaw has gained high-profile traction:

  • Tech Executives: Senior executives from Amazon, Google, Meta, and Accenture use it as part of their daily workflow automation.
  • Government Leadership: Singapore’s Minister for Foreign Affairs, Vivian Balakrishnan, is among its notable public users.
  • Industry Partners: NanoCo has established strategic partnerships with Docker and Vercel to provide hyper-secure sandbox environments for corporate systems.

Background: In NanoClaw’s architecture, when an AI agent wants to register a new MCP (Model Context Protocol) server, it invokes the handleAddMcpServer function in src/modules/self-mod/request[.]ts. At this point, the system triggers a requestApproval prompt to the administrator (human) and packages the execution parameters into the payload.

To automate tasks, corporate AI needs access to Gmail, databases, or ERP systems. NanoClaw ensures that raw API tokens and credentials never pass through the AI model itself. Credentials reside in a secure Agent Vault. They are dynamically injected via a secure Rust-based gateway only at the exact millisecond an authorized external request is executed.

When NanoClaw attempts high-risk write operations—such as modifying cloud files, sending corporate emails, or executing code—the framework automatically intercepts the action. It pushes an interactive approval card to the manager or employee via Slack, Microsoft Teams, or WhatsApp. The AI cannot fetch credentials or proceed until a human clicks “Approve.”

Vulnerability details: CVE-2026-17434 A flaw has been found in nanocoai NanoClaw up to 2.0.64. Affected is the function handleAddMcpServer of the file src/modules/self-mod/request.ts of the component add_mcp_server. Executing a manipulation can lead to improper authorization. The attack may be launched remotely. The exploit has been published and may be used. This patch is called e5b928783d5c485637565eb07d2967922dfbf8d8. A patch should be applied to remediate this issue.

Official announcement: Please refer to the link for details –

https://www.tenable.com/cve/CVE-2026-17434

https://nvd.nist.gov/vuln/detail/CVE-2026-17434

CVE-2026-65623: Specifically targets a popular HTTP/WebSocket server library for Elixir named Bandit – developed by mtrudel (27th July 2026)

Preface: OpenAI chose the Elixir ecosystem—specifically for its reference implementation of the Symphony agent orchestration framework—because agent orchestration is fundamentally a distributed systems problem, not a machine learning problem.

Background: Elixir has a robust ML ecosystem led by Nx (Numerical Elixir), Axon (deep learning framework), and Bumblebee (pre-trained Transformer models like GPT-2, Stable Diffusion, and Whisper). When developers deploy these models into production, they wrap them in a Phoenix web application. Because Bandit is the default HTTP server for Phoenix, it handles all the incoming HTTP requests containing user input (like prompts or images) and passes them to the underlying AI model for inference.

The Phoenix Framework is a highly scalable web development framework written in the Elixir programming language. Thanks to its core Erlang virtual machine (BEAM), it excels at handling millions of concurrent users simultaneously.

OpenAI uses the Elixir and Erlang ecosystem for agent orchestration projects like OpenAI Symphony, though the Phoenix web framework itself is more famously tied to specialized developer tools like Phoenix[.]new and AI platforms like Phoenix by Arize.

OpenAI relies on the underlying Elixir ecosystem for AI agent orchestration, and its open-source library, Symphony, integrates cleanly into the Phoenix runtime architecture.

But what is the reason Phoenix framework use Elixir HTTP server library?

The Phoenix Framework delegates the actual network plumbing to an underlying Elixir/Erlang HTTP server library (historically Cowboy and natively Bandit) to strictly enforce the separation of concerns.

Vulnerability details: The flaw is located in lib/bandit/websocket/connection[.]ex within the logic handling WebSocket continuation frame reassembly:

Left-Nested iolist and Repeated Traversal: When processing non-final continuation frames, the length validation check oversize_message?/2 appends new frames into a left-nested iolist. It then invokes IO[.]iodata_length/1 to measure the total size of the accumulated buffer every time a new frame arrives.

Quadratic Complexity (O(n²)): Because the buffer size grows linearly with each frame and the entire structure is re-traversed from scratch upon each addition, the algorithm’s time complexity spikes quadratically to O(n²).

Bypassing Length Limits: Although the default max_fragmented_message_size caps the total message size (default 8 MB), it does not limit the number of individual frames. Each malicious frame can carry a payload as small as 1 byte.

Official announcement: Please refer to the link for details –

https://www.tenable.com/cve/CVE-2026-65623

CVE-2026-65598: Race Condition in Git Clone Node Allows Authenticated Users to Achieve Remote Code Execution (24th Jul 2026)

Preface: Could the process wait time lead to a race condition in the vulnerability? Yes, a race condition vulnerability can directly cause or be caused by process wait times, primarily through mechanisms like resource locking and system deadlocks. When multiple processes or threads race to access the same data, the methods used to manage or exploit that timing frequently force processes into a “waiting” state.

Background: The design objective of n8n (including version 1.123.64) is to provide an extensible, fair-code workflow automation platform that bridges visual node-based design with code flexibility. Its primary goals include enabling seamless API orchestration, facilitating AI agent and model integration, and allowing secure self-hosting or cloud deployment. In fact, self-hosting n8n on a production server (via Docker or Node.js) is its primary deployment architecture and the exact environment where its custom node ecosystem is designed to thrive. When you build or install a custom node, n8n scans its configuration folders during the boot sequence. Running n8n on a server ensures that when it restarts to load your custom node, the process is stable, manageable, and isolated.

The true design objective of modern n8n is to let you mix both patterns. You can ground an unpredictable LLM agent inside a highly structured machine workflow—for instance, using deterministic machine nodes to clean input data before handing it to an LLM, or adding a manual human approval node to review an LLM agent’s output before a machine pushes it to production.

Vulnerability details: n8n before 1.123.64, 2.29.8, and 2.30.1 contains a TOCTOU race condition in the Git node’s clone operation that allows authenticated users to bypass path restrictions by swapping a directory for a symlink after the path is validated but before the clone runs. This lets an attacker plant a crafted repository in the community node directory, which n8n loads as a custom node on the next restart, executing arbitrary JavaScript on the server. Both self-hosted and cloud instances are affected.

Official announcement: Please refer to the link for details – https://www.tenable.com/cve/CVE-2026-65598

CVE-2026-24232: About NVIDIA Transformers4Rec (23rd July 2026)

Preface: Transformers4Rec is pre-installed in the merlin-pytorch container that is available from the NVIDIA GPU Cloud (NGC) catalog. Transformers4Rec and NVTabular are deeply related and designed to work together as core components of the NVIDIA Merlin framework. They form an end-to-end, GPU-accelerated pipeline for building sequential and session-based recommendation systems.

Background: Why NVIDIA Developed Transformers4Rec?

•Analogy to Language Modeling: The sequence of a user’s short-term interactions (like clicks, views, or cart additions) is structurally analogous to words in a sentence. NVIDIA recognized that Transformer models, which dominate NLP, are uniquely suited to predict the “next item” a user will click.

•Overcoming RNN/CNN Limitations: Traditional sequential recommendations relied heavily on Recurrent Neural Networks (like GRU4Rec). Transformers handle long-range dependencies better and support parallel training, making them far more accurate and scalable.

•Solving the Recommendation Lag: While NLP research moves at a breakneck pace, adapting those cutting-edge models for recommendation systems historically lagged behind. By integrating directly with the popular Hugging Face Transformers library, NVIDIA allowed data scientists to instantly deploy state-of-the-art architectures (like BERT or GPT) into recommendation pipelines.

•Addressing Data Privacy & Volatility: In industries like e-commerce and streaming, users are often untrackable (not logged in) or have rapidly shifting interests. Session-based Transformers solve this by generating accurate recommendations purely from anonymized, real-time clicks within a single session.

Vulnerability details: CVE-2026-24232 NVIDIA Tranformers4Rec contains a vulnerability where an attacker could cause improper deserialization of untrusted data. A successful exploit of this vulnerability might lead to code execution, data tampering, and information disclosure.

Official announcement: Please refer to link for details – https://nvidia.custhelp.com/app/answers/detail/a_id/5869

Orchestrator Exploit Chain: Defending Against Auth Bypass and Arbitrary Deletion in Network-AI

This article posted on 22nd Jul 2026

Preface: Instead of feeling or understanding the world, AI processes large amounts of data to predict outcomes and identify patterns.

Background: As next-generation security operations scale up, prominent Managed Security Service Providers (MSSPs) and Tier-1 Firewall vendors are increasingly integrating framework-agnostic multi-agent engines like Network-AI into their core security orchestration infrastructure. These engines act as automated “helpers”, using AI to ingest threat telemetry, query internal shared memory backboards, and automatically adjust localized perimeter firewall policies without human oversight.However, security development teams must stay on high alert. Because many vendors pull the open-source base code of Network-AI directly into their custom production pipelines or modify it internally, they inadvertently inherit core flaws embedded within the orchestrator’s architecture.

If developers do not rigorously verify their modified code against these two specific vectors, they face severe operational risks:

The Inbound Risk (CVE-2026-42856): Attackers can abuse unauthenticated open HTTP endpoints (binding to 0[.]0[.]0[.]0 by default) to inject unauthorized commands straight into the orchestrator’s privileged tool registry, turning an enterprise security assistant into a backdoor.

The Local Host Risk (CVE-2026-58484): If the underlying backup pruning or sandbox policy fails to strictly validate file paths, a chained attack could trick the engine into executing recursive directory-traversal deletions, completely wiping out the vendor’s local orchestrator or hosting server.

Vulnerability details:

CVE-2026-42856 is a critical Missing Authentication for Critical Function vulnerability (CWE-306) affecting the Network-AI multi-agent orchestrator in versions prior to 5.1.3.

The MCP HTTP transport fails to perform authentication checks (session, origin, or token verification) before processing JSON-RPC tools/call requests.

By default, the orchestrator listens on 0[.]0[.]0[.]0, exposing the service to anyone with network reachability. Unauthenticated, remote attackers can execute, enumerate, and mutate privileged orchestrator tools.

Update Required: Upgrade your Network-AI instance to version 5.1.3 or later to patch the vulnerable handlePost and handleRPC functions.

CVE-2026-58484: If an attacker chained this vulnerability to a previous unauthorized access vulnerability, modifies the manifest file, and points the path to the enterprise’s root directory ../../ or /, this code will trigger an uncontrollable recursive deletion, directly erasing critical data across the entire server.

Official announcement: Please refer to links for details –

https://www.tenable.com/cve/CVE-2026-58484

https://nvd.nist.gov/vuln/detail/CVE-2026-42856