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

CVE-2026-35488: Tandoor Recipes Auth Bypass Vulnerability

CVE-2026-35488 is an authentication bypass flaw in Tandoor Recipes allowing shared users to delete or modify recipe books despite read-only access. This post covers technical details, affected versions, and mitigation steps.

Published: April 10, 2026

CVE-2026-35488 Overview

CVE-2026-35488 is a broken access control vulnerability in Tandoor Recipes, an open-source application for managing recipes, planning meals, and building shopping lists. The vulnerability exists in the RecipeBookViewSet and RecipeBookEntryViewSet components, which improperly implement the CustomIsShared permission class. This flaw allows users with shared read-only access to a RecipeBook to perform destructive operations such as DELETE, PUT, and PATCH requests, effectively overwriting or deleting recipe books they should only be able to view.

Critical Impact

Any authenticated user with shared access to a RecipeBook can delete or completely overwrite it, bypassing the intended read-only semantics of shared access.

Affected Products

  • Tandoor Recipes versions prior to 2.6.4

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-35488 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35488

Vulnerability Analysis

This vulnerability stems from improper access control enforcement in the Django REST Framework permission classes used by Tandoor Recipes. The CustomIsShared permission class is designed to allow users on a shared list to access recipe books, but it fails to properly restrict the HTTP methods available to those users.

The core issue lies in the has_object_permission() method of CustomIsShared, which unconditionally returns True for all HTTP methods. In a properly implemented permission class, this method should verify that the incoming request method is in the SAFE_METHODS tuple (GET, HEAD, OPTIONS) before granting access to shared users. Without this check, users who are supposed to have read-only access through sharing can execute write operations including PUT (full update), PATCH (partial update), and DELETE.

This represents a classic broken access control pattern (CWE-749: Exposed Dangerous Method or Function) where the application exposes functionality to users beyond their intended privilege level.

Root Cause

The root cause is the missing conditional check in CustomIsShared.has_object_permission() that should verify request.method in SAFE_METHODS before returning True. The permission class treats all authenticated shared users equally regardless of the HTTP method being invoked, creating an authorization bypass that allows write and delete operations on resources that should be read-only for shared users.

Attack Vector

An attacker who has been granted shared access to a RecipeBook can exploit this vulnerability through the following attack flow:

  1. The attacker obtains shared access to a target RecipeBook through legitimate sharing functionality
  2. Using the API endpoints for RecipeBookViewSet or RecipeBookEntryViewSet, the attacker sends DELETE, PUT, or PATCH requests
  3. The CustomIsShared permission class incorrectly authorizes these requests because it only verifies the user is on the shared list without validating the HTTP method
  4. The attacker can now delete entire recipe books or overwrite their contents, causing data loss for the legitimate owner

This attack requires network access and a low-privileged authenticated user account with shared access to at least one RecipeBook. No user interaction is required to exploit the vulnerability once the attacker has shared access.

Detection Methods for CVE-2026-35488

Indicators of Compromise

  • Unexpected DELETE, PUT, or PATCH requests to /api/recipe-book/ or /api/recipe-book-entry/ endpoints from users who only have shared (read) access
  • Audit logs showing recipe book modifications or deletions by users other than the owner
  • User reports of missing or modified recipe books that were shared with other users
  • API access logs showing write operations from IP addresses associated with shared users

Detection Strategies

  • Implement API request logging that captures HTTP method, authenticated user, and target resource ownership
  • Monitor for anomalous patterns where users perform write operations on resources they don't own
  • Review Django REST Framework permission class implementations for similar patterns where has_object_permission() returns True without method validation
  • Deploy web application firewalls (WAF) with rules to detect unauthorized write attempts on shared resources

Monitoring Recommendations

  • Enable detailed API audit logging for all recipe book and entry modification operations
  • Set up alerts for DELETE/PUT/PATCH operations on resources where the requesting user is not the owner
  • Regularly review access control implementations in custom permission classes
  • Monitor application logs for unexpected 2xx responses to write operations from shared users

How to Mitigate CVE-2026-35488

Immediate Actions Required

  • Upgrade Tandoor Recipes to version 2.6.4 or later immediately
  • Review audit logs for any unauthorized modifications to shared recipe books
  • Temporarily disable or restrict the sharing functionality if immediate patching is not possible
  • Notify users who have shared recipe books about potential unauthorized modifications

Patch Information

The vulnerability has been fixed in Tandoor Recipes version 2.6.4. The fix modifies the CustomIsShared.has_object_permission() method to properly check that the request method is in SAFE_METHODS before granting access to shared users. This ensures that users with shared access can only perform read operations (GET, HEAD, OPTIONS) on recipe books, preserving the intended read-only semantics.

For detailed information about the fix, refer to the GitHub Security Advisory GHSA-xvmf-cfrq-4j8f and the GitHub Release for 2.6.4.

Workarounds

  • Disable or remove sharing functionality for recipe books until the patch can be applied
  • Implement network-level access controls to restrict API access to trusted users only
  • Deploy a reverse proxy or WAF rule to block DELETE/PUT/PATCH requests to affected endpoints from non-owner users
  • Review and revoke shared access permissions for sensitive recipe books as a temporary measure
bash
# Upgrade Tandoor Recipes to the patched version
# Using Docker (recommended deployment method)
docker pull vabene1111/recipes:2.6.4
docker-compose down
docker-compose up -d

# Verify the version after upgrade
docker exec -it tandoor_recipes python manage.py shell -c "import recipes; print(recipes.__version__)"

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.04%

  • 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-749
  • Technical References
  • GitHub Release for 2.6.4

  • GitHub Security Advisory GHSA-xvmf-cfrq-4j8f
  • Related CVEs
  • CVE-2026-35045: 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