CVE-2023-41886: OpenRefine vulnerable to arbitrary file read in project import with mysql jdbc url attack
7.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.81871%
CWE
Published
9/12/2023
Updated
11/11/2023
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:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.openrefine:database | maven | <= 3.7.4 | 3.7.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unsafe concatenation of user-controlled parameters (like databaseName) into JDBC URLs across multiple database connection managers. The MySQLConnectionManager's getDatabaseUrl method is explicitly highlighted in the vulnerability details as allowing parameter injection via the databaseName field. The commit diff shows these methods were replaced with a URI builder that properly escapes parameters, confirming their role in the vulnerability. While the exploit was demonstrated in MySQL, similar methods in other database managers follow the same vulnerable pattern.