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

CVE-2025-62716: Plane Project Management XSS Vulnerability

CVE-2025-62716 is a cross-site scripting flaw in Plane project management software that allows unauthenticated attackers to execute malicious JavaScript. This post covers technical details, affected versions, and patches.

Updated: May 19, 2026

CVE-2025-62716 Overview

CVE-2025-62716 is an open redirect vulnerability in Plane, an open-source project management platform. The flaw exists in the ?next_path query parameter, which is passed directly to router.push without scheme validation. Attackers can supply arbitrary schemes such as javascript:, turning the open redirect into a cross-site scripting (XSS) flaw [CWE-79]. Exploitation requires no authentication but does require user interaction with a crafted link. Successful exploitation enables arbitrary JavaScript execution in the victim's browser, leading to information disclosure, privilege escalation, and modification of administrative settings. The issue is patched in Plane version 1.1.0.

Critical Impact

Unauthenticated attackers can execute arbitrary JavaScript in a victim's browser through a crafted next_path parameter, enabling session theft, privilege escalation, and administrative changes.

Affected Products

  • Plane (makeplane/plane) versions prior to 1.1.0
  • Self-hosted Plane deployments using vulnerable releases
  • Plane Community Edition and related distributions prior to the patched release

Discovery Timeline

  • 2025-10-24 - CVE-2025-62716 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-62716

Vulnerability Analysis

The vulnerability resides in Plane's client-side navigation logic. The application reads the next_path query parameter from incoming URLs and forwards the value into router.push without validating the URL scheme. Because router.push accepts any string, an attacker can specify a javascript: URI instead of a relative application path. When the victim's browser follows the redirect, the JavaScript scheme executes in the origin context of the Plane application.

This transforms a typical open redirect into a stored execution primitive within the authenticated session. Arbitrary scripts can read session tokens, call internal APIs, and alter workspace or administrative configuration. The vulnerability is categorized as Improper Neutralization of Input During Web Page Generation [CWE-79].

Root Cause

The root cause is missing input validation on the next_path parameter. The application trusts user-controlled redirect targets and does not enforce an allowlist of safe schemes such as http:, https:, or relative paths beginning with /. Passing an unvalidated string to router.push permits non-navigational schemes including javascript: and data:.

Attack Vector

An attacker crafts a Plane URL containing a malicious next_path value, for example a link pointing to a login or authentication-handling route that appends ?next_path=javascript:<payload>. The attacker delivers the link through phishing, chat, or third-party content. When an authenticated Plane user clicks the link, the redirect handler invokes router.push with the attacker's payload, executing JavaScript in the Plane origin. The script can then call internal endpoints to escalate privileges, modify administrative settings, or exfiltrate workspace data.

No verified public exploit code is available. See the GitHub Security Advisory for technical details from the maintainers.

Detection Methods for CVE-2025-62716

Indicators of Compromise

  • Web server or proxy logs containing requests with next_path=javascript:, next_path=data:, or other non-HTTP schemes in the query string.
  • URL-encoded variants such as next_path=javascript%3A or next_path=%2F%2Fattacker.tld appearing in access logs.
  • Unexpected outbound requests from authenticated user sessions to attacker-controlled domains shortly after a redirect.
  • Administrative setting changes or role modifications that do not correlate to legitimate admin activity.

Detection Strategies

  • Inspect application and reverse proxy logs for next_path values that do not begin with a single / followed by an alphanumeric path segment.
  • Deploy a web application firewall rule that blocks query parameters containing javascript:, data:, or vbscript: schemes.
  • Correlate authentication events with subsequent admin API calls originating from the same session to surface privilege abuse following a click.

Monitoring Recommendations

  • Enable Content Security Policy (CSP) reporting to capture inline script execution attempts and javascript: URI navigations.
  • Forward Plane access logs to a centralized analytics platform and alert on anomalous next_path values.
  • Monitor audit logs for administrative configuration changes and workspace permission updates against an established baseline.

How to Mitigate CVE-2025-62716

Immediate Actions Required

  • Upgrade Plane to version 1.1.0 or later on all self-hosted instances.
  • Audit administrative settings, user roles, and workspace permissions for unauthorized changes made before patching.
  • Invalidate active user sessions after upgrading to force re-authentication.
  • Notify users to avoid clicking Plane links received from untrusted sources until the upgrade is complete.

Patch Information

The maintainers released a fix in Plane version 1.1.0. The patch enforces validation on the next_path parameter so that only same-origin relative paths are accepted by router.push. Refer to the GitHub Security Advisory GHSA-6fj7-xgpg-mj6f for the official remediation guidance.

Workarounds

  • If immediate upgrade is not feasible, deploy a reverse proxy rule that strips or rejects requests where next_path does not start with /.
  • Apply a strict Content Security Policy that disallows inline script execution and javascript: URIs.
  • Restrict access to the Plane instance to trusted networks or VPN-connected users until the patch is applied.
bash
# Example NGINX rule to block non-relative next_path values
if ($arg_next_path !~ "^/[A-Za-z0-9_\-/]*$") {
    return 400;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechPlane

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-46558: Plane Authorization Bypass Vulnerability

  • CVE-2026-40102: Plane ORM Injection Vulnerability

  • CVE-2026-39843: Plane Project Management SSRF Vulnerability

  • CVE-2026-27949: Plane Information Disclosure 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