CVE-2026-48152: Budibase: Basic app users can exfiltrate stored REST datasource auth by rewriting datasource base URL

Published May 27, 2026
·
Updated

Summary Budibase stores external REST datasource credentials server-side and documents that database credentials are applied server-side and are not exposed in the UI. The REST datasource implementation redacts stored Basic/Bearer/OAuth2 auth secrets before returning datasource data to clients. However, the single-datasource GET and PUT routes are guarded by generic TABLE READ, not by Builder/Admin permission or datasource-specific ownership/resource checks.

The built-in Basic app user role maps to the WRITE permission set, which includes table read/write and query write. A Basic user can therefore read an existing REST datasource, receive redacted authConfigs values, submit an update that changes only config.url while keeping the redacted placeholders, and trigger an existing saved relative-path REST query. During update, mergeConfigs() restores the old stored secret when it sees the redaction placeholder. During query execution, Budibase prefixes the attacker-controlled datasource config.url to the relative query path and applies the resolved stored auth headers. The result is server-side disclosure of the builder-configured REST Authorization secret to an attacker-controlled listener.

Source evidence - packages/server/src/api/routes/datasource.ts: datasource list/create/delete routes are on builderRoutes, but GET /api/datasources/:datasourceId and PUT /api/datasources/:datasourceId are in authorizedRoutes guarded only by PermissionType.TABLE and PermissionLevel.READ. - packages/server/src/api/routes/datasource.ts: the :datasourceId routes do not attach datasource-specific resource authorization. - packages/backend-core/src/security/roles.ts: built-in Basic user maps to BuiltinPermissionID.WRITE. - packages/backend-core/src/security/permissions.ts: WRITE grants READ/EXECUTE levels and includes QUERY WRITE and TABLE WRITE. - packages/server/src/api/controllers/datasource.ts: datasourceController.update reads the stored datasource, merges ctx.request.body into it, writes the result back, and returns a redacted copy. - packages/server/src/sdk/workspace/datasources/datasources.ts: removeSecrets() redacts REST Basic/Bearer/OAuth2 secrets to PASSWORDREPLACEMENT. - packages/server/src/sdk/workspace/datasources/datasources.ts: mergeConfigs() restores the old stored auth-secret field when the update body sends the redaction placeholder for the same auth config. - packages/server/src/integrations/rest.ts: relative REST query paths are prefixed with datasource config.url. - packages/server/src/integrations/rest.ts: REST execution resolves the selected auth config and applies the resulting auth headers to the outbound request. - packages/server/src/api/routes/query.ts: saved query execution POST /api/v2/queries/:queryId is guarded by QUERY WRITE, which the Basic role has through the WRITE permission set.

Reproduction outline No production systems were tested. This is source-backed and has a local static verifier plus a proof helper for an already-running authorized instance.

1. Deploy a current Budibase instance. 2. As a builder/admin, create and publish an app. 3. As the builder/admin, create a REST datasource with: - config.url set to a benign legitimate API base URL. - a stored REST auth config containing a sentinel secret, such as a Bearer token BUDIBASERESTTOKENSENTINEL. 4. As the builder/admin, create a saved REST query that uses a relative path and that auth config. 5. Add a non-builder Basic app user. 6. As the Basic user, confirm negative controls: - Builder-only datasource list/create/preview routes are denied. - The user is not a builder/admin. 7. As the Basic user, call GET /api/datasources/{datasourceId}. The response returns the datasource and redacted auth placeholders, not the raw secret. 8. As the Basic user, call PUT /api/datasources/{datasourceId} with the same redacted datasource body but with config.url changed to an attacker-controlled HTTP listener. 9. As the Basic user, execute the saved query with POST /api/v2/queries/{queryId}. 10. Expected vulnerable result: the attacker listener receives the server-side REST request with the preserved stored Authorization material, even though the Basic user never knew the raw secret and should not be able to administer datasource credentials.

Local source verifier:

bash python3 docker-proofs/s60/verifybudibasebasicuserdatasourcesourcepath.py

Expected success line:

text SOURCEPATHVERIFIED budibasebasicuserdatasourcerestsecretexfil

Observed May 1, 2026:

- origin/master was 8e6bf89acf1f602f3334592c4c8cd14e79f5362a. - Latest release was 3.37.2 from Apr 30, 2026. - The source verifier passed and confirmed the route, role, redaction, merge, URL-prefixing, auth-header, and saved-query execution conditions.

Proof-assist helper:

bash python3 docker-proofs/s60/proofbudibasebasicuserdatasourceupdaterestsecretexfil.py \ --base-url http://127.0.0.1:10000 \ --app-id <published-app-id> \ --datasource-id <rest-datasource-id> \ --query-id <saved-relative-rest-query-id> \ --cookie '<basic-user-session-cookie>' \ --expected-secret BUDIBASERESTTOKENSENTINEL

The helper does not start, stop, or delete containers/resources. It targets an authorized already-running instance, rewrites only config.url, captures the outbound Authorization material, and restores the original datasource by default.

