CVE-2026-48153
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedBudibase is an open-source low-code platform. Prior to 3.39.0, fetchToken in the OAuth2 SDK makes a POST to a builder-supplied URL with plain node-fetch, skipping the blacklist.isBlacklisted check that every other outbound fetch path in the codebase uses. The Joi schema for the OAuth2 URL has no scheme or host restriction. This vulnerability is fixed in 3.39.0.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThis is a Server-Side Request Forgery (SSRF) vulnerability in Budibase's OAuth2 SDK. The fetchToken function makes POST requests to builder-supplied OAuth2 URLs using plain node-fetch, bypassing the blacklist.isBlacklisted check that all other outbound fetch paths implement. The Joi schema validation for OAuth2 URLs lacks scheme/host restrictions, allowing attackers to supply arbitrary URLs and pivot to internal services, cloud metadata endpoints, or internal network resources.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- High
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Locate Budibase installation and versionCheck your running Budibase instance version via the admin UI (usually at /api/global/self), Helm chart, Docker container label, or package.json in the installation directory. Common paths: /opt/budibase or check container image tags.Affected if Version is 3.38.x or earlier (versions prior to 3.39.0 lack the fix)
-
Identify if OAuth2 authentication is configuredInspect your Budibase configuration for OAuth2 provider settings. Check environment variables (e.g., OIDC_ENABLED, OAUTH_PROVIDERS) or the internal database for stored OAuth2 configurations in the _global table.Affected if OAuth2 or OIDC providers are enabled and configured with user-supplied callback URLs
-
Verify OAuth2 URL validation configurationExamine the Joi schema validation rules applied to OAuth2 endpoints in the Budibase source code. Look for any URL validation in the OAuth2 configuration schema that restricts schemes to https:// and blocks internal hosts.Affected if The OAuth2 URL validation schema allows http:// URLs or does not restrict hostnames to external domains
-
Check if fetchToken bypasses blacklistReview the fetchToken function implementation in the OAuth2 SDK code. Locate where the request is made via node-fetch and verify whether blacklist.isBlacklisted() is called before the request.Affected if The fetchToken function makes outbound requests without passing the URL through blacklist.isBlacklisted, while other fetch paths in the same codebase do perform this check
-
Test for SSRF via OAuth2 configurationIf you have access to configure an OAuth2 provider, attempt to set the authorization/token URLs to an internal endpoint (e.g., http://169.254.169.254/latest/meta-data for AWS metadata). Observe if Budibase successfully makes a request to this internal address.Affected if Budibase successfully reaches internal/internal network URLs from the OAuth2 token fetch operation, indicating the blacklist bypass is active
Your environment is affected if you run Budibase version 3.38.x or earlier AND have OAuth2/OIDC authentication enabled, as the fetchToken function will bypass the blacklist check and allow requests to arbitrary URLs including internal services.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade to Budibase version 3.39.0 or later, which implements proper URL validation and blacklist checking for the OAuth2 fetchToken function.
3.39.0
- Identify the currently running Budibase version using the admin console or deployment configuration
- Stop the Budibase service or deployment
- Consult the Budisphere upgrade documentation for your deployment method (Docker, Kubernetes, etc.)
- Pull or deploy Budibase version 3.39.0
- Verify the upgrade was successful by checking the version in the admin console
- Test OAuth2 authentication flows to confirm the fix is working correctly
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation4.0 h
- Testing3.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,800.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-48153 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-48153 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data