Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-35404

CVE-2026-35404: Open edX Platform CSRF Vulnerability

CVE-2026-35404 is a CSRF vulnerability in Open edX Platform that allows unvalidated URL redirects, enabling phishing and credential theft attacks. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35404 Overview

CVE-2026-35404 is an Open Redirect vulnerability affecting the Open edX Platform, an open-source learning management system that enables authoring and delivery of online learning at any scale. The view_survey endpoint accepts a redirect_url GET parameter that is passed directly to HttpResponseRedirect() without any URL validation. When a non-existent survey name is provided, the server issues an immediate HTTP 302 redirect to an attacker-controlled URL. Additionally, the same unvalidated URL is embedded in a hidden form field and returned in a JSON response after form submission, where client-side JavaScript performs location.href = url. This enables phishing and credential theft attacks against authenticated Open edX users.

Critical Impact

Authenticated Open edX users can be redirected to malicious sites, enabling phishing attacks and credential theft through the unvalidated redirect_url parameter in the survey endpoint.

Affected Products

  • Open edX Platform (versions prior to commit 76462f1e5fa9b37d2621ad7ad19514b403908970)

Discovery Timeline

  • 2026-04-06 - CVE-2026-35404 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-35404

Vulnerability Analysis

This Open Redirect vulnerability (CWE-601) exists in the view_survey endpoint within lms/djangoapps/survey/views.py. The vulnerability stems from the application's failure to validate user-supplied URLs before using them in redirect operations. The redirect_url GET parameter is accepted directly from user input and passed to Django's HttpResponseRedirect() function without any sanitization or validation to ensure the URL points to a trusted domain.

The attack surface is expanded through multiple vectors: the server-side HTTP 302 redirect when a non-existent survey name is provided, the embedding of the unvalidated URL in hidden form fields, and the client-side JavaScript redirect via location.href. This multi-vector approach makes the vulnerability particularly effective for social engineering attacks against Open edX users.

Root Cause

The root cause is improper input validation in the view_survey endpoint. The application directly accepts the redirect_url GET parameter from user input and uses it in redirect operations without verifying that the destination URL belongs to a trusted domain. This violates the principle of input validation and allows attackers to abuse the legitimate redirect functionality to direct users to malicious external sites.

Attack Vector

An attacker can craft a malicious URL targeting an Open edX installation that includes an attacker-controlled domain in the redirect_url parameter. When an authenticated user clicks this link, they are seamlessly redirected to the malicious site while believing they are still interacting with the trusted Open edX platform. This enables sophisticated phishing attacks where the attacker's site can mimic the Open edX login page to harvest credentials, or serve malware to the victim.

The attack requires user interaction (clicking the malicious link), and because Open edX is an educational platform, attackers could distribute these links through course forums, emails appearing to be from instructors, or other channels where students would expect legitimate Open edX links.

python
# Vulnerable code in lms/djangoapps/survey/views.py
# The redirect_url parameter was passed without validation
    """
    View to render the survey to the end user
    """
-    redirect_url = request.GET.get('redirect_url')
-
-    return view_student_survey(request.user, survey_name, redirect_url=redirect_url)
+    return view_student_survey(request.user, survey_name)


def view_student_survey(user, survey_name, course=None, redirect_url=None, is_required=False, skip_redirect_url=None):

Source: GitHub Commit

Detection Methods for CVE-2026-35404

Indicators of Compromise

  • HTTP requests to /survey/ endpoints containing redirect_url parameters with external domains
  • Unusual HTTP 302 redirects from the Open edX platform to external untrusted domains
  • User reports of unexpected redirects when interacting with survey links
  • Web server logs showing survey endpoint requests with suspicious URL-encoded external domains in the redirect_url parameter

Detection Strategies

  • Monitor web application firewall (WAF) logs for requests to survey endpoints containing external URLs in the redirect_url parameter
  • Implement URL pattern detection rules to flag requests where redirect_url contains domains not on an allowlist
  • Review access logs for survey endpoint requests that result in 302 redirects to external domains
  • Deploy network-level monitoring to detect outbound redirects from the Open edX platform to untrusted destinations

Monitoring Recommendations

  • Configure centralized logging for all survey endpoint access with full query string capture
  • Set up alerting for high volumes of 302 redirects from survey endpoints
  • Implement user behavior analytics to detect unusual navigation patterns indicative of phishing attempts
  • Regularly audit survey-related URLs shared in course communications and forums

How to Mitigate CVE-2026-35404

Immediate Actions Required

  • Apply the security patch by updating to a version containing commit 76462f1e5fa9b37d2621ad7ad19514b403908970
  • Review web server logs for evidence of exploitation attempts targeting the survey endpoint
  • Alert users about potential phishing attempts using Open edX survey links
  • Consider temporarily disabling the survey functionality if immediate patching is not possible

Patch Information

The vulnerability has been fixed in commit 76462f1e5fa9b37d2621ad7ad19514b403908970. The fix removes the ability to pass the redirect_url parameter through the GET request, effectively eliminating the open redirect attack vector. Organizations running Open edX should update to a version containing this fix as soon as possible.

For detailed patch information, refer to the GitHub Security Advisory and the commit details.

Workarounds

  • Implement WAF rules to block or sanitize requests to the survey endpoint containing redirect_url parameters with external domains
  • Configure a reverse proxy to strip or validate the redirect_url parameter before it reaches the application
  • Deploy a Content Security Policy (CSP) that restricts frame ancestors and form actions to trusted domains
  • Temporarily disable or restrict access to the survey functionality until the patch can be applied
bash
# Example nginx configuration to block external redirect_url parameters
# Add to your Open edX nginx configuration
location ~ ^/survey/ {
    # Block requests with redirect_url containing http:// or https:// external domains
    if ($args ~* "redirect_url=https?://(?!your-trusted-domain\.com)") {
        return 403;
    }
    proxy_pass http://lms-backend;
}

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechOpen Edx

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34736: Open edX Platform Auth Bypass 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