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

CVE-2026-25964: Tandoor Recipes Path Traversal Flaw

CVE-2026-25964 is a path traversal vulnerability in Tandoor Recipes that allows authenticated users to read arbitrary server files. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-25964 Overview

CVE-2026-25964 is a Path Traversal vulnerability affecting Tandoor Recipes, a popular open-source application for managing recipes, planning meals, and building shopping lists. This vulnerability exists in the RecipeImport workflow and allows authenticated users with import permissions to read arbitrary files on the server. The flaw stems from insufficient input validation in the file_path parameter combined with inadequate security checks in the Local storage backend.

Critical Impact

Authenticated attackers can bypass storage directory restrictions and access sensitive system files such as /etc/passwd or application configuration files like settings.py, potentially leading to full system compromise.

Affected Products

  • Tandoor Recipes versions prior to 2.5.1

Discovery Timeline

  • February 13, 2026 - CVE CVE-2026-25964 published to NVD
  • February 17, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25964

Vulnerability Analysis

This Path Traversal vulnerability (CWE-22) allows authenticated users with recipe import permissions to escape the intended storage directory and read arbitrary files from the server filesystem. The vulnerability requires network access and high privileges (import permissions), but once those conditions are met, an attacker can achieve high confidentiality impact by accessing sensitive configuration files and system data.

The attack surface is exposed through the RecipeImport functionality, where user-controlled file paths are processed without adequate sanitization. This allows directory traversal sequences (such as ../) to be included in file path parameters, enabling access to files outside the designated storage directories.

Root Cause

The root cause of CVE-2026-25964 is twofold: a lack of input validation on the file_path parameter in the RecipeImport workflow, and insufficient security checks within the Local storage backend. The application fails to properly validate and sanitize user-supplied file paths before using them in file system operations, allowing attackers to construct paths that traverse outside the intended storage directory.

Attack Vector

The attack is conducted over the network by an authenticated user who has been granted import permissions within the Tandoor Recipes application. The attacker manipulates the file_path parameter during the recipe import process, injecting directory traversal sequences to access files outside the permitted storage location.

For example, an attacker could craft a malicious import request that references paths like ../../etc/passwd or ../../app/settings.py to read sensitive system configuration and application secrets. This information disclosure could reveal credentials, API keys, database connection strings, and other sensitive data that may lead to further compromise of the system.

The vulnerability mechanism involves the following steps:

  1. An authenticated user with import permissions initiates a recipe import
  2. The user supplies a crafted file_path parameter containing directory traversal sequences
  3. The Local storage backend fails to validate that the resolved path remains within the allowed storage directory
  4. The application reads and returns the contents of the attacker-specified file

For detailed technical information, refer to the GitHub Security Advisory GHSA-6485.

Detection Methods for CVE-2026-25964

Indicators of Compromise

  • Unusual file access patterns in application logs, particularly requests targeting sensitive system files like /etc/passwd or configuration files
  • Import requests containing directory traversal sequences such as ../ or encoded variants
  • Access attempts to files outside the designated recipe storage directories
  • Unexplained access to settings.py or other application configuration files

Detection Strategies

  • Monitor web application logs for import requests containing path traversal patterns (e.g., ../, ..%2f, %2e%2e/)
  • Implement file integrity monitoring on sensitive configuration files and system files
  • Configure alerting for file access attempts outside designated storage directories
  • Review authentication and authorization logs for suspicious activity from users with import permissions

Monitoring Recommendations

  • Enable detailed logging for the RecipeImport workflow and file system operations
  • Implement real-time alerting for detected path traversal attempts
  • Monitor for unauthorized access to sensitive files such as /etc/passwd, settings.py, and database configuration files
  • Establish baseline file access patterns to identify anomalous behavior

How to Mitigate CVE-2026-25964

Immediate Actions Required

  • Upgrade Tandoor Recipes to version 2.5.1 or later immediately
  • Review access control configurations and limit import permissions to trusted users only
  • Audit logs for any historical exploitation attempts
  • Consider temporarily disabling the recipe import functionality until the patch is applied

Patch Information

Tandoor has released version 2.5.1 which addresses this vulnerability. The fix implements proper input validation and path canonicalization to prevent directory traversal attacks. Organizations should apply this update immediately.

  • GitHub Release Version 2.5.1
  • GitHub Commit Change
  • GitHub Security Advisory GHSA-6485

Workarounds

  • Restrict import permissions to only essential, trusted users until the patch can be applied
  • Implement network-level access controls to limit who can access the application
  • Deploy a Web Application Firewall (WAF) with rules to detect and block path traversal patterns
  • Run the Tandoor Recipes application with minimal filesystem permissions to limit the impact of successful exploitation

If immediate patching is not possible, consider implementing additional input validation at the reverse proxy or load balancer level to filter requests containing directory traversal sequences before they reach the application.

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechTandoor Recipes

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Release Version 2.5.1
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Security Advisory GHSA-6485
  • Related CVEs
  • CVE-2026-35488: Tandoor Recipes Auth Bypass Vulnerability

  • CVE-2026-35489: Tandoor Recipes Information Disclosure Flaw

  • CVE-2026-35046: Tandoor Recipes XSS Vulnerability

  • CVE-2026-35045: Tandoor Recipes Auth Bypass 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