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
    • 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-23722

CVE-2026-23722: WeGIA XSS Vulnerability

CVE-2026-23722 is a reflected cross-site scripting flaw in WeGIA that allows attackers to inject malicious scripts via the id_memorando parameter. This article covers the technical details, affected versions, and mitigations.

Published: January 23, 2026

CVE-2026-23722 Overview

CVE-2026-23722 is a Reflected Cross-Site Scripting (XSS) vulnerability discovered in WeGIA, a Web Manager for Charitable Institutions. The vulnerability exists in the html/memorando/insere_despacho.php file, where the application fails to properly sanitize or encode user-supplied input via the id_memorando GET parameter before reflecting it into the HTML source. This allows unauthenticated attackers to inject arbitrary JavaScript or HTML into the context of the user's browser session.

Critical Impact

Unauthenticated attackers can inject malicious scripts that execute in victim browsers, potentially leading to session hijacking, credential theft, or unauthorized actions performed on behalf of authenticated users.

Affected Products

  • WeGIA versions prior to 3.6.2
  • WeGIA Web Manager for Charitable Institutions (all installations using vulnerable versions)
  • Systems running html/memorando/insere_despacho.php endpoint

Discovery Timeline

  • 2026-01-16 - CVE CVE-2026-23722 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-23722

Vulnerability Analysis

This Reflected XSS vulnerability (CWE-79) allows attackers to craft malicious URLs containing JavaScript payloads in the id_memorando GET parameter. When a victim clicks such a link, the malicious script executes within their browser session with the same privileges as the legitimate application. The vulnerability is particularly dangerous because it does not require authentication to exploit, meaning any attacker with knowledge of the vulnerable endpoint can target users of the WeGIA system.

The reflected nature of this vulnerability means the payload is not stored on the server but is instead "reflected" back to the user's browser through the server's response. This typically occurs when user input is included in error messages, search results, or other dynamic content without proper encoding.

Root Cause

The root cause of this vulnerability is the failure to properly sanitize or encode user-supplied input in the insere_despacho.php file. The id_memorando GET parameter value is likely reflected directly into a <script> block or HTML attribute context without adequate output encoding. This violates fundamental secure coding practices that require all user input to be treated as untrusted and properly escaped based on the output context (HTML body, attribute, JavaScript, etc.).

Attack Vector

The attack vector is network-based and requires no authentication or special privileges. An attacker crafts a malicious URL containing JavaScript code in the id_memorando parameter and distributes it to potential victims through phishing emails, social media, or other means. When a victim clicks the link while authenticated to the WeGIA application, the malicious script executes with their session context.

The vulnerability manifests when the id_memorando parameter value is reflected into the page response without proper sanitization. This could allow attackers to inject script tags, event handlers, or break out of existing script contexts to execute arbitrary JavaScript. For detailed technical information about this vulnerability, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-23722

Indicators of Compromise

  • Suspicious requests to html/memorando/insere_despacho.php containing JavaScript code or HTML tags in the id_memorando parameter
  • URL-encoded script tags or event handlers (e.g., %3Cscript%3E, onerror=, onload=) in GET parameters
  • Unusual referrer headers indicating users arrived from external phishing sites
  • Web application firewall alerts for XSS attack patterns targeting the WeGIA application

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block XSS payloads in the id_memorando parameter
  • Configure intrusion detection systems (IDS) to alert on requests containing common XSS vectors targeting insere_despacho.php
  • Review web server access logs for requests to the vulnerable endpoint containing suspicious characters like <, >, ", ', or URL-encoded equivalents
  • Deploy browser-based XSS auditors and Content Security Policy (CSP) headers to detect and prevent script execution

Monitoring Recommendations

  • Enable detailed logging for all requests to the html/memorando/ directory and monitor for anomalous patterns
  • Set up alerts for high volumes of requests to insere_despacho.php from single IP addresses or with unusual parameter values
  • Monitor for reports of suspicious behavior from users who may have clicked malicious links
  • Track authentication events following visits to the vulnerable endpoint to detect potential session hijacking

How to Mitigate CVE-2026-23722

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.2 or later immediately, as this version contains the fix for the vulnerability
  • If immediate patching is not possible, consider temporarily disabling access to the html/memorando/insere_despacho.php endpoint
  • Implement input validation on the id_memorando parameter at the web server or WAF level to reject requests containing potentially malicious characters
  • Deploy Content Security Policy (CSP) headers to mitigate the impact of any successful XSS exploitation

Patch Information

The vulnerability has been fixed in WeGIA version 3.6.2. Organizations should update to this version or later to remediate the vulnerability. The patch likely implements proper input sanitization and output encoding for the id_memorando parameter. For more details, see the GitHub Security Advisory.

Workarounds

  • Restrict access to the vulnerable endpoint using web server access controls or firewall rules until patching is complete
  • Implement a reverse proxy or WAF rule that validates the id_memorando parameter contains only numeric values
  • Train users to be cautious of clicking links to internal applications received via email or external sources
  • Enable browser XSS filters and deploy strict CSP headers to reduce the impact of potential exploitation
bash
# Apache configuration example to restrict access to vulnerable endpoint
<Location "/html/memorando/insere_despacho.php">
    # Option 1: Restrict to internal network only
    Require ip 10.0.0.0/8 192.168.0.0/16
    
    # Option 2: Validate id_memorando contains only digits
    RewriteEngine On
    RewriteCond %{QUERY_STRING} id_memorando=[^0-9]
    RewriteRule .* - [F,L]
</Location>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWegia

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35399: Wegia Wegia Stored XSS Vulnerability

  • CVE-2026-33135: Wegia Web Manager XSS Vulnerability

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

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