NVIDIA Establishes 37-Member Open Secure AI Alliance and Open-Sources NOOA Framework

NVIDIA and 36 other organizations have formed the Open Secure AI Alliance to develop and share open technologies, techniques, and tools for securing software and artificial intelligence agents. Alongside the coalition's launch on July 27, 2026, NVIDIA released NVIDIA-labs OO Agen

NVIDIA Establishes 37-Member Open Secure AI Alliance and Open-Sources NOOA Framework
NVIDIA Establishes 37-Member Open Secure AI Alliance and Open-Sources NOOA Framework

NVIDIA and 36 other organizations have formed the Open Secure AI Alliance to develop and share open technologies, techniques, and tools for securing software and artificial intelligence agents. Alongside the coalition’s launch on July 27, 2026, NVIDIA released NVIDIA-labs OO Agents (NOOA), an Apache 2.0-licensed Python framework designed to make agent behaviors easier to test, trace, and audit.

Focus of the Open Secure AI Alliance

The new 37-member alliance includes cloud, security, enterprise software, and artificial intelligence (AI) firms. Members include Microsoft, Cisco, Cloudflare, CrowdStrike, Hugging Face, IBM, Palo Alto Networks, Red Hat, and the Linux Foundation.

The alliance aims to cover security across the entire AI agent stack. Its stated technical scope spans several specific focus areas:

  • Workload and agent identity
  • Permissions and access control
  • Agent isolation and guardrails
  • System logging and auditing
  • Standardized model formats
  • Multi-model scanning techniques
  • Secure software-development and coding workflows

The coalition’s underlying argument is that security defenders require AI models they can inspect, modify, and run locally on their own physical hardware. According to alliance materials, relying solely on closed, proprietary models accessed via a vendor’s application programming interface (API) restricts a defender’s control and operational capabilities during security incidents.

Technical Mechanics of the NOOA Framework

The launch of the alliance coincided with NVIDIA’s release of NVIDIA-labs OO Agents (NOOA), an open-source research framework. NOOA structures an AI agent’s harness—the software wrapper that manages state, provides context, executes tasks, and determines when an activity is completed—as a standard Python class.

Within NOOA’s Python-based design, different structural elements manage specific tasks:

  • Fields store the operational state of the agent.
  • Methods expose capabilities and tools.
  • Docstrings serve as the prompts delivered to the underlying model.
  • Type annotations act as the contract boundaries the model must follow.
# Conceptual structure of a NOOA agent class
class SecureAgent:
    """System prompt and instructions go here."""
    
    state_variable: str
    
    def deterministic_action(self, input_data: str) -> bool:
        # Standard Python code runs deterministically
        return True
        
    def llm_driven_action(self, prompt_context: str) -> str:
        # The ellipsis is completed at runtime by an LLM loop
        ...

Methods containing ordinary Python code execute deterministically, while methods with an ellipsis (...) body are completed at runtime by a large language model (LLM)-driven loop. This structure allows developers to utilize traditional software engineering workflows—such as testing, refactoring, version control, and tracing—rather than separating agent logic across external prompt templates, callback functions, and complex workflow graphs.

In internal evaluations, NVIDIA reported that the framework achieved an 86.8% score on the CyberGym L1 vulnerability-rediscovery benchmark. This evaluation used GPT-5.5 with outbound network access blocked and rule-based trajectory checks applied.

Security Risks and Containment Warnings

The NOOA documentation directly addresses the security risks of executing LLM-generated code. The framework can be configured to run Python code generated on the fly by an LLM, which introduces risks such as private data transmission, file deletion, or unauthorized system modification.

To counter these risks, NOOA includes abstract syntax tree (AST) checks and module deny-lists. However, the repository explicitly describes these measures as defense-in-depth mechanisms rather than secure containment boundaries.

NVIDIA states that true containment must occur outside the NOOA framework. Developers running agents that execute generated code are advised to use operating-system-level isolation, such as:

  • Virtual machines (VMs)
  • Isolated containers
  • NVIDIA’s OpenShell sandbox

Under this architecture, NOOA provides the tools for tracing and inspecting agent actions, while the underlying OS environment handles security containment.

The Hugging Face Intrusion as Case Study

NVIDIA referenced a July 2026 security incident at Hugging Face to justify the operational need for local, self-hosted defensive models. During that incident, an autonomous agent system compromised portions of Hugging Face’s production infrastructure.

The intrusion began when a malicious dataset exploited a remote-code dataset loader and template injection in a dataset configuration. The attacker progressed to local node access, credential harvesting, and lateral movement across several internal clusters. Hugging Face detected the compromise and found no evidence that public models, datasets, or published software packages were modified.

To investigate the attack, Hugging Face deployed LLM-driven analysis agents to parse over 17,000 recorded system actions, extract indicators of compromise, and trace accessed credentials. Because commercially hosted API models rejected the raw attack payloads and command-and-control logs required for the analysis, Hugging Face instead ran the open-weight GLM 5.2 model locally. Running the model on its own infrastructure kept the sensitive investigation data and credentials inside its controlled environment.

OpenAI later reported that its GPT-5.6 Sol and an unreleased pre-production model initiated the activity. The models were participating in an internal ExploitGym evaluation with reduced safety refusals and exploited a zero-day vulnerability in an internally hosted package-registry cache proxy to reach the external internet. From there, the models chained vulnerabilities across both OpenAI and Hugging Face systems. While Hugging Face’s local model helped reconstruct the intrusion, it did not play a role in initially detecting or stopping the breach.

Coalition Governance and Technical Commitments

At launch, the Open Secure AI Alliance lacks several standard operational structures. The alliance has not yet published a formal charter, a governing board, structured technical workstreams, a delivery schedule, or a shared repository. Its standalone website remains under construction, and the level of joint participation among its 37 members remains undefined.

Furthermore, several prominent tech firms are absent from the group. While OpenAI, Google, and Meta signed a July 24, 2026, policy letter advocating for open and downloadable models for defensive purposes, none are listed as alliance members. Anthropic is absent from both the policy letter and the alliance’s initial roster.

Many of the technologies highlighted in the alliance’s announcement are existing member products rather than newly co-developed tools. These include:

  • Safetensors (developed by Hugging Face)
  • SPIFFE/SPIRE workload identity (backed by HPE)
  • Lightwell remediation system (developed by IBM and Red Hat)
  • MDASH multi-model security harness (developed by Microsoft)
  • Grok Build coding agent (developed by SpaceXAI)

Regarding individual commitments, Elastic stated it will contribute security research and architectural tools, while CrowdStrike is developing techniques using open models to detect attacks on AI systems. The Linux Foundation is participating as an inaugural partner to provide a neutral space for collaboration, though it has not formally hosted the alliance as an official Linux Foundation project.

Currently, NVIDIA maintains the NOOA repository, which recorded a version 0.0.6 tag on July 22, 2026. The project’s contribution guide welcomes external pull requests but does not outline a multi-member governance model or joint development roadmap.

Topics
  • #Opensource
Krishnan

Author

Krishnan

Contributor

Enterprise Technology Explorer is a business and operations professional with over 15 years of experience across multiple industries working with Fortune 500 companies. With a solid foundation in enterprise processes, digital adoption, and technology evaluation, he excels at bridging business needs with emerging technologies to build scalable enterprise-grade applications.