Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI 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-35045

CVE-2026-35045: Tandoor Recipes Auth Bypass Vulnerability

CVE-2026-35045 is an authentication bypass flaw in Tandoor Recipes that allows authenticated users to modify private recipes of others. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35045 Overview

CVE-2026-35045 is an authorization bypass vulnerability in Tandoor Recipes, an application for managing recipes, planning meals, and building shopping lists. Prior to version 2.6.4, the PUT /api/recipe/batch_update/ endpoint allows any authenticated user within a Space to modify any recipe in that Space, including recipes marked as private by other users. This bypasses all object-level authorization checks enforced on standard single-recipe endpoints (PUT /api/recipe/{id}/), enabling forced exposure of private recipes, unauthorized self-grant of access via the shared list, and metadata tampering.

Critical Impact

Authenticated attackers can bypass authorization controls to access and modify private recipes belonging to other users, potentially exposing sensitive personal data and undermining data integrity within shared Spaces.

Affected Products

  • Tandoor Recipes versions prior to 2.6.4

Discovery Timeline

  • 2026-04-06 - CVE-2026-35045 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-35045

Vulnerability Analysis

This vulnerability is classified as CWE-639 (Authorization Bypass Through User-Controlled Key), also known as Insecure Direct Object Reference (IDOR). The flaw exists in the batch update endpoint's authorization logic, which fails to verify that the requesting user has appropriate permissions for each recipe included in a batch operation.

While the standard single-recipe update endpoint (PUT /api/recipe/{id}/) properly enforces object-level authorization checks to verify the requesting user owns or has explicit access to the recipe, the batch update endpoint (PUT /api/recipe/batch_update/) does not implement equivalent authorization controls. This disparity creates an exploitable gap where attackers can craft batch update requests containing recipe IDs they should not be able to modify.

The impact of successful exploitation includes unauthorized access to private recipe content, the ability to modify recipe metadata and sharing permissions, and potential data integrity violations across the application.

Root Cause

The root cause stems from inconsistent authorization enforcement between the batch update endpoint and standard single-recipe endpoints. The batch update functionality was implemented without replicating the object-level permission checks that protect individual recipe operations. When processing batch requests, the application verifies only that the user is authenticated and belongs to the target Space, but fails to validate per-recipe ownership or sharing permissions.

Attack Vector

The vulnerability is exploitable over the network by any authenticated user with access to a Space. An attacker can enumerate recipe IDs within their Space and submit batch update requests to modify recipes they do not own. By manipulating the shared list parameter, an attacker can grant themselves access to private recipes or alter recipe visibility settings to expose other users' private content.

The attack requires low complexity with no user interaction needed. An authenticated attacker simply needs to craft a malicious PUT request to the /api/recipe/batch_update/ endpoint containing the target recipe IDs and desired modifications. Since the endpoint processes all submitted recipe IDs without per-object authorization checks, the modifications are applied regardless of the attacker's actual permissions.

For technical details on the exploitation mechanism, refer to the GitHub Security Advisory GHSA-v8x3-w674-55p5.

Detection Methods for CVE-2026-35045

Indicators of Compromise

  • Unusual volume of requests to the /api/recipe/batch_update/ endpoint from a single user
  • Batch update operations targeting recipe IDs not owned by the requesting user
  • Unexpected changes to recipe sharing permissions or privacy settings
  • Audit log entries showing recipes being modified by users other than their owners

Detection Strategies

  • Implement application-level logging for all batch update operations including the requesting user and target recipe IDs
  • Monitor for discrepancies between recipe ownership and modification events in application logs
  • Deploy Web Application Firewall (WAF) rules to flag unusual batch update patterns
  • Enable detailed API request logging to capture full request bodies for forensic analysis

Monitoring Recommendations

  • Review audit logs for unauthorized recipe modifications, particularly changes to sharing and visibility settings
  • Set up alerts for batch update operations affecting multiple recipes owned by different users
  • Monitor for authenticated users accessing or modifying recipes outside their normal usage patterns
  • Implement rate limiting on the batch update endpoint to reduce potential abuse velocity

How to Mitigate CVE-2026-35045

Immediate Actions Required

  • Upgrade Tandoor Recipes to version 2.6.4 or later immediately
  • Review application logs for any signs of unauthorized recipe modifications prior to patching
  • Audit recipe sharing permissions to identify any unauthorized access grants
  • Notify users within affected Spaces to review their private recipe visibility settings

Patch Information

The vulnerability has been fixed in Tandoor Recipes version 2.6.4. The patch implements proper object-level authorization checks on the batch update endpoint to ensure users can only modify recipes they own or have explicit permission to edit. For detailed release information, see the GitHub Release Notes 2.6.4.

Organizations should prioritize this upgrade as the vulnerability allows authenticated attackers to bypass access controls and compromise user data integrity.

Workarounds

  • Restrict access to the batch update API endpoint at the network or reverse proxy level until patching is complete
  • Implement additional authorization checks at the web application firewall layer for requests to /api/recipe/batch_update/
  • Temporarily disable the batch update functionality if operationally feasible
  • Limit Space membership to trusted users until the patch can be deployed

For additional security guidance, refer to the GitHub Security Advisory GHSA-v8x3-w674-55p5.

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTandoor Recipes

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Release Notes 2.6.4

  • GitHub Security Advisory GHSA-v8x3-w674-55p5
  • Related CVEs
  • CVE-2026-35488: Tandoor Recipes Auth Bypass Vulnerability

  • CVE-2026-33152: Tandoor Recipes Auth Bypass Vulnerability

  • CVE-2026-33149: Tandoor Recipes Auth Bypass Vulnerability

  • CVE-2026-28503: 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