CVE-2023-50718: NocoDB SQL Injection vulnerability
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.20536%
CWE
Published
5/13/2024
Updated
5/14/2024
KEV Status
No
Technology
JavaScript
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
nocodb | npm | <= 0.202.9 | 0.202.10 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability is explicitly traced to the columnList method in VitessClient.ts where user-supplied table_name (args.tn) is concatenated into a raw SQL query. The code pattern '${args.tn}'
demonstrates unsafe string interpolation rather than using prepared statements. This matches classic SQL injection patterns and is explicitly called out in all vulnerability descriptions as the root cause.