Cyber Resilience

CVE-2026-25041

HighPublic PoCRCE

Published: 09 March 2026

Published
09 March 2026
Modified
13 March 2026
KEV Added
Patch
CVSS Score v4 8.6 CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0048 37.7th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-25041 is a high-severity OS Command Injection (CWE-78) vulnerability in Budibase Budibase. Its CVSS base score is 8.6 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 37.7th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and AC-6 (Least Privilege).

Deeper analysis

CVE-2026-25041 is a command injection vulnerability (CWE-78) affecting Budibase, a low-code platform for creating internal tools, workflows, and admin panels. The issue exists in versions 3.23.22 and earlier, specifically within the PostgreSQL integration located at packages/server/src/integrations/postgres.ts. User-controlled configuration values, including database name, host, password, and other connection parameters, are directly interpolated into shell commands without proper sanitization, enabling arbitrary command execution.

The vulnerability carries a CVSS v3.1 base score of 7.2 (AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H). Exploitation requires high privileges (PR:H) and can be performed over the network (AV:N) with low attack complexity (AC:L) and no user interaction (UI:N). Successful attacks enable high-impact compromise of confidentiality, integrity, and availability (C:H/I:H/A:H) within the unchanged scope (S:U), potentially allowing privileged users to execute arbitrary shell commands on the server.

Budibase has addressed the vulnerability via commit 9fdbff32fb9e69650ba899a799e13f80d9b09e93, with full details provided in the GitHub security advisory GHSA-726g-59wr-cj4c. The vulnerable code snippet appears at lines 529-531 in the file at https://github.com/Budibase/budibase/blob/f34d545602a7c94427bae63312a5ee9bf2aa6c85/packages/server/src/integrations/postgres.ts. Security practitioners should upgrade to a patched version and review PostgreSQL integration configurations for sensitive deployments.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability details

Budibase is a low code platform for creating internal tools, workflows, and admin panels. In 3.23.22 and earlier, the PostgreSQL integration constructs shell commands using user-controlled configuration values (database name, host, password, etc.) without proper sanitization. The password and other…

more

connection parameters are directly interpolated into a shell command. This affects packages/server/src/integrations/postgres.ts.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1059.004 Unix Shell Execution
Adversaries may abuse Unix shell commands and scripts for execution.
Why these techniques?

Command injection (CWE-78) in Budibase Postgres integration directly allows arbitrary Unix shell command execution via unsanitized config interpolation; maps to T1190 for remote exploitation of the public-facing app and T1059.004 for resulting shell access.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-25044Same product: Budibase Budibase
CVE-2026-35216Same product: Budibase Budibase
CVE-2026-41428Same product: Budibase Budibase
CVE-2026-31816Same product: Budibase Budibase
CVE-2026-25737Same product: Budibase Budibase
CVE-2026-35214Same product: Budibase Budibase
CVE-2026-31818Same product: Budibase Budibase
CVE-2026-30240Same product: Budibase Budibase
CVE-2026-27702Same product: Budibase Budibase
CVE-2026-25040Same product: Budibase Budibase

Affected Assets

budibase
budibase
≤ 3.23.22

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation and sanitization of untrusted configuration values before they are used to construct shell commands, blocking the CWE-78 interpolation flaw in postgres.ts.

prevent

Enforces least functionality by disabling or restricting the PostgreSQL integration's use of system shell commands, eliminating the attack surface even if inputs remain unsanitized.

prevent

Limits the privileges granted to Budibase service accounts or integration users, reducing the impact of any successful command injection to the minimum required scope.

References