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

CVE-2026-33135: Wegia Web Manager XSS Vulnerability

CVE-2026-33135 is a reflected cross-site scripting flaw in Wegia web manager affecting versions 3.6.6 and below. Attackers can inject malicious JavaScript via the sccs parameter. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33135 Overview

CVE-2026-33135 is a Reflected Cross-Site Scripting (XSS) vulnerability affecting WeGIA, a web manager designed for charitable institutions. The vulnerability exists in the novo_memorandoo.php endpoint in versions 3.6.6 and below, where an attacker can inject arbitrary JavaScript code through the sccs GET parameter. The malicious script is directly echoed into the HTML response without any sanitization or encoding, enabling attackers to execute arbitrary code in the context of a victim's browser session.

Critical Impact

Attackers can steal session cookies, redirect users to malicious sites, deface web content, or perform actions on behalf of authenticated users by crafting malicious URLs that exploit this XSS vulnerability.

Affected Products

  • WeGIA versions 3.6.6 and below
  • WeGIA web manager installations using the novo_memorandoo.php endpoint
  • Charitable institution management systems running vulnerable WeGIA versions

Discovery Timeline

  • March 20, 2026 - CVE-2026-33135 published to NVD
  • March 20, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33135

Vulnerability Analysis

This Reflected XSS vulnerability stems from improper input validation in the WeGIA application. The vulnerable script located at /html/memorando/novo_memorandoo.php processes HTTP GET parameters to display dynamic success messages to users. At approximately line 273, the code evaluates whether the $_GET['msg'] parameter equals success. When this condition is met, the application directly concatenates the value from $_GET['sccs'] into an HTML alert <div> element and outputs it to the browser without any sanitization, encoding, or validation.

This creates a direct injection point where user-controlled input flows unsanitized into the rendered HTML, allowing attackers to inject and execute arbitrary JavaScript code in the victim's browser context. The attack requires user interaction—a victim must click a malicious link crafted by the attacker.

Root Cause

The root cause of this vulnerability is the absence of proper input sanitization and output encoding. The application directly incorporates user-supplied data from the sccs GET parameter into HTML output without applying any protective measures such as:

  • HTML entity encoding
  • Input validation or whitelisting
  • Content Security Policy (CSP) headers
  • Contextual output escaping

The PHP code assumes trust in GET parameter values and echoes them directly into the page, violating secure coding principles for handling user input.

Attack Vector

The attack is network-based and requires user interaction. An attacker crafts a malicious URL targeting the novo_memorandoo.php endpoint with JavaScript code injected into the sccs parameter. When a victim (typically an authenticated user of the WeGIA system) clicks the malicious link, the injected script executes in their browser session.

A typical attack flow involves crafting a URL where the msg parameter is set to success and the sccs parameter contains malicious JavaScript payload. When processed by the vulnerable endpoint, the script is rendered directly in the HTML response. The attacker could leverage this to steal session tokens stored in cookies, perform unauthorized actions using the victim's authenticated session, redirect users to phishing or malware distribution sites, or modify page content to display misleading information.

Detection Methods for CVE-2026-33135

Indicators of Compromise

  • Unusual URL patterns in web server logs containing JavaScript code in the sccs parameter of requests to novo_memorandoo.php
  • HTTP requests to /html/memorando/novo_memorandoo.php with msg=success and suspicious encoded characters in the sccs parameter
  • Reports from users about unexpected browser behavior or redirects when accessing WeGIA memorandum features
  • Web Application Firewall (WAF) alerts for XSS patterns targeting the affected endpoint

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block common XSS patterns in GET parameters, particularly targeting the sccs and msg parameters
  • Enable verbose web server logging and monitor for requests containing script tags, event handlers, or JavaScript URI schemes in query strings
  • Implement browser-based XSS auditor alerts and Content Security Policy (CSP) violation reporting
  • Conduct regular vulnerability scanning targeting reflected XSS in web application endpoints

Monitoring Recommendations

  • Configure log analysis tools to alert on requests containing potential XSS payloads such as <script>, javascript:, onerror=, or similar patterns in URL parameters
  • Monitor for unusual patterns of access to the novo_memorandoo.php endpoint, especially from external referrers
  • Implement real-time alerting for CSP violations that may indicate attempted XSS exploitation

How to Mitigate CVE-2026-33135

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.7 or later, which contains the fix for this vulnerability
  • Review web server access logs for any signs of exploitation attempts targeting the novo_memorandoo.php endpoint
  • Implement or update Web Application Firewall rules to block XSS payloads in the sccs GET parameter
  • Notify users to be cautious of suspicious links pointing to the WeGIA application

Patch Information

The vulnerability has been addressed in WeGIA version 3.6.7. The fix can be obtained from the official GitHub release. The security patch was implemented through Pull Request #1459. For detailed information about the vulnerability and remediation, refer to the GitHub Security Advisory GHSA-w5rv-5884-w94v.

Workarounds

  • If immediate patching is not possible, restrict access to the novo_memorandoo.php endpoint using web server access controls or firewall rules
  • Implement a reverse proxy or WAF rule to strip or encode the sccs parameter before it reaches the application
  • Apply a temporary code fix to sanitize the sccs parameter using PHP's htmlspecialchars() function with ENT_QUOTES flag before output
  • Configure Content Security Policy headers to mitigate the impact of XSS by restricting inline script execution
bash
# Example Apache .htaccess workaround to block suspicious requests
# Add to .htaccess in the WeGIA web root
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{QUERY_STRING} sccs=.*(<|>|script|javascript|onerror) [NC]
    RewriteRule ^html/memorando/novo_memorandoo\.php$ - [F,L]
</IfModule>

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 Release 3.6.7
  • Vendor Resources
  • GitHub Pull Request

  • GitHub Security Advisory GHSA-w5rv-5884-w94v
  • Related CVEs
  • CVE-2026-35399: Wegia Wegia Stored XSS Vulnerability

  • CVE-2026-33136: Wegia Wegia Reflected XSS Vulnerability

  • CVE-2026-23731: WeGIA Clickjacking Vulnerability

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