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

CVE-2026-33136: Wegia Wegia Reflected XSS Vulnerability

CVE-2026-33136 is a reflected cross-site scripting flaw in Wegia that allows attackers to inject malicious scripts via the sccd parameter. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33136 Overview

CVE-2026-33136 is a Reflected Cross-Site Scripting (XSS) vulnerability affecting WeGIA, an open-source web manager designed for charitable institutions. The vulnerability exists in the listar_memorandos_ativos.php endpoint within the Memorando module, where the sccd GET parameter is reflected directly into the HTML response without proper sanitization or encoding.

An attacker can craft a malicious URL containing arbitrary JavaScript or HTML tags in the sccd parameter. When a victim clicks on this link, the malicious script executes in their browser within the context of the WeGIA application, potentially leading to session hijacking, credential theft, or unauthorized actions on behalf of the authenticated user.

Critical Impact

This XSS vulnerability enables attackers to execute arbitrary JavaScript in authenticated user sessions, potentially compromising sensitive charitable institution data and user credentials.

Affected Products

  • WeGIA versions 3.6.6 and below
  • WeGIA Memorando module (/html/memorando/listar_memorandos_ativos.php)

Discovery Timeline

  • 2026-03-20 - CVE-2026-33136 published to NVD
  • 2026-03-20 - Last updated in NVD database

Technical Details for CVE-2026-33136

Vulnerability Analysis

The vulnerability resides in how the listar_memorandos_ativos.php script handles dynamic success messages displayed to users. The endpoint processes query string parameters to determine what content to display. Specifically, when $_GET['msg'] equals success, the script directly concatenates and reflects the value of $_GET['sccd'] into an HTML alert <div> element without any input validation, sanitization, or output encoding.

This implementation pattern is consistent with other vulnerable endpoints discovered in the Memorando module. The lack of security controls allows attackers to inject arbitrary HTML and JavaScript that will be rendered and executed by the victim's browser.

Root Cause

The root cause is improper input validation and missing output encoding (CWE-79). The application fails to sanitize user-controlled input from the sccd GET parameter before including it in the HTML response. This violates the principle of treating all user input as untrusted and demonstrates a lack of context-aware output encoding when rendering dynamic content.

Attack Vector

The attack is network-based and requires user interaction. An attacker must craft a malicious URL containing JavaScript payload in the sccd parameter and trick a victim into clicking the link. The attack flow is as follows:

  1. Attacker constructs a URL targeting listar_memorandos_ativos.php with msg=success and a malicious sccd value containing JavaScript
  2. Attacker delivers the malicious URL to the victim via phishing email, social engineering, or embedding it in a website
  3. Victim clicks the link while authenticated to WeGIA
  4. The server reflects the malicious payload directly into the HTML response
  5. Victim's browser executes the injected JavaScript in the context of the WeGIA session
  6. Attacker's script can steal session cookies, perform actions as the victim, or redirect to phishing pages

The vulnerability can be exploited by injecting HTML tags and JavaScript event handlers into the sccd parameter. For example, a crafted payload containing script tags or event handlers would be reflected directly into the alert <div> element, causing the browser to execute the malicious code. For detailed technical information, see the GitHub Security Advisory GHSA-xjqp-5q3h-2cxh.

Detection Methods for CVE-2026-33136

Indicators of Compromise

  • Suspicious HTTP GET requests to /html/memorando/listar_memorandos_ativos.php containing <script> tags, event handlers (e.g., onerror, onload), or JavaScript protocol handlers in the sccd parameter
  • Web server logs showing URL-encoded HTML/JavaScript characters (%3C, %3E, %22) in query strings to the Memorando module
  • User reports of unexpected redirects or browser behavior when accessing WeGIA memorando listings
  • Evidence of session cookie exfiltration or unauthorized actions performed by legitimate user accounts

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block XSS payloads in query string parameters targeting WeGIA endpoints
  • Configure intrusion detection systems (IDS) to alert on HTTP requests containing common XSS patterns such as <script>, javascript:, and event handler attributes
  • Enable detailed web server access logging and establish baseline patterns for legitimate listar_memorandos_ativos.php requests
  • Deploy Content Security Policy (CSP) headers to mitigate the impact of successful XSS attacks by restricting inline script execution

Monitoring Recommendations

  • Monitor web server access logs for anomalous requests to the Memorando module with unusual query parameter lengths or special characters
  • Implement real-time alerting for multiple failed or suspicious requests from the same IP address targeting WeGIA endpoints
  • Review authentication logs for session anomalies that may indicate session hijacking following XSS exploitation
  • Establish regular log reviews focusing on the /html/memorando/ directory and related PHP endpoints

How to Mitigate CVE-2026-33136

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.7 or later immediately to address this vulnerability
  • Review web server logs for evidence of exploitation attempts targeting the listar_memorandos_ativos.php endpoint
  • Implement a WAF rule to filter malicious input in the sccd parameter as a temporary protective measure
  • Notify users to be cautious of suspicious links claiming to direct to WeGIA memorando pages
  • Consider temporarily disabling the Memorando module if upgrading is not immediately possible

Patch Information

The vulnerability has been resolved in WeGIA version 3.6.7. Organizations should update to this version or later as soon as possible. The patch is available from the GitHub WeGIA Release 3.6.7. The fix implements proper input sanitization and output encoding for user-controlled parameters rendered in HTML responses.

Workarounds

  • Deploy a Web Application Firewall (WAF) with rules to block requests containing HTML tags or JavaScript in query parameters to WeGIA
  • Implement server-side input validation at the web server level (e.g., using Apache mod_security or Nginx rules) to reject malicious requests before they reach the application
  • Configure Content Security Policy (CSP) headers to prevent inline script execution, reducing the impact of successful XSS attacks
  • Restrict access to the Memorando module to trusted networks or authenticated users only while awaiting the patch deployment
bash
# Example Apache mod_rewrite rule to block XSS attempts (temporary workaround)
# Add to .htaccess or Apache configuration

RewriteEngine On
RewriteCond %{QUERY_STRING} (<script|javascript:|onerror=|onload=) [NC]
RewriteRule ^html/memorando/listar_memorandos_ativos\.php$ - [F,L]

# Example Content-Security-Policy header
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none'"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWegia

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub WeGIA Release 3.6.7
  • Vendor Resources
  • GitHub Security Advisory GHSA-xjqp-5q3h-2cxh
  • Related CVEs
  • CVE-2026-40283: WeGIA Stored XSS Vulnerability

  • CVE-2026-40286: WeGIA Stored XSS Vulnerability

  • CVE-2026-40284: WeGIA Stored XSS Vulnerability

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