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-2023-28370

CVE-2023-28370: Tornadoweb Tornado Open Redirect Flaw

CVE-2023-28370 is an open redirect vulnerability in Tornadoweb Tornado versions 6.3.1 and earlier that enables phishing attacks. This post covers the technical details, affected versions, impact, and mitigation.

Published: February 4, 2026

CVE-2023-28370 Overview

CVE-2023-28370 is an open redirect vulnerability affecting Tornado, the popular Python web framework and asynchronous networking library. This vulnerability allows a remote unauthenticated attacker to redirect users to arbitrary external websites by crafting malicious URLs. When successfully exploited, attackers can leverage this flaw to conduct sophisticated phishing attacks, potentially compromising user credentials and sensitive information.

Critical Impact

Remote attackers can redirect users to malicious websites without authentication, enabling phishing attacks and credential theft through trusted application URLs.

Affected Products

  • Tornadoweb Tornado versions 6.3.1 and earlier
  • All Tornado deployments using default URL handling configurations
  • Applications built on Tornado that process user-controlled redirect URLs

Discovery Timeline

  • 2023-05-25 - CVE-2023-28370 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2023-28370

Vulnerability Analysis

This open redirect vulnerability (CWE-601) exists in Tornado's URL handling mechanism. Open redirects occur when web applications accept user-controlled input that specifies a link to an external site, and use that input in a redirect without proper validation. In Tornado versions 6.3.1 and earlier, the framework fails to adequately validate redirect destinations, allowing attackers to craft URLs that appear to originate from a legitimate Tornado-based application but ultimately redirect users to attacker-controlled domains.

The network-based attack vector means exploitation can occur remotely without any prior authentication. However, successful exploitation requires user interaction—specifically, a victim must click on or otherwise access the specially crafted malicious URL. This makes the vulnerability particularly effective in phishing campaigns where attackers distribute links through email, social media, or other communication channels.

Root Cause

The root cause of CVE-2023-28370 lies in insufficient validation of redirect URLs within Tornado's request handling logic. When processing redirect responses, the framework does not properly sanitize or validate the destination URL parameter, allowing external URLs to be injected. This enables attackers to abuse the trust users place in the legitimate domain to redirect them to malicious destinations without warning.

Attack Vector

Exploitation of this vulnerability follows a straightforward pattern. An attacker constructs a URL pointing to the vulnerable Tornado application with a specially crafted redirect parameter containing a malicious external URL. When a user clicks this link, they initially connect to the legitimate Tornado application, which then redirects them to the attacker's site. Because the initial URL appears to be from a trusted source, users are more likely to trust the subsequent redirect destination, making this technique highly effective for phishing and credential harvesting attacks.

The vulnerability is exploited through specially crafted URLs that abuse the redirect functionality. The malicious URL leverages the trusted domain of the Tornado application to redirect victims to attacker-controlled sites. Technical details and proof-of-concept information can be found in the JVN Security Advisory JVN45127776.

Detection Methods for CVE-2023-28370

Indicators of Compromise

  • Unusual redirect patterns in web server access logs pointing to external domains
  • HTTP 302/301 redirect responses containing suspicious or unfamiliar destination URLs
  • User reports of unexpected redirects when accessing application URLs
  • Referrer headers showing traffic originating from legitimate application URLs but landing on external sites

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block redirect attempts to external domains
  • Monitor HTTP response headers for redirect status codes with external URL destinations
  • Deploy URL inspection on outbound requests to identify potential redirect abuse
  • Configure intrusion detection systems to alert on patterns matching open redirect exploitation

Monitoring Recommendations

  • Enable detailed access logging on Tornado applications to capture redirect destinations
  • Set up alerts for redirect responses containing URLs outside your organization's domain whitelist
  • Implement real-time log analysis to detect spikes in redirect activity or unusual redirect patterns
  • Monitor for user complaints or reports of phishing attempts leveraging your application's URLs

How to Mitigate CVE-2023-28370

Immediate Actions Required

  • Upgrade Tornado to version 6.3.2 or later immediately
  • Audit application code for any custom redirect implementations that may be vulnerable
  • Implement URL validation to restrict redirects to trusted domains only
  • Review and update web application firewall rules to block malicious redirect attempts

Patch Information

The Tornado development team has addressed this vulnerability in version 6.3.2. Organizations should upgrade to this version or later to remediate the open redirect vulnerability. The fix implements proper validation of redirect URLs to prevent redirection to arbitrary external sites.

For more information, see the GitHub Tornado Release v6.3.2. Debian users should also review the Debian LTS Announcement for distribution-specific updates.

Workarounds

  • Implement application-level URL validation to whitelist allowed redirect destinations
  • Configure reverse proxy or WAF rules to strip or validate redirect parameters before they reach the application
  • Disable or remove redirect functionality if not required for application operations
  • Add confirmation pages for external redirects requiring explicit user acknowledgment
bash
# Example: Upgrade Tornado using pip
pip install --upgrade tornado>=6.3.2

# Verify installed version
pip show tornado | grep Version

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechTornadoweb

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.49%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Tornado Release v6.3.2

  • JVN Security Advisory JVN45127776

  • Debian LTS Announcement
  • Related CVEs
  • CVE-2024-52804: Tornadoweb Tornado DoS 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