| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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.
Report a potential security vulnerability in NemoClaw or any NVIDIA product through one of the following channels.
Submit a report through the NVIDIA Vulnerability Disclosure Program. This is the preferred method for reporting security concerns across all NVIDIA products.
Send an encrypted email to psirt@nvidia.com. Use the NVIDIA public PGP key to encrypt the message.
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.
Provide as much of the following information as possible:
Detailed reports help NVIDIA evaluate and address issues faster.
NVIDIA's Product Security Incident Response Team (PSIRT) triages all incoming reports. After submission:
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.
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.
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.
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.
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.
Threat. If the Ollama backend is reachable on any non-loopback interface on the host (e.g. the user set OLLAMA_HOST=0.0.0.0:11434, or an operator-supplied systemd unit binds to a public interface), 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 <host-ip>:11434. The proxy's token check on the listen port is useless in that case because Ollama 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 Ollama backend port. 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 an actionable remediation. Loopback for this check is the full 127.0.0.0/8 block for IPv4, ::1 for IPv6, and ::ffff:127.0.0.0/8 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.
Enforced by: test/ollama-auth-proxy-bind-probe.test.ts covers every branch of both the /proc and lsof classifiers (accepts full 127.0.0.0/8 including IPv4-mapped IPv6, refuses wildcard and LAN-scope, refuses the lsof * token) and the EXIT_BACKEND_NOT_LOOPBACK = 2 contract with the host CLI.
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.
| Back | FazBrowse Home | New Git URL |