CVE-2021-27576: Uncontrolled Resource Consumption in Apache OpenMeetings server
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.90174%
CWE
Published
6/16/2021
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.openmeetings:openmeetings-parent | maven | >= 4.0.0, < 6.0.0 | 6.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from two key functions in NetTestWebService
: 1) The GET
handler (download
) generated unlimited bandwidth-intensive streams while only using a non-enforced client counter. 2) The POST
handler (upload
) accepted large payloads without proper rate limiting. Commit 060a311
shows these functions lacked the client count check that was later moved to RateLimitRequestFilter
, and commit afe26c9
reveals insufficient size validation
. The functions directly implement the bandwidth-consuming operations described in CVE-2021-27576
.