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

CVE-2026-33149: Tandoor Recipes Auth Bypass Vulnerability

CVE-2026-33149 is an authentication bypass flaw in Tandoor Recipes that allows attackers to poison invite links via Host header manipulation. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33149 Overview

CVE-2026-33149 is a Host Header Injection vulnerability in Tandoor Recipes, an open-source application for managing recipes, planning meals, and building shopping lists. Versions up to and including 2.5.3 set ALLOWED_HOSTS = '*' by default, which causes Django to accept any value in the HTTP Host header without validation. This misconfiguration allows attackers to manipulate server-generated absolute URLs, leading to critical security impacts including invite link poisoning.

Critical Impact

Attackers can poison invite links sent via email, redirecting victims to attacker-controlled servers and stealing authentication tokens that grant unauthorized access to the application.

Affected Products

  • Tandoor Recipes versions up to and including 2.5.3

Discovery Timeline

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

Technical Details for CVE-2026-33149

Vulnerability Analysis

The vulnerability stems from an insecure default configuration in Tandoor Recipes. The application uses Django's request.build_absolute_uri() method to generate absolute URLs in multiple contexts, including invite link emails, API pagination responses, and OpenAPI schema generation. When combined with the permissive ALLOWED_HOSTS = '*' setting, this creates a Host Header Injection vulnerability (CWE-644: Improper Neutralization of HTTP Headers for Scripting Syntax).

In a typical exploitation scenario, an attacker sends a request to the application with a maliciously crafted Host header pointing to an attacker-controlled domain. When an administrator creates an invite for a new user, the application generates an invite email containing an absolute URL. Because the Host header is not validated, the generated URL points to the attacker's server instead of the legitimate application server.

When the victim clicks the poisoned invite link, the invite token is sent to the attacker's server. The attacker can then replay this token at the real application to complete the registration process, potentially gaining unauthorized access to the system.

Root Cause

The root cause is the default configuration setting ALLOWED_HOSTS = '*' in Django, which disables Host header validation entirely. This allows the application to accept and trust any Host header value provided in incoming HTTP requests. Combined with the use of request.build_absolute_uri() for generating URLs in security-sensitive contexts like invite emails, this creates a reliable attack vector for token theft.

Attack Vector

The attack is network-based and requires the attacker to be able to send HTTP requests to the vulnerable Tandoor Recipes instance. The attack flow involves:

  1. Attacker identifies a Tandoor Recipes instance with the default ALLOWED_HOSTS configuration
  2. Attacker monitors for invite creation activity or socially engineers an administrator to create an invite
  3. When the invite request is processed, the attacker injects a malicious Host header pointing to their controlled domain
  4. The application generates an invite email with a poisoned URL containing the attacker's domain
  5. The victim receives the email and clicks the invite link
  6. The invite token is sent to the attacker's server
  7. Attacker uses the captured token to register on the legitimate application

The vulnerability requires user interaction (the victim must click the poisoned link) and elevated privileges (typically admin-level access to create invites), but the impact crosses security boundaries as it compromises confidentiality and integrity of user accounts.

Detection Methods for CVE-2026-33149

Indicators of Compromise

  • Unusual Host header values in web server access logs that don't match the expected application domain
  • Failed authentication attempts or account registrations from unexpected IP addresses using valid invite tokens
  • User reports of receiving invite emails with URLs pointing to unfamiliar domains

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests with Host headers that don't match the legitimate application domain
  • Monitor Django application logs for requests where the Host header differs from configured domain names
  • Review outbound email logs for invite links containing unexpected domains
  • Enable alerting for invite token usage from IP addresses that don't match the original invite request

Monitoring Recommendations

  • Configure logging to capture full HTTP headers for all requests to the application
  • Implement anomaly detection for Host header values in request logs
  • Monitor email gateway logs for emails containing suspicious URLs in invite links
  • Set up alerts for invite token redemption patterns that indicate token theft scenarios

How to Mitigate CVE-2026-33149

Immediate Actions Required

  • Configure ALLOWED_HOSTS in your Tandoor Recipes Django settings to include only your legitimate domain names
  • Review recent invite emails and verify URLs point to the correct application domain
  • Audit user accounts created via invites for any suspicious registrations
  • Invalidate any pending invite tokens and regenerate them after fixing the configuration

Patch Information

As of the publication date, it is unknown if a patched version is available. Organizations should monitor the GitHub Security Advisory for updates regarding an official fix. In the meantime, the configuration workaround described below should be applied immediately.

Workarounds

  • Set ALLOWED_HOSTS to a list containing only your valid domain names (e.g., ALLOWED_HOSTS = ['recipes.example.com', 'www.recipes.example.com'])
  • Deploy a reverse proxy or load balancer that validates and normalizes Host headers before forwarding requests to the application
  • Implement additional email security controls to verify outbound links match expected domains
  • Consider adding a web application firewall rule to reject requests with unexpected Host header values
bash
# Configuration example for Django settings
# Edit your Tandoor Recipes configuration to restrict ALLOWED_HOSTS
# Replace the wildcard with your specific domain(s)

# In .env or environment configuration:
ALLOWED_HOSTS=recipes.yourdomain.com,www.recipes.yourdomain.com

# Or in Django settings.py:
# ALLOWED_HOSTS = ['recipes.yourdomain.com', 'www.recipes.yourdomain.com']

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

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-644
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35488: Tandoor Recipes Auth Bypass Vulnerability

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

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