CVE-2026-94093: DLR-RM stable-baselines3 save_util.py VecNormalize.load deserialization
A security vulnerability has been detected in DLR-RM stable-baselines3 up to 2.9.0. This affects the function PPO.load/loadreplaybuffer/VecNormalize.load of the file saveutil.py. Such manipulation leads to deserialization. It is possible to launch the attack remotely. The exploit has been disclosed publicly and may be used. In v2.9.0 the PyTorch tensor load path is hardened (weightsonly=True), but that hardening was later reverted on master via PR #1913 "Hotfix: revert loading with weightsonly=True" [blocked] to fix PyTorch 1.13 compat - so even the one "safe" path is inconsistent across versions. #2281 was closed as a duplicate of #1831 since both are unsafe pickle deserialization - but #1831's fix (PR #41) only gated the Hugging Face Hub loader in the separate huggingfacesb3 package. This finding covers the core stablebaselines3 load APIs (PPO.load, loadreplaybuffer, VecNormalize.load), which have no safe mode or gate and remained exploitable in v2.9.0 until the outstanding hardening (PR #2264) ships.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
DLR-RM stable-baselines3to a version that resolves this vulnerability.Fixed in 2.9.0Patch #2264 - Compensating control
Restrict network access to any service that exposes remote loading of models/replay buffers (e.g., endpoints that call PPO.load, PPO.load_replay_buffer, or VecNormalize.load) to prevent remote exploitation via malicious pickle deserialization.