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-35214

CVE-2026-35214: Budibase Path Traversal Vulnerability

CVE-2026-35214 is a path traversal flaw in Budibase that allows attackers with Builder privileges to delete directories and write files. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35214 Overview

CVE-2026-35214 is a path traversal vulnerability in Budibase, an open-source low-code platform. Prior to version 3.33.4, the plugin file upload endpoint (POST /api/plugin/upload) passes the user-supplied filename directly to createTempFolder() without sanitizing path traversal sequences. An attacker with Global Builder privileges can craft a multipart upload with a filename containing ../ to delete arbitrary directories via rmSync and write arbitrary files via tarball extraction to any filesystem path the Node.js process can access.

Critical Impact

Authenticated attackers with Global Builder privileges can achieve arbitrary file write and directory deletion on the underlying server, potentially leading to complete system compromise or denial of service.

Affected Products

  • Budibase versions prior to 3.33.4
  • Self-hosted Budibase deployments with plugin upload functionality enabled
  • Environments where Global Builder privileges are assigned to untrusted users

Discovery Timeline

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

Technical Details for CVE-2026-35214

Vulnerability Analysis

This vulnerability stems from improper input validation in the plugin file upload functionality of Budibase. The POST /api/plugin/upload endpoint accepts multipart file uploads for plugin installation. The uploaded filename is passed directly to the createTempFolder() function without any sanitization of path traversal sequences such as ../. This allows an attacker to escape the intended upload directory and manipulate files elsewhere on the filesystem.

The vulnerability enables two distinct attack vectors: first, the unsanitized path can trigger rmSync operations on arbitrary directories during cleanup operations; second, the tarball extraction process can write files to arbitrary filesystem locations accessible by the Node.js process. This combination of directory deletion and arbitrary file write capabilities represents a significant security risk.

Root Cause

The root cause is a classic CWE-22 (Path Traversal) vulnerability where user-controlled input (the filename from the multipart upload) is used to construct filesystem paths without proper validation or sanitization. The createTempFolder() function trusts the filename parameter implicitly, allowing directory traversal sequences to be interpreted by the underlying filesystem operations.

Attack Vector

The attack is network-based and requires authentication with Global Builder privileges. An attacker must:

  1. Authenticate to the Budibase instance with Global Builder role
  2. Craft a malicious multipart POST request to /api/plugin/upload
  3. Include a filename containing path traversal sequences (e.g., ../../../etc/cron.d/malicious)
  4. Submit the crafted tarball containing malicious files

The following code shows the security patch that addresses this vulnerability:

typescript
 import {
   createTempFolder,
+  deleteFolderFileSystem,
   getPluginMetadata,
   extractTarball,
 } from "../../../utilities/fileSystem"

Source: GitHub Commit Update

Additional changes were made to the GitHub plugin handler:

typescript
-import { getPluginMetadata } from "../../../utilities/fileSystem"
+import {
+  deleteFolderFileSystem,
+  getPluginMetadata,
+} from "../../../utilities/fileSystem"
 import fetch from "node-fetch"
 import { downloadUnzipTarball } from "./utils"
 

Source: GitHub Commit Update

Detection Methods for CVE-2026-35214

Indicators of Compromise

  • Unusual POST requests to /api/plugin/upload containing ../ sequences in filenames
  • Unexpected file modifications outside the Budibase plugin directories
  • Evidence of arbitrary file writes in system directories such as /etc, /var, or application directories
  • Missing or deleted directories that should exist in the application structure

Detection Strategies

  • Monitor HTTP request logs for plugin upload requests containing path traversal patterns (../, ..%2f, ..%5c)
  • Implement file integrity monitoring (FIM) on critical system directories to detect unauthorized changes
  • Review audit logs for plugin upload activities by Global Builder accounts
  • Deploy web application firewall (WAF) rules to detect and block path traversal attempts

Monitoring Recommendations

  • Enable verbose logging for the Budibase plugin upload endpoint
  • Configure alerts for any file operations outside expected plugin directories
  • Monitor Node.js process file access patterns using system auditing tools (auditd on Linux)
  • Track Global Builder account activities and plugin installation events

How to Mitigate CVE-2026-35214

Immediate Actions Required

  • Upgrade Budibase to version 3.33.4 or later immediately
  • Review audit logs for any suspicious plugin upload activities prior to patching
  • Restrict Global Builder privileges to trusted administrators only
  • Consider temporarily disabling plugin upload functionality until the patch is applied

Patch Information

Budibase has released version 3.33.4 which addresses this vulnerability. The fix implements proper path sanitization in the plugin upload handler, preventing directory traversal attacks. Organizations should upgrade immediately by following the standard Budibase update procedures.

For detailed patch information, refer to:

  • GitHub Pull Request #18240
  • GitHub Security Advisory GHSA-2wfh-rcwf-wh23
  • GitHub Release v3.33.4

Workarounds

  • Disable the plugin upload functionality by restricting access to /api/plugin/upload at the reverse proxy or firewall level
  • Revoke Global Builder privileges from non-essential users until patching is complete
  • Implement network segmentation to limit the impact of potential file write attacks
  • Deploy a WAF rule to block requests containing path traversal sequences in multipart file uploads
bash
# Example nginx configuration to block path traversal in plugin uploads
location /api/plugin/upload {
    # Block requests with path traversal patterns
    if ($request_body ~* "\.\.\/|\.\.\\") {
        return 403;
    }
    # Restrict access to specific IPs until patched
    allow 10.0.0.0/8;
    deny all;
    proxy_pass http://budibase_backend;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechBudibase

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.14%

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

  • GitHub Pull Request

  • GitHub Security Advisory GHSA-2wfh-rcwf-wh23
  • Related CVEs
  • CVE-2026-30240: Budibase Path Traversal Vulnerability

  • CVE-2026-25737: Budibase Path Traversal Vulnerability

  • CVE-2026-25044: Budibase RCE Vulnerability

  • CVE-2026-31818: Budibase SSRF 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