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

CVE-2026-2153: Doorman Open Redirect Vulnerability

CVE-2026-2153 is an open redirect flaw in mwielgoszewski doorman up to version 0.6 affecting the is_safe_url function. Attackers can exploit this remotely via the Next parameter. This post covers technical details, affected versions, impact, and mitigation steps.

Published: February 13, 2026

CVE-2026-2153 Overview

A vulnerability has been identified in mwielgoszewski doorman up to version 0.6. This security flaw affects the is_safe_url function within the file doorman/users/views.py. By manipulating the Next argument, an attacker can achieve an open redirect condition. The attack can be launched remotely without authentication, and the exploit has been publicly disclosed.

Critical Impact

Attackers can manipulate URL redirection to send users to malicious websites, enabling phishing attacks, credential theft, or malware distribution through trusted application URLs.

Affected Products

  • mwielgoszewski doorman up to version 0.6
  • Applications utilizing the vulnerable is_safe_url function in doorman/users/views.py

Discovery Timeline

  • 2026-02-08 - CVE CVE-2026-2153 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-2153

Vulnerability Analysis

This vulnerability is classified as CWE-601 (URL Redirection to Untrusted Site, also known as Open Redirect). The is_safe_url function in doorman's user views module fails to properly validate the Next parameter, allowing attackers to craft malicious URLs that redirect users to arbitrary external sites.

Open redirect vulnerabilities are particularly dangerous because they leverage the trust users place in legitimate domains. When a user sees a familiar domain in a URL, they are more likely to click on it, unaware that the link will redirect them to a malicious destination.

Root Cause

The root cause of this vulnerability lies in insufficient URL validation within the is_safe_url function. The function does not adequately verify that the destination URL specified in the Next parameter belongs to the same domain or is within an allowed list of safe destinations. This allows attackers to bypass the intended security controls and redirect users to external, potentially malicious websites.

Attack Vector

The vulnerability is exploitable remotely over the network. An attacker can craft a specially designed URL that includes a malicious redirect destination in the Next parameter. When a victim clicks on this link, they are initially directed to the legitimate doorman application, which then redirects them to the attacker-controlled site.

This attack requires user interaction (clicking the malicious link) but no authentication or special privileges. The attacker typically distributes these crafted URLs through phishing emails, social media, or other communication channels, leveraging the legitimate appearance of the doorman domain to increase click-through rates.

Technical details and proof-of-concept information are available through the GitHub PoC Repository and VulDB #344855.

Detection Methods for CVE-2026-2153

Indicators of Compromise

  • Unusual URL patterns containing the Next parameter with external domain references
  • Log entries showing redirects to domains outside your organization's control
  • User reports of being redirected to unexpected or suspicious websites after clicking internal links
  • Increased phishing attempts leveraging your organization's doorman URLs

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests with suspicious Next parameter values pointing to external domains
  • Configure URL monitoring to flag redirect requests containing non-whitelisted destination URLs
  • Enable detailed logging for the doorman/users/views.py module to capture all redirect attempts
  • Deploy SentinelOne Singularity for endpoint protection to detect and block malicious redirect chains

Monitoring Recommendations

  • Monitor web server access logs for requests to doorman endpoints containing the Next parameter with external URLs
  • Set up alerts for high volumes of redirect requests originating from single IP addresses
  • Review authentication logs for patterns indicating credential theft following redirect attacks
  • Implement user behavior analytics to detect unusual login patterns that may indicate compromised credentials from phishing

How to Mitigate CVE-2026-2153

Immediate Actions Required

  • Audit all deployments of mwielgoszewski doorman version 0.6 and earlier
  • Implement additional URL validation at the web server or application gateway level
  • Review and restrict the allowable destinations for the Next parameter to internal domains only
  • Educate users about the risks of clicking on links, even those appearing to originate from trusted domains

Patch Information

As of the last modification date (2026-02-09), users should check the official mwielgoszewski doorman repository for security updates addressing this vulnerability. Monitor the VulDB entry for updated patch information and remediation guidance.

Workarounds

  • Implement a strict whitelist of allowed redirect destinations at the application or reverse proxy level
  • Add server-side validation to reject any Next parameter values containing external domains or suspicious URL patterns
  • Consider disabling the redirect functionality entirely if not critical to business operations
  • Deploy a web application firewall with rules specifically targeting open redirect attack patterns
bash
# Example nginx configuration to restrict redirects
# Add to your server block configuration

# Block requests with external URLs in the Next parameter
if ($arg_next ~* "^https?://(?!yourdomain\.com)") {
    return 403;
}

# Alternative: Redirect suspicious requests to a safe page
location /users/ {
    if ($arg_next ~* "^https?://(?!yourdomain\.com)") {
        return 302 /safe-landing-page;
    }
    proxy_pass http://doorman_backend;
}

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechDoorman

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub PoC Repository

  • VulDB CTI ID #344855

  • VulDB #344855

  • VulDB Submission #748072
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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