A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-41430

CVE-2026-41430: Frappe Press XSS Vulnerability

CVE-2026-41430 is a reflected XSS flaw in Frappe Press that exploits the redirect parameter on the login page, allowing attackers to execute malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-41430 Overview

CVE-2026-41430 is a reflected Cross-Site Scripting (XSS) vulnerability in Frappe Press, a custom application that powers Frappe Cloud for managing infrastructure, subscriptions, marketplace, and software-as-a-service (SaaS) deployments. The vulnerability exists in the redirect parameter on the login page, which fails to properly validate user-supplied input before using it in a redirect operation.

Critical Impact

Attackers can craft malicious URLs that, when clicked by authenticated users, execute arbitrary JavaScript in the context of the victim's browser session, potentially leading to session hijacking or credential theft.

Affected Products

  • Frappe Press (versions prior to commit 16d1b6ca2559f858a1de77bcb03fd7f1b81671c6)

Discovery Timeline

  • April 24, 2026 - CVE CVE-2026-41430 published to NVD
  • April 30, 2026 - Last updated in NVD database

Technical Details for CVE-2026-41430

Vulnerability Analysis

This reflected XSS vulnerability occurs in the login flow of the Frappe Press dashboard. The redirect query parameter is accepted on the login page and used directly to redirect users after successful authentication. Prior to the security patch, the application did not validate whether the redirect URL was an internal path, allowing attackers to inject external URLs or JavaScript payloads.

The vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation). The attack requires user interaction—a victim must click a crafted malicious link—but requires no authentication to exploit, as the attack occurs during the login process itself.

Root Cause

The root cause is insufficient input validation on the redirect query parameter in the LoginSignup.vue component. The original implementation blindly accepted any value provided in the redirect parameter and used it directly in window.location.href after successful authentication. This design flaw allowed attackers to supply arbitrary URLs, including protocol-relative URLs (//malicious.com) or JavaScript URIs, bypassing any expectation of internal-only redirects.

Attack Vector

The attack vector is network-based, requiring an attacker to craft a malicious URL and convince a victim to click it. The attack flow typically involves:

  1. Attacker crafts a malicious URL with a payload in the redirect parameter
  2. Victim clicks the link and is presented with the legitimate login page
  3. After authentication, the victim is redirected to the attacker-controlled destination
  4. The malicious redirect can execute JavaScript or redirect to a phishing page
text
 		},
 		afterLogin(res) {
 			let loginRoute = `/dashboard${res.dashboard_route || '/'}`;
-			// if query param redirect is present, redirect to that route
-			if (this.$route.query.redirect) {
-				loginRoute = this.$route.query.redirect;
+			// If `redirect` is present in query, redirect to that.
+			// Restrict redirect to relative paths.
+			const redirect = this.$route.query.redirect;
+			if (redirect && redirect.startsWith('/') && !redirect.startsWith('//')) {
+				loginRoute = redirect;
 			}
 			localStorage.setItem('login_email', this.email);
 			window.location.href = loginRoute;

Source: GitHub Commit Details

Detection Methods for CVE-2026-41430

Indicators of Compromise

  • Login URLs containing suspicious redirect parameter values with external domains or protocol-relative URLs (//)
  • Web server access logs showing login page requests with JavaScript schemes in query strings
  • Unusual redirects away from the Frappe Press domain immediately following authentication

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block suspicious redirect parameters containing external URLs or JavaScript payloads
  • Monitor access logs for login page requests containing redirect parameters with protocol-relative URLs (//) or external domain references
  • Deploy browser-based security controls to detect unexpected cross-origin navigation after authentication

Monitoring Recommendations

  • Enable detailed logging for authentication endpoints to capture all query parameters
  • Configure alerting for login page requests with redirect parameters that do not start with a single forward slash
  • Review authentication flow telemetry for any redirects to external domains post-login

How to Mitigate CVE-2026-41430

Immediate Actions Required

  • Update Frappe Press to include commit 16d1b6ca2559f858a1de77bcb03fd7f1b81671c6 or later
  • Review authentication logs for any evidence of exploitation attempts using malicious redirect parameters
  • Implement Content Security Policy (CSP) headers to mitigate potential XSS impact

Patch Information

The vulnerability is fixed in commit 16d1b6ca2559f858a1de77bcb03fd7f1b81671c6. The patch modifies the afterLogin function in dashboard/src/pages/LoginSignup.vue to validate that the redirect parameter starts with a single forward slash (/) and explicitly blocks protocol-relative URLs (those starting with //). Organizations should update their Frappe Press installation to include this commit. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or WAF rule to strip or validate the redirect query parameter on login endpoints
  • Implement server-side validation to ensure all redirect targets are on the same domain before the frontend patch can be applied
  • Consider disabling custom redirect functionality temporarily if immediate patching is not possible
bash
# Example Nginx configuration to block suspicious redirect parameters
location /login {
    if ($arg_redirect ~* "^(//|http|javascript)") {
        return 403;
    }
    proxy_pass http://frappe_backend;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechFrappe Press

  • SeverityLOW

  • CVSS Score1.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:U/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-79
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41317: Frappe Press CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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