The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-31818

CVE-2026-31818: Budibase SSRF Vulnerability

CVE-2026-31818 is a server-side request forgery flaw in Budibase's REST datasource connector that bypasses SSRF protections due to missing IP blacklist configuration. This article covers technical details and mitigations.

Published: April 10, 2026

CVE-2026-31818 Overview

CVE-2026-31818 is a critical Server-Side Request Forgery (SSRF) vulnerability in Budibase, an open-source low-code platform. The vulnerability exists in Budibase's REST datasource connector, where the platform's SSRF protection mechanism is rendered completely ineffective due to a configuration issue. The BLACKLIST_IPS environment variable is not set by default in any of the official deployment configurations, causing the blacklist function to unconditionally return false and allow all requests through without restriction.

Critical Impact

Attackers with low-level platform access can bypass SSRF protections to access internal network resources, cloud metadata services, and sensitive internal APIs, potentially leading to full infrastructure compromise.

Affected Products

  • Budibase versions prior to 3.33.4
  • All official Budibase deployment configurations (Docker, Kubernetes, etc.)
  • Self-hosted Budibase instances without manual BLACKLIST_IPS configuration

Discovery Timeline

  • 2026-04-03 - CVE-2026-31818 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-31818

Vulnerability Analysis

This SSRF vulnerability stems from a fundamental design flaw in how Budibase implements its IP blacklisting mechanism. The REST datasource connector is intended to prevent requests to internal network addresses, but the protection is ineffective by default. When users configure REST API datasources within their Budibase applications, the platform should validate and block requests targeting internal IP ranges such as 127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16. However, because the BLACKLIST_IPS environment variable is never initialized in official deployment templates, the blacklist validation logic short-circuits and permits all outbound requests.

An authenticated attacker with low privileges can exploit this vulnerability to make the Budibase server send HTTP requests to arbitrary internal resources. This could enable access to cloud instance metadata endpoints (e.g., AWS IMDSv1 at 169.254.169.254), internal microservices, databases, or administrative interfaces that should not be externally accessible. The scope change indicated in the vulnerability assessment means successful exploitation can impact resources beyond the vulnerable component itself.

Root Cause

The root cause is an insecure default configuration in the SSRF protection mechanism. The blacklist.ts module checks the BLACKLIST_IPS environment variable to determine which IP ranges to block. When this variable is empty or undefined—which is the default state in all official deployment configurations—the blacklist function unconditionally returns false, effectively disabling all SSRF protections. This represents a classic case of security controls that exist in code but are not enabled by default, creating a false sense of security.

Attack Vector

The attack is network-based and requires only low-level authenticated access to the Budibase platform. An attacker can create or modify a REST datasource to target internal network addresses. Since the blacklist check fails open, the Budibase server will make the request on behalf of the attacker. This can be weaponized to:

  1. Access cloud provider metadata services to steal IAM credentials
  2. Scan internal network infrastructure
  3. Interact with internal services that trust requests from the Budibase server
  4. Exfiltrate sensitive data from internal resources

The following patch shows how the vulnerability was addressed by implementing a default blacklist of private IP ranges:

typescript
 import env from "../environment"
 import { promisify } from "util"
 
-let blackListArray: string[] | undefined
+const DEFAULT_BLACKLIST = [
+  "127.0.0.0/8",
+  "10.0.0.0/8",
+  "172.16.0.0/12",
+  "192.168.0.0/16",
+  "169.254.0.0/16",
+  "0.0.0.0/8",
+  "::1/128",
+  "fc00::/7",
+  "fe80::/10",
+] as const
+
+let blackList: net.BlockList | undefined
 const performLookup = promisify(dns.lookup)
 
-async function lookup(address: string): Promise<string[]> {
-  if (!net.isIP(address)) {
-    // need this for URL parsing simply
-    if (!address.startsWith("http")) {
-      address = `https://${address}`
-    }
-    address = new URL(address).hostname
+function getIpVersion(address: string): "ipv4" | "ipv6" {
+  return net.isIP(address) === 6 ? "ipv6" : "ipv4"
+}
+

Source: GitHub Commit

Detection Methods for CVE-2026-31818

Indicators of Compromise

  • Outbound HTTP/HTTPS requests from Budibase servers to internal IP ranges (127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16)
  • Requests to cloud metadata endpoints such as 169.254.169.254 originating from Budibase application containers
  • Unusual REST datasource configurations targeting internal hostnames or IP addresses
  • Unexpected access logs showing Budibase server IPs accessing internal services

Detection Strategies

  • Monitor egress traffic from Budibase deployments for connections to RFC 1918 private address spaces
  • Implement network segmentation alerts when Budibase containers attempt to reach sensitive internal services
  • Review Budibase audit logs for REST datasource creation or modification events targeting internal URLs
  • Deploy Web Application Firewall (WAF) rules to detect SSRF patterns in outbound request parameters

Monitoring Recommendations

  • Enable verbose logging for the Budibase REST datasource connector to capture all outbound request URLs
  • Set up alerts for DNS resolution requests from Budibase servers for internal domain names
  • Monitor for access attempts to cloud metadata services (AWS, GCP, Azure) from application containers
  • Implement network flow analysis to baseline and alert on anomalous outbound connection patterns from Budibase infrastructure

How to Mitigate CVE-2026-31818

Immediate Actions Required

  • Upgrade Budibase to version 3.33.4 or later immediately
  • If immediate upgrade is not possible, manually set the BLACKLIST_IPS environment variable with private IP ranges
  • Audit existing REST datasources for any suspicious internal URL targets
  • Review access logs for evidence of SSRF exploitation attempts

Patch Information

Budibase has released version 3.33.4 which addresses this vulnerability by implementing a default blacklist of private IP ranges. The fix ensures that SSRF protections are enabled out-of-the-box without requiring manual environment variable configuration. For detailed information, refer to the GitHub Security Advisory GHSA-7r9j-r86q-7g45 and Pull Request #18236.

Workarounds

  • Manually configure the BLACKLIST_IPS environment variable with appropriate private IP CIDR ranges if upgrading is not immediately feasible
  • Implement network-level egress filtering to block Budibase servers from reaching internal IP ranges
  • Deploy a reverse proxy or firewall in front of Budibase to inspect and filter outbound requests
  • Restrict Budibase server network access using container network policies or security groups
bash
# Configuration example - Set BLACKLIST_IPS environment variable for Docker deployments
docker run -d \
  -e BLACKLIST_IPS="127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,169.254.0.0/16,0.0.0.0/8" \
  budibase/budibase:3.33.4

# For Kubernetes deployments, add to your deployment spec:
# env:
#   - name: BLACKLIST_IPS
#     value: "127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,169.254.0.0/16,0.0.0.0/8"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechBudibase

  • SeverityCRITICAL

  • CVSS Score9.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Release v3.33.4
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Pull Request 18236

  • GitHub Security Advisory GHSA-7r9j-r86q-7g45
  • Related CVEs
  • CVE-2026-33226: Budibase Low-Code Platform SSRF Flaw

  • CVE-2026-25044: Budibase RCE Vulnerability

  • CVE-2026-35214: Budibase Path Traversal Vulnerability

  • CVE-2026-35216: Budibase RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English