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

CVE-2026-33152: Tandoor Recipes Auth Bypass Vulnerability

CVE-2026-33152 is an authentication bypass flaw in Tandoor Recipes that enables unlimited password guessing attacks via API endpoints. This article covers the technical details, affected versions, impact, and patches.

Published: March 27, 2026

CVE-2026-33152 Overview

Tandoor Recipes is an open-source application for managing recipes, planning meals, and building shopping lists. A critical authentication bypass vulnerability exists in versions prior to 2.6.0 where the application configures Django REST Framework with BasicAuthentication as one of the default authentication backends without implementing proper rate limiting protections.

The AllAuth rate limiting configuration (ACCOUNT_RATE_LIMITS: login: 5/m/ip) only applies to the HTML-based login endpoint at /accounts/login/. This leaves all API endpoints that accept authenticated requests via Authorization: Basic headers completely unprotected against brute force attacks. An attacker can perform high-speed password guessing against any known username with zero rate limiting, zero account lockout, and unlimited attempts.

Critical Impact

Attackers can conduct unlimited brute force password attacks against any user account through API endpoints, potentially compromising user credentials and gaining unauthorized access to personal recipe data, meal plans, and shopping lists.

Affected Products

  • Tandoor Recipes versions prior to 2.6.0
  • Django REST Framework deployments using BasicAuthentication without additional rate limiting
  • Self-hosted Tandoor Recipes instances exposed to the internet

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33152 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33152

Vulnerability Analysis

This vulnerability represents a classic case of improper restriction of excessive authentication attempts (CWE-307). The root issue stems from an inconsistent security configuration where rate limiting protections were applied to the web-based login form but not to the API authentication layer.

When Tandoor Recipes is deployed, Django REST Framework is configured to accept BasicAuthentication on API endpoints. While the /accounts/login/ endpoint benefits from AllAuth's rate limiting (5 attempts per minute per IP), the API endpoints accepting Authorization: Basic headers have no such protection. This creates a significant attack surface where an adversary can bypass the rate limiting entirely by targeting API endpoints instead of the web form.

The vulnerability allows network-based attacks without requiring any prior authentication or user interaction. A successful exploitation could lead to unauthorized access to user accounts, potentially exposing sensitive personal data including recipes, meal plans, and shopping lists stored within the application.

Root Cause

The vulnerability originates from an incomplete security implementation in Tandoor Recipes' authentication configuration. The developers implemented rate limiting through Django AllAuth for the traditional web login flow but failed to extend similar protections to the Django REST Framework API authentication layer. This oversight left BasicAuthentication exposed on all API endpoints without any mechanism to throttle or block repeated authentication failures.

Attack Vector

An attacker can exploit this vulnerability through a network-based brute force attack targeting API endpoints. The attack requires knowledge of a valid username but can be executed from any network location with access to the Tandoor Recipes instance. The attacker sends repeated authentication requests with Authorization: Basic headers containing base64-encoded username:password combinations.

Since there is no rate limiting on API endpoints, an attacker can attempt thousands of password combinations per second, significantly increasing the likelihood of successfully guessing weak passwords. The attack leaves no lockout mechanism to protect accounts, making even moderately complex passwords vulnerable over time.

Detection Methods for CVE-2026-33152

Indicators of Compromise

  • High volume of API requests with Authorization: Basic headers from single IP addresses
  • Repeated authentication failures in Django REST Framework logs for specific usernames
  • Unusual patterns of API access outside normal application usage hours
  • Multiple failed authentication attempts followed by successful login from same source

Detection Strategies

  • Implement logging and alerting for failed authentication attempts on API endpoints
  • Monitor for anomalous request rates to API endpoints requiring authentication
  • Deploy web application firewall (WAF) rules to detect and block brute force patterns
  • Review server access logs for high-frequency requests to authenticated API routes

Monitoring Recommendations

  • Enable detailed authentication logging in Django REST Framework configuration
  • Configure SIEM alerts for threshold-based detection of repeated auth failures
  • Implement IP reputation monitoring for sources of authentication requests
  • Establish baseline metrics for normal API authentication patterns to identify anomalies

How to Mitigate CVE-2026-33152

Immediate Actions Required

  • Upgrade Tandoor Recipes to version 2.6.0 or later immediately
  • Review authentication logs for signs of brute force attempts that may have occurred
  • Enforce password resets for any accounts that show suspicious authentication activity
  • Consider temporarily disabling BasicAuthentication if upgrade is not immediately possible

Patch Information

The vulnerability has been addressed in Tandoor Recipes version 2.6.0. Users should upgrade to this version or later to receive the security fix. For detailed information about the patch, refer to the GitHub Release Notes for version 2.6.0 and the GitHub Security Advisory GHSA-7m7c-jjqc-r522.

Workarounds

  • Implement Django REST Framework throttling classes to rate limit API authentication attempts
  • Deploy a reverse proxy with rate limiting capabilities in front of the application
  • Restrict network access to the Tandoor Recipes instance using firewall rules
  • Enable multi-factor authentication if available to reduce impact of compromised passwords
bash
# Example: Add rate limiting via reverse proxy (nginx)
# Add to nginx server block configuration
limit_req_zone $binary_remote_addr zone=api_auth:10m rate=5r/s;

location /api/ {
    limit_req zone=api_auth burst=10 nodelay;
    proxy_pass http://tandoor_backend;
}

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

  • SeverityCRITICAL

  • CVSS Score9.1

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

  • GitHub Security Advisory GHSA-7m7c-jjqc-r522
  • Related CVEs
  • CVE-2026-35488: Tandoor Recipes Auth Bypass Vulnerability

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