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-42860

CVE-2026-42860: Open edX Enterprise SSRF Vulnerability

CVE-2026-42860 is an SSRF flaw in Open edX Enterprise Service that allows authenticated Enterprise Admins to trigger unauthorized server-side requests. This post covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-42860 Overview

CVE-2026-42860 is a Server-Side Request Forgery (SSRF) vulnerability in the Open edX edx-enterprise Service app. The flaw exists in the sync_provider_data endpoint of SAMLProviderDataViewSet, which fetches SAML metadata from a URL stored in SAMLProviderConfig.metadata_source. Authenticated users with the Enterprise Admin role can set this field to an arbitrary URL through the SAMLProviderConfigViewSet PATCH endpoint, then trigger a server-side HTTP request by calling sync_provider_data. The fetch in fetch_metadata_xml() passes the URL directly to requests.get() without scheme enforcement, IP filtering, or timeout. Affected versions span 7.0.2 through 7.0.4, and the issue is fixed in 7.0.5.

Critical Impact

Authenticated Enterprise Admin users can coerce the Open edX server into making arbitrary outbound HTTP requests, enabling internal network reconnaissance, metadata service abuse, and exposure of sensitive internal services [CWE-918].

Affected Products

  • Open edX edx-enterprise 7.0.2
  • Open edX edx-enterprise 7.0.3
  • Open edX edx-enterprise 7.0.4

Discovery Timeline

  • 2026-05-11 - CVE-2026-42860 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42860

Vulnerability Analysis

The vulnerability resides in the SAML provider configuration workflow of the Open edX Enterprise Service app. An authenticated user with the Enterprise Admin role updates the metadata_source field on a SAMLProviderConfig object via a PATCH request to SAMLProviderConfigViewSet. The field accepts any string, with no validation that the value points to a legitimate SAML identity provider metadata endpoint.

When the user subsequently invokes the sync_provider_data endpoint on SAMLProviderDataViewSet, the backend reads the attacker-controlled URL and passes it to fetch_metadata_xml(). That function calls requests.get() directly on the supplied URL. The request inherits the server's network position, granting access to internal-only services that external clients cannot reach.

Root Cause

The root cause is missing input validation on a user-controlled URL before issuing a server-side HTTP request. The fetch_metadata_xml() helper does not enforce an allowlist of schemes, reject loopback or private IP ranges, or apply a request timeout. This pattern maps to CWE-918: Server-Side Request Forgery.

Attack Vector

An authenticated Enterprise Admin sends a PATCH request to SAMLProviderConfigViewSet, setting metadata_source to a target such as http://169.254.169.254/latest/meta-data/ for cloud instance metadata, http://127.0.0.1:6379/ for a local Redis service, or file:// and gopher:// schemes depending on requests behavior. The attacker then calls sync_provider_data, causing the server to issue the outbound request. Response content or error patterns may leak via API responses or backend logs. The lack of timeout also permits long-hanging connections that consume worker resources.

No verified public exploit code is available. Refer to the GitHub Security Advisory GHSA-64cv-vxpr-j6vc for vendor details.

Detection Methods for CVE-2026-42860

Indicators of Compromise

  • Unexpected PATCH requests to SAMLProviderConfigViewSet modifying the metadata_source field to non-IdP URLs, internal IPs, or non-HTTPS schemes.
  • Calls to the sync_provider_data endpoint immediately following metadata_source changes by the same user session.
  • Outbound HTTP requests from Open edX application servers to RFC1918 ranges, link-local addresses (169.254.169.254), or localhost.
  • Application logs from fetch_metadata_xml() showing non-XML responses or connection errors to unusual hosts.

Detection Strategies

  • Audit Django application logs for SAMLProviderConfig mutations and correlate with subsequent sync_provider_data invocations from the same actor.
  • Inspect egress traffic from Open edX hosts for HTTP calls to internal management interfaces, cloud metadata endpoints, or non-standard ports.
  • Alert on Enterprise Admin accounts performing rapid sequential PATCH and sync operations outside normal SAML onboarding windows.

Monitoring Recommendations

  • Forward web server and Django audit logs to a centralized SIEM and build queries for metadata_source field changes.
  • Enable network flow monitoring on application server egress interfaces and baseline expected destinations for SAML metadata fetches.
  • Monitor Enterprise Admin role assignments and review the principle of least privilege for users granted this capability.

How to Mitigate CVE-2026-42860

Immediate Actions Required

  • Upgrade edx-enterprise to version 7.0.5 or later, which contains the official fix.
  • Audit all existing SAMLProviderConfig.metadata_source values for suspicious URLs targeting internal hosts, loopback addresses, or cloud metadata services.
  • Review the list of accounts holding the Enterprise Admin role and revoke access for users who no longer require it.
  • Rotate any credentials, tokens, or cloud instance metadata that may have been exposed via SSRF prior to patching.

Patch Information

The maintainers fixed the issue in edx-enterprise version 7.0.5. The patch enforces validation on URLs passed to fetch_metadata_xml(). See the GitHub Security Advisory GHSA-64cv-vxpr-j6vc for the complete advisory and remediation notes.

Workarounds

  • Restrict outbound network access from Open edX application servers using egress firewall rules that block traffic to RFC1918 ranges and 169.254.169.254.
  • Place the Open edX backend behind an outbound proxy that allowlists only known SAML identity provider hosts.
  • Temporarily remove the Enterprise Admin role from non-essential accounts until the upgrade is applied.
  • Disable or restrict access to the sync_provider_data endpoint at the reverse proxy layer if patching cannot occur immediately.
bash
# Example egress restriction using iptables to block cloud metadata access
iptables -A OUTPUT -d 169.254.169.254 -j REJECT
iptables -A OUTPUT -d 127.0.0.0/8 ! -o lo -j REJECT
iptables -A OUTPUT -d 10.0.0.0/8 -p tcp -m tcp --dport 80 -j REJECT
iptables -A OUTPUT -d 172.16.0.0/12 -p tcp -m tcp --dport 80 -j REJECT
iptables -A OUTPUT -d 192.168.0.0/16 -p tcp -m tcp --dport 80 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechOpenedx

  • 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
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42858: Open edX Platform SSRF Vulnerability

  • CVE-2026-42857: Open edX Platform XSS 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