CVE-2022-24289: Deserialization of untrusted data in Apache Cayenne
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.87441%
CWE
Published
2/12/2022
Updated
2/3/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.cayenne:cayenne-server | maven | < 4.1.1 | 4.1.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability centers around unsafe Hessian deserialization in Cayenne's ROP feature. While no direct patch code is shown, the advisory explicitly mentions that patched versions (4.1.1+) introduced whitelisting for Hessian deserialization. The core vulnerable function must be the Hessian deserialization entry point, which in Java Hessian implementations is typically a deserialize()
method in the serializer class. The package structure follows Cayenne's remote service implementation conventions.