PT-2026-53186 · Npm · Budibase
Published
2026-06-18
·
Updated
2026-06-18
CVSS v3.1
8.4
High
| Vector | AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:H |
Summary
This advisory covers three distinct SQL Injection vulnerabilities within Budibase's database connectors (PostgreSQL, Microsoft SQL Server, and MySQL). Because user-controlled schema and table configurations are interpolated directly into raw SQL queries without proper escaping or parameterization during database introspection, an authenticated administrator can break out of string delimiters. This allows for arbitrary DDL/DML execution, database compromise, and potential underlying OS command execution (e.g., via MS SQL
xp cmdshell).Details
Vulnerability Type & Title
PostgreSQL
SET search path SQL InjectionDescription & Root Cause
The
schema datasource config field is interpolated directly into a raw SQL statement without proper escaping. Double quotes inside the schema name are not escaped, allowing an attacker to break out of the string literal and inject arbitrary SQL.Vulnerable Code:
File:
packages/server/src/integrations/postgres.ts, lines 355–358typescript
const search path = this.config.schema
.split(",")
.map(item => `"${item.trim()}"`) // NO escaping of embedded "
await this.client.query(`SET search path TO ${search path.join(",")};`)node-postgres sends this via the simple query protocol, which supports multi-statement execution with semicolons.Step-by-Step Reproduction
- Edit a PostgreSQL datasource configuration.
- Set the schema field to:
public"; CREATE TABLE pwned AS SELECT usename, passwd FROM pg shadow; -- - Save or trigger a connection test.
- The query executes as:
SET search path TO "public"; CREATE TABLE pwned AS SELECT usename, passwd FROM pg shadow; --; - PostgreSQL executes both statements.
Impact
- Full database compromise. The attacker can read
pg shadowhashes, callpg read file(), or execute any DDL/DML.
Vulnerability Type & Title
Microsoft SQL Server Schema Introspection SQL Injection
Description & Root Cause
Three methods used during schema introspection (
buildSchema) interpolate user-controlled values directly into SQL strings using single-quote delimiters with no escaping.Vulnerable Code:
File:
packages/server/src/integrations/microsoftSqlServer.ts, lines 388–414typescript
getDefinitionSQL(tableName: string, schemaName: string) {
return `select * from INFORMATION SCHEMA.COLUMNS
where TABLE NAME='${tableName}' AND TABLE SCHEMA='${schemaName}'`
}schemaName comes directly from this.config.schema (user config).Step-by-Step Reproduction
- Edit an MS SQL Server datasource configuration.
- Set the schema field to:
dbo'; EXEC xp cmdshell('whoami'); -- - Trigger schema introspection (fetch tables).
- The OS command executes on the SQL server if
xp cmdshellis enabled.
Impact
- Arbitrary SQL execution, potentially leading to OS command execution via
xp cmdshell.
Vulnerability Type & Title
MySQL
multipleStatements: true + DESCRIBE Backtick InjectionDescription & Root Cause
The MySQL integration enables
multipleStatements: true, allowing semicolon-separated multi-statement execution. When introspecting tables, table names are interpolated into a DESCRIBE query wrapped in backticks, but the backticks are not escaped.Vulnerable Code:
File:
packages/server/src/integrations/mysql.ts, lines 172, 305typescript
this.config = { ...config, multipleStatements: true, ... } // line 172
...
{ sql: `DESCRIBE `${tableName}`;` } // line 305 — backtick NOT escapedStep-by-Step Reproduction
- An attacker (or malicious database user) creates a table named
foo`; DROP TABLE users; --. - In Budibase, an admin triggers schema introspection for the database.
- Budibase reads the malicious table name from
INFORMATION SCHEMA.TABLESand inserts it into theDESCRIBEquery. - The backtick breaks out, and the secondary
DROP TABLEpayload executes.
Impact
- Arbitrary SQL execution triggered during schema discovery. Requires prior database catalog manipulation.
Fix
SQL injection
Found an issue in the description? Have something to add? Feel free to write us 👾
Weakness Enumeration
Related Identifiers
Affected Products
Budibase