Impact This breaks the intended application-user versus builder/admin boundary for external REST datasource credentials. A Basic app user should be able to use published app functionality, but should not be able to administer datasource connection settings or extract builder-configured REST auth secrets. In a realistic internal-tool deployment, REST datasource auth configs often contain bearer tokens, API keys, Basic credentials, OAuth client secrets, service account tokens, or integration credentials for ticketing, CRM, ERP, security, and operational systems.

An attacker with only Basic app-user access to an app that uses an authenticated REST datasource can redirect future query traffic to an attacker-controlled endpoint and collect the preserved server-side Authorization header. This is distinct from public REST datasource SSRF issues because the core impact is stored credential disclosure across the role boundary, and it works with an external attacker-controlled URL rather than depending on internal-network reachability.

Remediation ideas - Move GET/PUT /api/datasources/:datasourceId behind Builder/Admin datasource permissions, or add datasource-specific resource authorization. - Do not allow non-builder app users to update datasource config, authConfigs, base URL, default headers, or plugin connection settings. - Split non-sensitive datasource metadata reads from credential-bearing/admin datasource reads. - Treat redaction placeholders as valid only in trusted builder/admin update flows. - Consider rotating REST datasource auth secrets for affected deployments after patching.

Duplicate/nearby public issue notes Public triage found known Budibase REST datasource SSRF and protected-endpoint auth-bypass CVEs, but no obvious public duplicate for this specific Basic app-user PUT /api/datasources/:id role-boundary issue combined with preserved REST authConfigs secret exfiltration through a changed datasource base URL.

Other sources

Budibase is an open-source low-code platform. Prior to 3.39.0, the single-datasource GET and PUT routes are guarded by generic TABLE READ, not by Builder/Admin permission or datasource-specific ownership/resource checks. The built-in Basic app user role maps to the WRITE permission set, which includes table read/write and query write. A Basic user can therefore read an existing REST datasource, receive redacted authConfigs values, submit an update that changes only config.url while keeping the redacted placeholders, and trigger an existing saved relative-path REST query. During update, mergeConfigs() restores the old stored secret when it sees the redaction placeholder. During query execution, Budibase prefixes the attacker-controlled datasource config.url to the relative query path and applies the resolved stored auth headers. The result is server-side disclosure of the builder-configured REST Authorization secret to an attacker-controlled listener. This vulnerability is fixed in 3.39.0.

NVD

Affected Software

2 affected componentsFixes available
budibase Budibase<3.39.0
npm/@budibase/server<3.39.0
3.39.0

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/@budibase/server to a version that resolves this vulnerability.

    Fixed in 3.39.0
  2. Configuration

    Restrict GET /api/datasources/:datasourceId and PUT /api/datasources/:datasourceId to Builder/Admin roles or enforce datasource-specific resource authorization so non-builder Basic app users cannot access or update single-datasource routes.

    Budibase server datasource API authorization for GET/PUT /api/datasources/:datasourceId = Builder/Admin or datasource-specific ownership checks
  3. Configuration

    Prevent non-builder app users from updating datasource connection fields. Reject or 403 updates from non-builder roles that include config.url, authConfigs, base URL, default headers, or plugin connection settings; require builder/admin role for such changes.

    Budibase datasource update logic (mergeConfigs) updatable_fields_by_non-builder = do not allow config.url, authConfigs, base URL, default headers, or plugin connection settings to be modified by non-builder roles
  4. Configuration

    Split non-sensitive datasource metadata reads from credential-bearing/admin reads. Ensure reads available to non-builder users never return credential-bearing fields (even redacted placeholders) in contexts that permit subsequent merge-based restoration.

    Budibase datasource read API exposed_fields_for_non-builder = non-sensitive metadata only
  5. Configuration

    Treat redaction placeholders (PASSWORD_REPLACEMENT) as valid indicators to restore stored secrets only when the update is performed by a trusted builder/admin flow. For non-builder updates, do not restore secrets when placeholders are present; require explicit secret re-entry or deny the update.

    Budibase datasource mergeConfigs / redaction handling accept_redaction_placeholder = only in trusted builder/admin update flows
  6. Operational

    After applying fixes or upgrading to 3.39.0, rotate REST datasource authentication secrets (Bearer tokens, API keys, Basic credentials, OAuth client secrets, service account tokens, etc.) for affected deployments to mitigate any previously-exfiltrated credentials.

Event History

May 27, 2026
CVE Published
via MITRE·04:56 PM
Data Sourced
via MITRE·04:56 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·06:16 PM
DescriptionSeverityWeakness
Jun 12, 2026
Advisory Published
via GitHub·06:28 PM
Data Sourced
via GitHub·06:28 PM
DescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-48152?

CVE-2026-48152 has a high severity rating of 8.1.

2

How do I fix CVE-2026-48152?

To mitigate CVE-2026-48152, upgrade Budibase to version 3.39.0 or later.

3

What are the potential risks associated with CVE-2026-48152?

CVE-2026-48152 allows basic app users to exfiltrate stored REST datasource authentication information.

4

Who is affected by CVE-2026-48152?

Users of Budibase prior to version 3.39.0 are potentially affected by CVE-2026-48152.

5

What does CVE-2026-48152 allow attackers to do?

CVE-2026-48152 allows attackers to rewrite the datasource base URL and access sensitive authentication credentials.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203