CVE-2025-62703
BaseFortify
Publication date: 2025-11-25
Last updated on: 2025-12-30
Assigner: GitHub, Inc.
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| fugue-project | fugue | to 0.9.1 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-502 | The product deserializes untrusted data without sufficiently ensuring that the resulting data will be valid. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a remote code execution issue in the Fugue framework (version 0.9.2 and prior) caused by unsafe deserialization of pickle data in the RPC server. Specifically, the _decode() function uses cloudpickle.loads() without sanitizing the input, allowing an attacker to send malicious serialized Python objects that get deserialized and executed on the server, leading to arbitrary code execution.
How can this vulnerability impact me? :
An attacker exploiting this vulnerability can execute arbitrary code on the server running the Fugue RPC server, potentially leading to full system compromise, data theft, data corruption, or disruption of services.
What immediate steps should I take to mitigate this vulnerability?
Upgrade Fugue to a version later than 0.9.2 where the vulnerability has been patched (after commit 6f25326). Avoid using vulnerable versions of Fugue that deserialize pickle data via FlaskRPCServer without sanitization.