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-2025-61669

CVE-2025-61669: Jupyter Server Redirect Vulnerability

CVE-2025-61669 is an open redirect vulnerability in Jupyter Server that enables attackers to redirect users to malicious sites for phishing attacks. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2025-61669 Overview

CVE-2025-61669 is an open redirect vulnerability in Jupyter Server, the backend powering Jupyter web applications. The flaw resides in the LoginFormHandler._redirect_safe() function, which insufficiently validates the next query parameter during the login flow. An attacker can craft a login URL containing values such as ///example.com to redirect authenticated users to arbitrary external domains. This behavior facilitates phishing campaigns by abusing the trust users place in legitimate Jupyter Server URLs. The issue affects jupyter_server versions through 2.17.0 and is resolved in version 2.18.0. The vulnerability is classified under CWE-601: URL Redirection to Untrusted Site.

Critical Impact

Attackers can leverage trusted Jupyter Server login URLs to redirect users to malicious phishing sites, harvesting credentials or delivering malware under the guise of a legitimate scientific computing platform.

Affected Products

  • Jupyter Server versions through 2.17.0
  • Jupyter web applications relying on jupyter_server for authentication
  • Deployments using LoginFormHandler for browser-based login flows

Discovery Timeline

  • 2026-05-05 - CVE-2025-61669 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2025-61669

Vulnerability Analysis

The vulnerability stems from improper validation of user-supplied redirect targets in the Jupyter Server login workflow. When a user authenticates, the next query parameter specifies the post-login destination URL. The LoginFormHandler._redirect_safe() method is intended to restrict redirects to same-origin paths but fails to correctly handle URLs beginning with multiple forward slashes. Inputs such as ///example.com bypass the validation logic and are interpreted by browsers as protocol-relative URLs pointing to external domains. This produces an open redirect that operates entirely within the legitimate Jupyter Server hostname before silently directing the victim elsewhere.

Root Cause

The root cause is incomplete URL parsing in _redirect_safe(). The validation does not normalize leading slash sequences before checking whether the target host matches the server origin. Browsers treat ///example.com and //example.com as schema-relative URLs, but the server-side check evaluates the value as a local path. This parser differential between server validation and browser interpretation produces the redirect bypass.

Attack Vector

The attack requires user interaction. An attacker crafts a login URL such as https://trusted-jupyter.example.org/login?next=///attacker.tld and delivers it through email, chat, or compromised pages. The victim sees a legitimate hostname and authenticates as expected. After successful login, Jupyter Server redirects the browser to the attacker-controlled domain, which can mimic the Jupyter interface to harvest credentials, prompt malicious downloads, or trigger token theft. Because the redirect occurs post-authentication, the attacker can also use the redirect to expose session-bound URL fragments or referrer data to the malicious host.

No verified public exploit code is available. See the GitHub Security Advisory GHSA-qh7q-6qm3-653w for upstream technical details.

Detection Methods for CVE-2025-61669

Indicators of Compromise

  • Web server access logs containing /login requests with a next parameter that begins with multiple forward slashes, backslashes, or includes external hostnames.
  • HTTP 302 responses from Jupyter Server to off-domain Location headers immediately after successful authentication events.
  • Phishing reports from users referencing Jupyter Server login URLs that ultimately delivered them to unfamiliar domains.

Detection Strategies

  • Parse Jupyter Server access logs for next= query parameters and flag values containing //, ///, \\, or absolute URLs to external hosts.
  • Correlate authentication success events with subsequent outbound redirects and alert when the redirect target does not match the expected Jupyter origin.
  • Inspect proxy and CDN telemetry for referrer chains that begin on legitimate Jupyter hosts and terminate on newly registered or low-reputation domains.

Monitoring Recommendations

  • Enable verbose logging on Jupyter Server front-end proxies and forward logs to a centralized analytics platform for query-level inspection.
  • Track the version of jupyter_server deployed across notebook environments and alert when instances at or below 2.17.0 are observed.
  • Monitor user-reported phishing incidents and pivot on the originating URL parameters to identify abuse of vulnerable Jupyter deployments.

How to Mitigate CVE-2025-61669

Immediate Actions Required

  • Upgrade jupyter_server to version 2.18.0 or later across all notebook hosts, JupyterHub deployments, and derivative distributions.
  • Inventory all Jupyter Server installations, including those embedded in data science platforms and container images, to confirm patched versions.
  • Notify users of the phishing risk and reinforce verification of post-login destinations until patching is complete.

Patch Information

The Jupyter Server maintainers fixed the issue in version 2.18.0 by tightening URL validation in LoginFormHandler._redirect_safe(). Refer to the GitHub Security Advisory GHSA-qh7q-6qm3-653w for the upstream fix and release notes. Administrators using package managers should pin jupyter_server>=2.18.0 in dependency manifests.

Workarounds

  • Place Jupyter Server behind a reverse proxy that strips or sanitizes the next query parameter on /login requests when an upgrade cannot be performed immediately.
  • Configure web application firewall rules to block login requests where the next parameter contains //, \\, or fully qualified external URLs.
  • Restrict Jupyter Server access to authenticated VPN users to reduce exposure of crafted login URLs to untrusted recipients.
bash
# Upgrade jupyter_server to the patched release
pip install --upgrade 'jupyter_server>=2.18.0'

# Verify the installed version
python -c "import jupyter_server; print(jupyter_server.__version__)"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechJupyter Server

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:H/SI:N/SA:N/E:X/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
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35397: Jupyter Server Path Traversal Flaw
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