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
    • 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-33949

CVE-2026-33949: TinaCMS Path Traversal Vulnerability

CVE-2026-33949 is a path traversal flaw in TinaCMS that allows unauthenticated attackers to write arbitrary files within the project root. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33949 Overview

CVE-2026-33949 is a path traversal vulnerability affecting TinaCMS, a headless content management system. The vulnerability exists in the @tinacms/graphql package prior to version 2.2.2, allowing unauthenticated users to write and overwrite arbitrary files within the project root by manipulating the relativePath parameter in GraphQL mutations.

Critical Impact

Attackers can replace critical server configuration files and potentially achieve arbitrary command execution by sabotaging build scripts.

Affected Products

  • TinaCMS @tinacms/graphql package versions prior to 2.2.2

Discovery Timeline

  • 2026-04-01 - CVE-2026-33949 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33949

Vulnerability Analysis

This path traversal vulnerability (CWE-22) allows attackers to escape the intended directory structure and access or modify files outside the designated content directories. The vulnerability stems from insufficient validation of the relativePath parameter within GraphQL mutations exposed by the @tinacms/graphql package.

When a user submits a GraphQL mutation to create or update content, the system fails to properly sanitize path traversal sequences (such as ../) in the relativePath parameter. This allows attackers to navigate the directory hierarchy and target files anywhere within the project root. The attack is particularly dangerous because it can be performed by unauthenticated users, requiring no authentication to exploit.

The primary impact is the ability to overwrite arbitrary files. This includes critical server configuration files such as package.json, build configuration files, or deployment scripts. By modifying these files, an attacker could inject malicious commands that would execute during the next build or deployment cycle, effectively achieving remote code execution.

Root Cause

The root cause is improper input validation in the @tinacms/graphql package. The relativePath parameter in GraphQL mutations is not adequately sanitized to prevent directory traversal sequences. The application fails to normalize the path or verify that the resolved path remains within the expected content directory boundaries before performing file write operations.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft malicious GraphQL mutations containing path traversal sequences in the relativePath parameter. By including sequences like ../ in the path, the attacker can direct file writes to arbitrary locations within the project root.

For example, an attacker could target build scripts or configuration files to inject malicious code that executes during the application's build process. This could result in supply chain compromise, data exfiltration, or complete server takeover. The attack surface includes any TinaCMS deployment where the GraphQL endpoint is accessible, which is typical in headless CMS architectures.

The vulnerability mechanism involves submitting GraphQL mutations with manipulated relativePath values containing directory traversal sequences. Technical details and proof-of-concept information are available in the GitHub Security Advisory.

Detection Methods for CVE-2026-33949

Indicators of Compromise

  • Unexpected modifications to configuration files such as package.json, build scripts, or deployment configurations
  • GraphQL mutation requests containing path traversal sequences (../, ..%2f, or encoded variants) in the relativePath parameter
  • Unusual file creation or modification activity within the project root directory
  • Build process failures or unexpected behavior following file modifications

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in request parameters
  • Monitor GraphQL endpoint logs for mutations containing suspicious relativePath values with directory traversal sequences
  • Configure file integrity monitoring (FIM) on critical configuration files and build scripts
  • Analyze HTTP request logs for patterns indicating exploitation attempts against the TinaCMS GraphQL API

Monitoring Recommendations

  • Enable detailed logging for all GraphQL mutations targeting content creation and update operations
  • Set up alerts for file system changes in sensitive directories outside normal content paths
  • Monitor for unexpected outbound connections or processes spawned during build cycles
  • Implement real-time alerting for any detected path traversal attempts against the GraphQL endpoint

How to Mitigate CVE-2026-33949

Immediate Actions Required

  • Upgrade @tinacms/graphql to version 2.2.2 or later immediately
  • Audit file system for any unauthorized modifications, particularly to configuration files and build scripts
  • Review GraphQL endpoint access controls and consider implementing authentication requirements
  • Implement input validation at the network edge using a WAF to block path traversal attempts

Patch Information

TinaCMS has released version 2.2.2 which addresses this vulnerability. The patch implements proper sanitization of the relativePath parameter to prevent directory traversal attacks. Organizations should update their TinaCMS installation to version 2.2.2 or later. Refer to the GitHub Security Advisory for detailed patch information.

Workarounds

  • Restrict network access to the GraphQL endpoint to trusted IP addresses only until the patch can be applied
  • Implement a reverse proxy with strict path validation rules to filter malicious requests
  • Deploy the TinaCMS instance in a containerized environment with read-only file system mounts for critical configuration files
  • Use operating system-level file permissions to restrict write access to sensitive directories
bash
# Example: Restrict GraphQL endpoint access via nginx
location /api/graphql {
    # Allow only trusted networks
    allow 10.0.0.0/8;
    allow 192.168.1.0/24;
    deny all;
    
    # Proxy to TinaCMS backend
    proxy_pass http://tinacms-backend:3000;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechTinacms

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34604: Tina CMS Path Traversal Vulnerability

  • CVE-2026-34603: Tina CMS Path Traversal Vulnerability

  • CVE-2026-28791: TinaCMS Path Traversal Vulnerability

  • CVE-2026-28793: TinaCMS Path Traversal 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