CVE-2024-37062:
ydata unsafe deserialization
7.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.07976%
CWE
Published
6/4/2024
Updated
6/5/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
ydata-profiling | pip | >= 3.7.0, <= 4.8.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability CVE-2024-37062 explicitly involves unsafe deserialization via the load
/loads
functions in the SerializeReport
class. The HiddenLayer advisory confirms that loads
directly uses pickle.loads
on untrusted input, and load
depends on loads
, making both entry points for exploitation. The provided code snippets and exploit example demonstrate these functions' roles in the insecure deserialization chain.