CVE-2016-8736: Apache OpenMeetings RCE
9.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.90356%
CWE
Published
5/14/2022
Updated
11/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/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.openmeetings:openmeetings-parent | maven | < 3.1.2 | 3.1.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability (CVE-2016-8736) is explicitly an RMI deserialization attack. Java RMI uses serialization/deserialization for remote object communication. If the RMI registry is initialized without proper security controls (e.g., a validating
ObjectInputFilter or security manager), attackers can send malicious serialized objects to execute arbitrary code. The patched version (3.1.2) likely added validation
to the RMI registry setup. The function
responsible for binding RMI services (e.g., RMIServiceImpl.bindToRegistry
) would be the logical point of vulnerability, as it handles RMI endpoint exposure and deserialization logic.