Skip to content

Security: NVIDIA/NemoClaw

Security

SECURITY.md

Security

NVIDIA is dedicated to the security and trust of its software products and services, including all source code repositories managed through our organization.

If you need to report a security issue, use the appropriate contact points outlined below. DO NOT report security vulnerabilities through public GitHub issues or pull requests. If a potential security issue is inadvertently reported through a public channel, NVIDIA maintainers may limit public discussion and redirect the reporter to the appropriate private disclosure channels.

How to Report a Vulnerability

Report a potential security vulnerability in NemoClaw or any NVIDIA product through one of the following channels.

NVIDIA Vulnerability Disclosure Program

Submit a report through the NVIDIA Vulnerability Disclosure Program. This is the preferred method for reporting security concerns across all NVIDIA products.

Email

Send an encrypted email to psirt@nvidia.com. Use the NVIDIA public PGP key to encrypt the message.

GitHub Private Vulnerability Reporting

You can use GitHub's private vulnerability reporting to submit a report directly on this repository. Navigate to the Security tab and select Report a vulnerability.

What to Include

Provide as much of the following information as possible:

  • Product name and version or branch that contains the vulnerability.
  • Type of vulnerability (code execution, denial of service, buffer overflow, privilege escalation, etc.).
  • Step-by-step instructions to reproduce the vulnerability.
  • Proof-of-concept or exploit code.
  • Potential impact, including how an attacker could exploit the vulnerability.

Detailed reports help NVIDIA evaluate and address issues faster.

What to Expect

NVIDIA's Product Security Incident Response Team (PSIRT) triages all incoming reports. After submission:

  1. NVIDIA acknowledges receipt and begins analysis.
  2. NVIDIA validates the report and determines severity.
  3. NVIDIA develops and tests corrective actions.
  4. NVIDIA publishes a security bulletin and releases a fix.

Visit the PSIRT Policies page for details on timelines and acknowledgement practices.

While NVIDIA does not currently have a public bug bounty program, we do offer acknowledgement when an externally reported security issue is addressed under our coordinated vulnerability disclosure policy.

NVIDIA Product Security

For security bulletins, PSIRT policies, and all security-related concerns, visit the NVIDIA Product Security portal. Subscribe to notifications on that page to receive alerts when new bulletins are published.

Threat Models

Component-level threat models for security-critical NemoClaw subsystems are documented here so a reviewer or auditor can understand what each subsystem is designed to prevent, which surfaces it protects, and where its guarantees end.

