CVE-2016-6809:
Apache Tika allows Java code execution for serialized objects embedded in MATLAB files
9.8
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
10/17/2018
Updated
4/12/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.tika:tika-core | maven | < 1.14 | 1.14 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe deserialization via JMatIO's MatFileReader in Apache Tika's MatParser. The patch added a static block in MatParser.java to disable object deserialization (MatFileReader.setAllowObjectDeserialization(false)), which was missing in vulnerable versions. The parse method is the entry point that triggers JMatIO's deserialization logic without this safeguard, making it the vulnerable function. The absence of the static initializer in pre-1.14 versions left the deserialization flag enabled by default, leading to CWE-502 exploitation.