NVIDIA GEN3C
CVE-2026-53805
CRITICAL
Severity by source
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Network-reachable HTTP endpoint, no auth or user interaction, single crafted request triggers pickle deserialization yielding full code execution and complete confidentiality, integrity, and availability impact on the host process.
Primary rating from Vendor (VulnCheck).
CVSS VectorVendor: VulnCheck
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Lifecycle Timeline
2DescriptionCVE.org
NVIDIA Spatial Intelligence Lab's (SIL) GEN3C contains an unauthenticated remote code execution vulnerability in the inference API server where the /request-inference and /seed-model endpoints deserialize raw HTTP request bodies using Python's pickle.loads() without authentication or input validation. Attackers can supply a crafted payload containing a __reduce__ gadget to the inference API port to achieve remote code execution as the inference process.
Articles & Coverage 1
AnalysisAI
Unauthenticated remote code execution in NVIDIA Spatial Intelligence Lab's GEN3C inference API server allows network attackers to execute arbitrary Python code by sending crafted pickle payloads to the /request-inference and /seed-model endpoints. The endpoints feed raw HTTP bodies directly into pickle.loads() with no authentication or validation, so a standard __reduce__ gadget yields code execution as the inference process. No public exploit identified at time of analysis, but the upstream patch and a VulnCheck advisory document the precise vulnerable code path.
Technical ContextAI
GEN3C is NVIDIA's generative 3D scene/video research project from the Spatial Intelligence Lab (nv-tlabs). Its GUI ships a Python-based inference API server that exchanges request dataclasses (InferenceRequest, SeedingRequest, CompressedSeedingRequest) between client and server. The root cause is CWE-502 (Deserialization of Untrusted Data): the server used pickle as its wire format, and pickle.loads() invokes object reconstruction callables, including those supplied via the __reduce__ protocol, allowing any pickled byte stream to execute arbitrary Python at load time. The fix replaces pickle with a new safe_serialization module that encodes payloads as safetensors with a JSON header restricted to an explicit allow-list of dataclasses, so an attacker can no longer smuggle an executable gadget. Affected CPE: cpe:2.3:a:nv-tlabs:gen3c:*:*:*:*:*:*:*:*.
RemediationAI
Upstream fix available (commit db2ffe12ced12ddafcec5e0422ee46ce8520746b in nv-tlabs/GEN3C via PRs #62 and #63); released patched version not independently confirmed, so users should pull the current main branch or cherry-pick that commit, which removes pickle.dumps/loads from gui/api/client.py and introduces gui/api/safe_serialization.py using safetensors plus an allow-listed JSON header. Until the fix is deployed, bind the inference API server strictly to localhost or a trusted management interface, place it behind a reverse proxy that enforces authentication, and use host firewall rules to block the inference port from untrusted networks; the trade-off is that any remote GUI clients will lose connectivity until tunneled through SSH or VPN. Do not attempt to filter the pickle payload at the application layer - pickle gadgets are trivially polymorphic and any allow/deny list of opcodes is unsafe. Refer to the VulnCheck advisory (https://www.vulncheck.com/advisories/nvidia-sil-gen3c-unauthenticated-rce-via-pickle-deserialization-in-inference-api) for upstream guidance.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same weakness CWE-502 – Deserialization of Untrusted Data
View allSame technique Deserialization
View allShare
External POC / Exploit Code
Leaving vuln.today