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

CVE-2025-27625: Jenkins Open Redirect Vulnerability

CVE-2025-27625 is an open redirect vulnerability in Jenkins that allows attackers to perform phishing attacks through malicious redirects. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-27625 Overview

CVE-2025-27625 is an Open Redirect vulnerability (CWE-601) affecting Jenkins automation server versions 2.499 and earlier, as well as LTS versions 2.492.1 and earlier. The vulnerability exists in how Jenkins handles URL redirects that begin with backslash (\) characters. Jenkins incorrectly considers these redirects as safe, but web browsers interpret backslash characters as part of scheme-relative redirects, allowing attackers to redirect users to malicious external websites.

Critical Impact

Attackers can leverage this vulnerability to conduct phishing attacks by crafting malicious Jenkins URLs that redirect authenticated users to attacker-controlled websites, potentially leading to credential theft or malware distribution.

Affected Products

  • Jenkins weekly releases version 2.499 and earlier
  • Jenkins LTS (Long-Term Support) version 2.492.1 and earlier

Discovery Timeline

  • 2025-03-05 - CVE-2025-27625 published to NVD
  • 2025-06-24 - Last updated in NVD database

Technical Details for CVE-2025-27625

Vulnerability Analysis

This Open Redirect vulnerability stems from insufficient validation of redirect URLs within Jenkins' web application layer. When processing redirect requests, Jenkins validates whether the target URL is considered "safe" before performing the redirect. However, the validation logic fails to properly handle URLs that begin with backslash characters.

Modern web browsers interpret URLs starting with \\ as scheme-relative redirects, treating them similarly to URLs starting with //. This browser behavior means that a URL like \\malicious-site.com gets interpreted as //malicious-site.com, effectively redirecting the user to an external domain. Jenkins' security validation does not account for this browser quirk, creating a disconnect between what Jenkins considers safe and how browsers actually process these URLs.

The vulnerability is particularly dangerous in the context of a CI/CD automation platform like Jenkins, where users frequently interact with the interface and may trust URLs that appear to originate from their Jenkins instance.

Root Cause

The root cause is improper input validation in Jenkins' URL redirect handling logic. The application's security controls check for common redirect attack patterns (such as URLs starting with // or http://) but fail to recognize that backslash characters are treated equivalently by browsers. This validation gap allows specially crafted URLs with leading backslash characters to bypass the intended security restrictions.

Attack Vector

An attacker can exploit this vulnerability by constructing a malicious URL that points to a legitimate Jenkins instance but includes a redirect parameter with a backslash-prefixed external URL. When a victim clicks on the crafted link, they are initially directed to the trusted Jenkins server, which then redirects them to the attacker-controlled website.

The attack requires user interaction—specifically, the victim must click on the malicious link. This makes the vulnerability well-suited for phishing campaigns, where attackers can send convincing emails or messages containing links that appear to point to a legitimate Jenkins server. Since the initial domain in the URL is the trusted Jenkins instance, users may not recognize the threat until after the redirect occurs.

Detection Methods for CVE-2025-27625

Indicators of Compromise

  • Review web server access logs for requests containing backslash characters (\) in URL redirect parameters
  • Monitor for unusual redirect patterns where Jenkins URLs redirect to external domains
  • Check for user reports of unexpected redirects when accessing Jenkins resources
  • Analyze email or communication logs for phishing attempts containing Jenkins URLs with suspicious parameters

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests with backslash characters in redirect-related parameters
  • Configure intrusion detection systems to alert on URL patterns matching \\ followed by domain names
  • Deploy browser-based security extensions that warn users about cross-domain redirects
  • Monitor authentication logs for credential submissions following unusual redirect chains

Monitoring Recommendations

  • Enable detailed access logging on Jenkins reverse proxies to capture full request URLs including query parameters
  • Set up alerting for any 3xx redirect responses that target external domains
  • Regularly audit Jenkins security configurations and installed plugins for additional redirect handling
  • Implement user awareness training to help staff recognize phishing attempts leveraging trusted internal URLs

How to Mitigate CVE-2025-27625

Immediate Actions Required

  • Upgrade Jenkins weekly releases to version 2.500 or later
  • Upgrade Jenkins LTS to version 2.492.2 or later
  • Review recent access logs for potential exploitation attempts
  • Notify users about the phishing risk and advise caution with Jenkins-related links
  • Consider implementing additional URL validation at the reverse proxy level

Patch Information

Jenkins has released security updates addressing this vulnerability. Refer to the Jenkins Security Advisory SECURITY-3501 for detailed patch information and upgrade instructions. Organizations should prioritize upgrading to the fixed versions: Jenkins weekly version 2.500+ or Jenkins LTS version 2.492.2+.

Workarounds

  • Deploy a reverse proxy or WAF in front of Jenkins configured to block requests containing backslash characters in redirect parameters
  • Implement Content Security Policy (CSP) headers to restrict allowed redirect destinations
  • Educate users to verify the final destination URL in their browser address bar after clicking any Jenkins links
  • Consider restricting external network access from Jenkins to limit the impact of successful phishing attacks
bash
# Example nginx configuration to block suspicious redirects
# Add to server block protecting Jenkins
location / {
    # Block requests with backslash in common redirect parameters
    if ($args ~* "redirect=\\\\|url=\\\\|next=\\\\|return=\\\\") {
        return 403;
    }
    proxy_pass http://jenkins_backend;
}

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechJenkins

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Vendor Resources
  • Jenkins Security Advisory #SECURITY-3501
  • Related CVEs
  • CVE-2025-68703: Jervis Library Weak Encryption Vulnerability

  • CVE-2026-33004: Jenkins LoadNinja Information Disclosure

  • CVE-2026-33002: Jenkins Auth Bypass Vulnerability

  • CVE-2026-33001: Jenkins Path Traversal 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