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-2026-30242

CVE-2026-30242: Plane Project Management Tool SSRF Flaw

CVE-2026-30242 is a server-side request forgery vulnerability in Plane that allows attackers with ADMIN privileges to access internal networks. This article covers technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-30242 Overview

CVE-2026-30242 is a Server-Side Request Forgery (SSRF) vulnerability in Plane, an open-source project management tool. The vulnerability exists in the webhook URL validation logic within plane/app/serializers/webhook.py, which only checks for loopback addresses using ip.is_loopback. This insufficient validation allows attackers with workspace ADMIN role to create webhooks pointing to private and internal network addresses, including 10.x.x.x, 172.16.x.x, 192.168.x.x, and the AWS metadata endpoint 169.254.169.254. When webhook events fire, the server makes HTTP requests to these internal addresses and stores the full response, enabling SSRF with complete response read-back capabilities.

Critical Impact

Authenticated attackers with workspace ADMIN privileges can exploit this SSRF vulnerability to access internal network resources, cloud instance metadata, and sensitive services not intended to be externally accessible.

Affected Products

  • Plane versions prior to 1.2.3

Discovery Timeline

  • 2026-03-06 - CVE-2026-30242 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-30242

Vulnerability Analysis

This SSRF vulnerability (CWE-918) stems from incomplete IP address validation in the webhook functionality. The webhook serializer in Plane only validates against loopback addresses (127.0.0.1, ::1), failing to account for RFC 1918 private network ranges and link-local addresses commonly used in cloud environments for metadata services.

When a user with workspace ADMIN privileges configures a webhook, they can specify a target URL pointing to internal network resources. The application then makes server-side HTTP requests to these URLs when webhook events are triggered, and critically, returns the full response content to the attacker. This creates a powerful SSRF primitive that enables reconnaissance and data exfiltration from internal infrastructure.

The vulnerability is particularly dangerous in cloud-hosted deployments where access to instance metadata services (such as 169.254.169.254 in AWS) can expose IAM credentials, API tokens, and other sensitive configuration data.

Root Cause

The root cause is insufficient URL validation in the plane/app/serializers/webhook.py file. The validation logic relies solely on Python's ip.is_loopback property to block internal addresses. This check fails to account for:

  • Private IPv4 ranges: 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16
  • Link-local addresses: 169.254.0.0/16 (including cloud metadata endpoints)
  • IPv6 unique local addresses: fc00::/7
  • Other non-routable address spaces

Attack Vector

An attacker with workspace ADMIN privileges in Plane can exploit this vulnerability through the following attack flow:

  1. Authenticate to Plane with workspace ADMIN credentials
  2. Create a new webhook configuration targeting an internal IP address (e.g., http://169.254.169.254/latest/meta-data/)
  3. Trigger a webhook event (such as creating or updating a project issue)
  4. The server makes an HTTP request to the attacker-specified internal URL
  5. The server stores and returns the full response content
  6. The attacker retrieves the response containing sensitive internal data

The vulnerability requires low-privilege authentication (workspace ADMIN role) but can result in access to highly sensitive internal resources and potential lateral movement within cloud or corporate networks.

Detection Methods for CVE-2026-30242

Indicators of Compromise

  • Webhook configurations targeting private IP ranges (10.x.x.x, 172.16.x.x, 192.168.x.x)
  • Webhook URLs pointing to cloud metadata endpoints (169.254.169.254)
  • Unusual outbound HTTP connections from the Plane server to internal network addresses
  • Webhook configurations with non-standard ports targeting internal services

Detection Strategies

  • Monitor webhook configuration changes for URLs containing private IP addresses or metadata service endpoints
  • Implement network-level monitoring for outbound connections from application servers to internal IP ranges
  • Review webhook audit logs for suspicious URL patterns or high-frequency access attempts
  • Deploy web application firewall rules to detect SSRF patterns in webhook URL parameters

Monitoring Recommendations

  • Enable comprehensive logging for all webhook creation and modification events
  • Configure alerting on network connections to RFC 1918 address ranges from the Plane application tier
  • Monitor for access patterns consistent with metadata service enumeration (sequential requests to 169.254.169.254)
  • Implement egress filtering and logging at the network perimeter

How to Mitigate CVE-2026-30242

Immediate Actions Required

  • Upgrade Plane to version 1.2.3 or later immediately
  • Audit existing webhook configurations for URLs targeting internal IP addresses
  • Review webhook activity logs for evidence of exploitation
  • Implement network-level egress controls to restrict Plane server access to internal resources

Patch Information

The vulnerability has been patched in Plane version 1.2.3. The patch enhances webhook URL validation to block all private and non-routable IP address ranges, not just loopback addresses. Organizations should upgrade to the patched version as soon as possible.

For detailed patch information, see the GitHub Release v1.2.3 and the GitHub Security Advisory GHSA-fpx8-73gf-7x73.

Workarounds

  • Implement network-level egress filtering to prevent the Plane server from making HTTP connections to private IP ranges and cloud metadata endpoints
  • Deploy a web application firewall with SSRF protection rules in front of the Plane application
  • Restrict webhook creation permissions to trusted administrators only
  • Use network segmentation to isolate the Plane application from sensitive internal services
bash
# Example iptables rules to block SSRF to private networks from Plane server
# Block connections to private IPv4 ranges
iptables -A OUTPUT -d 10.0.0.0/8 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -m owner --uid-owner www-data -j DROP
iptables -A OUTPUT -d 169.254.0.0/16 -m owner --uid-owner www-data -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechPlane

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Release v1.2.3
  • Vendor Resources
  • GitHub Security Advisory GHSA-fpx8-73gf-7x73
  • Related CVEs
  • CVE-2026-39843: Plane Project Management SSRF Vulnerability

  • CVE-2026-27706: Plane Project Management Tool SSRF Flaw

  • CVE-2024-31461: 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 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