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

CVE-2026-35475: WeGIA Open Redirect Vulnerability

CVE-2026-35475 is an open redirect flaw in WeGIA that allows attackers to manipulate the redirect parameter without validation. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35475 Overview

CVE-2026-35475 is an Open Redirect vulnerability affecting WeGIA, a web manager application designed for charitable institutions. Prior to version 3.6.9, the application fails to properly validate the redirect parameter, which is taken directly from $_GET without URL validation or whitelist checks. This unsanitized input is then used verbatim in a header("Location: ...") call, allowing attackers to redirect users to arbitrary external URLs.

Critical Impact

Attackers can craft malicious URLs that appear to originate from a trusted WeGIA instance but redirect users to phishing sites, malware distribution pages, or credential harvesting portals, potentially compromising charitable institution staff and donors.

Affected Products

  • WeGIA Web Manager versions prior to 3.6.9
  • WeGIA charitable institution management platforms without the security patch

Discovery Timeline

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

Technical Details for CVE-2026-35475

Vulnerability Analysis

This vulnerability falls under CWE-601 (URL Redirection to Untrusted Site, commonly known as Open Redirect). The core issue stems from the application's direct use of user-supplied input in HTTP redirect headers without any form of validation.

When a web application accepts a URL parameter and uses it to redirect users without proper validation, attackers can leverage this trust relationship to direct victims to malicious websites. Since the initial link appears to come from a legitimate WeGIA installation (likely hosted on a trusted domain), users are more likely to trust and follow the redirect.

The attack requires user interaction—specifically, a victim must click on a crafted malicious link. However, once clicked, the redirect happens automatically through the HTTP Location header, making it nearly invisible to the end user.

Root Cause

The root cause is the absence of URL validation or whitelist checking on the redirect parameter before its use in the HTTP Location header. The application directly reads the parameter from $_GET superglobal and passes it to header() without sanitization. Proper implementation would involve validating that the redirect URL either:

  • Points to a domain within an approved whitelist
  • Uses relative paths only (preventing external redirects)
  • Matches an allowed URL pattern

Attack Vector

The vulnerability is exploitable over the network and requires user interaction. An attacker would craft a URL pointing to a legitimate WeGIA instance with a malicious redirect parameter value. This URL could be distributed via:

  • Phishing emails targeting charitable institution staff or donors
  • Social media posts or messages
  • Compromised websites linking to the malicious URL
  • QR codes in printed materials

When a victim clicks the link, they are initially directed to the trusted WeGIA server, which then immediately redirects them to the attacker-controlled destination. This technique is commonly used to bypass email security filters and user suspicion, as the initial domain appears legitimate.

The vulnerability mechanism involves the PHP header() function being called with an unvalidated Location value. For technical details on the specific implementation, see the GitHub Security Advisory.

Detection Methods for CVE-2026-35475

Indicators of Compromise

  • HTTP requests to WeGIA instances containing redirect parameters pointing to external domains
  • Web server access logs showing redirects to suspicious or unknown URLs
  • User reports of being redirected to unexpected websites after clicking WeGIA links
  • Phishing campaigns using legitimate WeGIA URLs with malicious redirect parameters

Detection Strategies

  • Monitor web application logs for redirect parameters containing external URLs or suspicious domains
  • Implement web application firewall (WAF) rules to flag or block requests with external URLs in redirect parameters
  • Deploy URL reputation checking on outbound redirect targets
  • Analyze email gateway logs for phishing attempts using WeGIA URLs with redirect parameters

Monitoring Recommendations

  • Enable detailed logging of all HTTP redirect responses from WeGIA instances
  • Set up alerts for unusual patterns of redirect parameter usage
  • Monitor for spike in 302/301 redirects to external domains
  • Track referrer headers to identify potential phishing link sources

How to Mitigate CVE-2026-35475

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.9 or later immediately
  • Review web server logs for evidence of exploitation attempts
  • Alert users about potential phishing campaigns leveraging this vulnerability
  • Consider implementing additional WAF rules while patching is in progress

Patch Information

The vulnerability has been fixed in WeGIA version 3.6.9. Organizations should update to this version or later to remediate the vulnerability. The patch implements proper URL validation to prevent arbitrary redirects to external domains.

For detailed information about the fix, refer to the GitHub Security Advisory.

Workarounds

  • Implement a web application firewall (WAF) rule to block or sanitize requests with external URLs in the redirect parameter
  • Use a reverse proxy to validate redirect parameter values before they reach the WeGIA application
  • Restrict access to affected endpoints via IP allowlisting until patching is complete
  • Educate users to verify URLs carefully before clicking, especially in emails
bash
# Example WAF rule concept (ModSecurity)
# Block redirect parameters containing external URLs
SecRule ARGS:redirect "@rx ^https?://" \
    "id:1001,phase:1,deny,status:403,msg:'Blocked external redirect attempt'"

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechWegia

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:L/VI:L/VA:N/SC:L/SI:L/SA:N/E:X/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-61604: Wegia CSRF Vulnerability

  • CVE-2026-42870: WeGIA Stored XSS Vulnerability

  • CVE-2026-42872: WeGIA XSS Vulnerability

  • CVE-2026-45025: WeGIA Stored 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