CVE-2024-10550:
H2O Vulnerable to Denial of Service (DoS) via `/3/ParseSetup` Endpoint
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.19654%
CWE
Published
3/20/2025
Updated
3/20/2025
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
h2o | pip | ||
ai.h2o:h2o-core | maven |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the ParseSetupHandler.guessSetup
method where user-supplied input (column_name_filter
) is directly compiled into a regex pattern via Pattern.compile()
. The lack of regex complexity checks, timeouts, or input validation allows attackers to craft regex patterns that trigger inefficient matching behavior, leading to DoS. The code reference at line 121 in the provided GitHub commit confirms this insecure pattern compilation.