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

CVE-2026-23724: WeGIA Stored XSS Vulnerability

CVE-2026-23724 is a stored XSS flaw in WeGIA, a web manager for charitable institutions, allowing attackers to inject malicious scripts. This post covers technical details, affected versions, and mitigation steps.

Published: January 23, 2026

CVE-2026-23724 Overview

CVE-2026-23724 is a Stored Cross-Site Scripting (XSS) vulnerability identified in WeGIA, a web manager application designed for charitable institutions. The vulnerability exists in the html/atendido/cadastro_ocorrencia.php endpoint where the application fails to properly sanitize user-controlled data before rendering it inside the "Atendido" selection dropdown. This allows attackers with authenticated access to inject malicious scripts that persist and execute in the context of other users' browsers.

Critical Impact

Authenticated attackers can inject persistent malicious scripts that execute in victims' browsers, potentially leading to session hijacking, credential theft, or unauthorized actions on behalf of users within the WeGIA charitable institution management system.

Affected Products

  • WeGIA versions prior to 3.6.2
  • WeGIA web manager for charitable institutions

Discovery Timeline

  • January 16, 2026 - CVE-2026-23724 published to NVD
  • January 16, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23724

Vulnerability Analysis

This Stored XSS vulnerability (CWE-79) occurs due to improper neutralization of input during web page generation. The WeGIA application accepts user-supplied data that is stored in the database and subsequently rendered within the "Atendido" selection dropdown without proper sanitization or output encoding. When other users access the affected page, the malicious payload executes in their browser context.

The vulnerability requires authenticated access to exploit, making it a post-authentication attack vector. However, once injected, the malicious script persists and affects all users who view the affected dropdown element, including administrators with elevated privileges.

Root Cause

The root cause is the absence of input validation and output encoding in the cadastro_ocorrencia.php endpoint. User-controlled data is directly inserted into the HTML response without being sanitized for potentially dangerous characters or scripts. This violates the fundamental security principle of never trusting user input and always encoding output based on the rendering context.

Attack Vector

The attack is network-accessible and requires low-privileged authenticated access to the WeGIA application. An attacker would submit a malicious payload containing JavaScript code through the vulnerable form field. This payload is stored in the application's database and subsequently retrieved and rendered in the "Atendido" selection dropdown whenever the affected page is loaded.

The malicious script could perform various actions including stealing session cookies, redirecting users to phishing sites, modifying page content, or performing actions on behalf of authenticated users. For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-23724

Indicators of Compromise

  • Unusual JavaScript code or HTML tags stored in database fields related to the "Atendido" functionality
  • Unexpected script execution or browser behavior when accessing the cadastro_ocorrencia.php page
  • Web application firewall logs showing blocked XSS patterns targeting the vulnerable endpoint
  • User reports of suspicious redirects or unexpected behavior within the WeGIA application

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block common XSS payloads targeting form submissions
  • Monitor server logs for requests containing script tags, event handlers, or encoded JavaScript in POST parameters to cadastro_ocorrencia.php
  • Conduct regular security scans using tools capable of detecting stored XSS vulnerabilities
  • Review database content for suspicious entries containing HTML or JavaScript in user-controllable fields

Monitoring Recommendations

  • Enable detailed logging for all form submissions within the WeGIA application
  • Configure intrusion detection systems to alert on XSS signature patterns in HTTP traffic
  • Implement Content Security Policy (CSP) headers to restrict script execution sources and detect policy violations
  • Regularly audit user-generated content stored in the database for malicious payloads

How to Mitigate CVE-2026-23724

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.2 or later immediately, as this release contains the security fix
  • Review database content for any stored malicious payloads and sanitize affected records
  • Implement Content Security Policy headers to reduce the impact of any existing XSS vulnerabilities
  • Enable Web Application Firewall rules to block XSS attack patterns while patching is in progress

Patch Information

The vulnerability has been addressed in WeGIA version 3.6.2. Organizations should upgrade to this version or later to remediate the vulnerability. The fix is documented in GitHub Pull Request #1333 and the patched version is available at the official release page. For complete vulnerability details, review the GitHub Security Advisory GHSA-3r3q-8573-g3cq.

Workarounds

  • Implement server-side input validation to reject or sanitize potentially malicious input before storage
  • Apply output encoding using context-appropriate encoding functions when rendering user-supplied data
  • Deploy a Web Application Firewall with XSS protection rules as a temporary mitigation layer
  • Restrict access to the vulnerable endpoint to only essential users until the patch is applied
bash
# Example: Add Content Security Policy header in Apache configuration
# Add to .htaccess or Apache virtual host configuration
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"

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 Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Pull Request

  • GitHub Release Tag

  • 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