Portable Uninstall Retirement Record (#9189)

Summary. Portable uninstall retains ~/.nemoclaw/portable-uninstall-retirement.json after --destroy-user-data. The current user owns its mode-0700 parent and the mode-0600 record. A later completed onboarding removes the record only after its new authority is durable.

Threat. A host crash can interrupt receipt, sandbox registry, or portable configuration removal. Without a durable discriminator, a retry can enter generic Docker, OpenShell, or model cleanup and remove resources outside the portable receipts.

Guarantee. The record keeps every retry on receipt-owned portable cleanup. It contains a random cleanup ID, receipt basenames derived from SHA-256 hashes of sandbox names, safe relative target identities, and length-framed transaction-scoped SHA-256 content fingerprints. The fingerprints are dictionary-testable pseudonymous local data. The record contains no raw sandbox or gateway names, absolute paths, environment values, configuration bytes, credentials, or secrets. NemoClaw holds one process-bound host fence across every cooperative onboarding, rebuild, and uninstall writer while it publishes or supersedes the record.

Where the guarantee ends. NemoClaw state owned by the same operating-system user is not a trust boundary against a malicious process running as that user. Such a process can change the state before or after a checked filesystem operation. NemoClaw detects mismatched file identities and fingerprints and exits without restoring or removing the ambiguous generation. This control covers cooperating NemoClaw processes, crashes, retries, and recycled process IDs.

Enforced by: src/lib/state/portable-uninstall-retirement.test.ts, src/lib/actions/uninstall/portable-runtime-cleanup.test.ts, src/lib/onboard/portable-resume-lock-boundary.test.ts, and src/lib/state/registry-lock.test.ts cover crash boundaries, async ownership, lock generations, record contents, and completed-onboarding supersession.

Ollama Auth Proxy Loopback Bind Probe (#6014)

Summary. The Ollama auth proxy is the token-authenticated network gate in front of a locally-running Ollama backend on every topology where shouldFrontOllamaWithProxy() returns true (native Linux, macOS, WSL with a native dockerd runtime). Ollama itself has no built-in authentication. The proxy adds a bearer-token check on its own listen port and forwards to Ollama on the backend port. The same proxy also fronts a compatible endpoint that a user onboards without authentication on a loopback host. In both cases the bind probe checks the port in the selected backend URL, while the sandbox reaches the backend through the proxy's configured listen port (NEMOCLAW_OLLAMA_PROXY_PORT, default 11435).

Threat. If the backend the proxy fronts is reachable on any non-loopback interface on the host, an attacker on the same LAN, a co-tenant on a shared host, or any process that can open a socket on the host can bypass the proxy entirely by connecting directly to the backend. For the Ollama daemon this happens when the user sets OLLAMA_HOST=0.0.0.0:11434 or an operator-supplied systemd unit binds a public interface, and the direct connection targets <host-ip>:11434. For a compatible endpoint onboarded without authentication this happens when the user starts the endpoint server bound to a non-loopback interface, and the direct connection targets <host-ip> on the port in the endpoint URL. The proxy's token check on the listen port is useless in either case because the backend is answering questions the proxy never sees.

Guarantee the bind probe adds. Before the proxy accepts any traffic, it walks /proc/net/tcp and /proc/net/tcp6 (Linux) or falls back to lsof -sTCP:LISTEN (macOS and any host without a readable /proc) to enumerate every LISTEN-state socket on the port in the selected backend URL. If any listener is not loopback, the proxy refuses to start with exit code EXIT_BACKEND_NOT_LOOPBACK (2) and writes a structured backend-not-loopback reason to its status file so the host CLI renders a backend-specific remediation: rebind the Ollama daemon to loopback through OLLAMA_HOST when no compatible endpoint was selected, or restart the selected compatible endpoint server bound to a loopback address on its own port and re-run onboarding. Connect-time recovery uses a versioned backend descriptor only when its URL matches the legacy route file; absent, invalid, or mismatched descriptors receive neutral remediation instead of guessed provider guidance. Loopback for this check is the full 127.0.0.0/8 block for IPv4, ::1 for IPv6, and ::ffff:127.0.0.0/104 for IPv4-mapped IPv6, so a legitimate bind to 127.0.0.2 or an IPv4-mapped IPv6 loopback is accepted.

Where the guarantee ends.

  • Docker-Desktop topologies (WSL + Windows-host Ollama, WSL + WSL-local Ollama). These bypass the proxy entirely via containerCanReachHostLoopback() and are explicitly out of scope for this issue and probe. Hardening them is tracked separately.
  • Operator override. NEMOCLAW_OLLAMA_PROXY_SKIP_BIND_PROBE=1 disables the probe. The operator setting the override MUST accept that the security posture is degraded. The proxy emits an audit warning to stderr every time the override runs, naming the skip and the environment variable that produced it. The managed launch discards proxy stdio, so the warning reaches only an operator who runs the proxy directly; a durable audit record is a follow-up. This is not fail-closed by design; the escape hatch exists for hosts where /proc is unreadable and lsof is missing, and for CI environments that intentionally exercise the non-loopback path.
  • Probe unavailable (both /proc and lsof absent). The proxy warns and continues rather than fail-closed. Same reasoning as the operator override: on a host where neither probe surface exists, refusing to start would break the headless install contract with no operator recourse. The systemd loopback override (retained by design for this PR) provides defense in depth on Linux for the managed Ollama daemon; NemoClaw does not manage the service behind a compatible endpoint.
  • Partial /proc visibility on Linux. When /proc/net/tcp6 is absent (an IPv6-disabled kernel), the probe classifies from IPv4 data alone, which is complete. When /proc/net/tcp6 exists but cannot be read, the probe degrades to the lsof fallback, which sees both address families; if lsof is also unavailable, the probe-unavailable case above applies.
  • Runtime bind changes. The probe runs at startup only. A backend that binds loopback at proxy-start time and later rebinds to a public interface is out of scope. Adding a periodic re-probe is a follow-up.
  • Inference providers this proxy does not front. The probe covers only what the proxy forwards to: the local Ollama daemon, or a compatible endpoint onboarded without authentication. NIM, the NemoClaw-managed Local vLLM and llama.cpp providers, remote providers, and compatible endpoints onboarded with a credential do not route through this proxy and are not covered. A vLLM server you run yourself and onboard as an unauthenticated compatible endpoint is covered, because that path is the one noAuthProxy() fronts.

Enforced by: test/inference/ollama/ollama-auth-proxy-bind-probe.test.ts covers the /proc and lsof loopback classifiers (accepts full 127.0.0.0/8 including IPv4-mapped IPv6, refuses wildcard and LAN-scope, refuses the lsof * token) and pins EXIT_BACKEND_NOT_LOOPBACK = 2; the host CLI acts on the structured status reason, which the following tests cover. src/lib/inference/ollama/proxy-status.test.ts covers Ollama, compatible-endpoint, and unknown-backend remediation. test/inference/ollama/ollama-proxy-startup.test.ts covers the real startup path (port conflict, spawn failure, slow bind, IPv6-only listener, reclaim of a prior NemoClaw proxy) and proves noAuthProxy() keeps the refusal and the endpoint remediation for a compatible endpoint, including one on the Ollama port. test/inference/ollama/ollama-proxy-recovery.test.ts covers descriptor persistence, legacy migration, cross-gateway adoption, and structured recovery refusals for managed Ollama and a compatible endpoint on the same port.

Documented Risk Acceptances

The following security-relevant defaults are intentional. Each item names the code path that carries the constraint and the compensating controls that make the trade-off acceptable.

Deep Agents Code proxy env file is world-readable (mode 0444)

  • Location: agents/langchain-deepagents-code/start.sh (prepare_runtime_env)
  • Constraint: /tmp/nemoclaw-proxy-env.sh is sandbox-user-owned convenience state, not an integrity boundary. It is created with mode 0444 so independent login and exec shells can source the same credential-free settings. The Deep Agents Code runtime deliberately runs as the non-root sandbox user, unlike the root-supervised OpenClaw and Hermes startup paths.
  • Compensating controls:
    1. The file is credential-free by construction. prepare_runtime_env writes normalized proxy config and inherited trust-store paths. It does not persist LangSmith tracing, project, or API key variables.
    2. A regression test in test/agents/deepagents/langchain-deepagents-code-image.test.ts injects token-shaped values through LangSmith tracing and both project variables, scans the emitted env file against canonical token shapes, and fails CI if any secret-shaped value is present.
    3. The root-owned, image-baked proxy host/port files and direct dcode-launcher.sh boundary remain the routing source of truth. Focused and live login-shell checks compare the sourced convenience values with that root-owned source; file metadata checks detect accidental drift but do not claim sandbox-owner tamper resistance.
  • When to revisit: If a future change adds credential-shaped values to the env-file writer, or if the Deep Agents Code runtime moves back to the root-supervised startup model, revisit the mode and the compensating controls together.

There aren't any published security advisories