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

CVE-2026-35395: Wegia SQL Injection Vulnerability

CVE-2026-35395 is a SQL injection vulnerability in Wegia, a web manager for charitable institutions. Authenticated users can execute arbitrary SQL commands. This article covers technical details, affected versions, and patches.

Published: April 10, 2026

CVE-2026-35395 Overview

CVE-2026-35395 is a SQL injection vulnerability discovered in WeGIA, a web-based manager designed for charitable institutions. Prior to version 3.6.9, the application contains a critical SQL injection flaw in the dao/memorando/DespachoDAO.php file. The id_memorando parameter is extracted from $_REQUEST without proper validation and is directly interpolated into SQL queries, enabling any authenticated user to execute arbitrary SQL commands against the database.

Critical Impact

Authenticated attackers can leverage this SQL injection vulnerability to read, modify, or delete sensitive data from the database, potentially compromising the entire charitable institution's records including donor information, financial data, and beneficiary details.

Affected Products

  • WeGIA versions prior to 3.6.9
  • WeGIA Web Manager for charitable institutions (all configurations using DespachoDAO.php)

Discovery Timeline

  • 2026-04-06 - CVE-2026-35395 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-35395

Vulnerability Analysis

This SQL injection vulnerability exists due to improper input validation in the WeGIA application's memorandum dispatch functionality. The vulnerable code resides in dao/memorando/DespachoDAO.php, where user-supplied input from the id_memorando parameter is directly concatenated into SQL query strings without any sanitization or parameterization.

When a request is made to the affected endpoint, the application extracts the id_memorando value from the $_REQUEST superglobal array. This value is then interpolated directly into SQL statements, creating a classic SQL injection attack surface. Since WeGIA is designed for charitable institutions managing sensitive data about donors and beneficiaries, successful exploitation could expose personally identifiable information, financial records, and operational data.

The vulnerability requires authentication to exploit, meaning an attacker must have valid credentials to access the vulnerable endpoint. However, even low-privileged authenticated users can leverage this flaw to escalate their database access beyond their intended permissions.

Root Cause

The root cause of CVE-2026-35395 is the failure to implement proper input validation and parameterized queries in the DespachoDAO.php Data Access Object. The developers directly interpolated user input into SQL query strings instead of using prepared statements with bound parameters. This violates secure coding best practices for database interactions and is a common cause of SQL injection vulnerabilities in PHP applications.

Attack Vector

The attack vector for this vulnerability is network-based. An authenticated attacker can craft malicious HTTP requests containing SQL injection payloads in the id_memorando parameter. These requests are sent to the vulnerable endpoint, where the payload is processed by DespachoDAO.php and executed against the backend database.

The exploitation flow involves sending crafted requests with SQL syntax embedded in the id_memorando parameter. Depending on the database configuration and application behavior, attackers can use techniques such as UNION-based injection, error-based injection, or time-based blind injection to extract data or manipulate database contents. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-35395

Indicators of Compromise

  • Unusual SQL error messages in application logs referencing DespachoDAO.php or the memorando module
  • HTTP requests to memorando-related endpoints containing SQL syntax characters such as single quotes, semicolons, or SQL keywords like UNION, SELECT, or DROP
  • Database query logs showing unexpected or malformed queries originating from the dispatch functionality
  • Anomalous database access patterns indicating unauthorized data retrieval or modification

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block SQL injection patterns in the id_memorando parameter
  • Implement application-level logging to capture all requests to dao/memorando/DespachoDAO.php and related endpoints
  • Configure database activity monitoring to alert on unusual query patterns or bulk data access
  • Enable SentinelOne's application control features to monitor for suspicious PHP process behavior

Monitoring Recommendations

  • Review web server access logs for requests containing SQL injection indicators targeting memorando endpoints
  • Monitor database audit logs for queries with unexpected syntax or unauthorized data access
  • Set up alerting for failed login attempts followed by successful authentication and immediate access to vulnerable endpoints
  • Implement real-time monitoring for error-based SQL injection attempts that may generate distinctive error messages

How to Mitigate CVE-2026-35395

Immediate Actions Required

  • Upgrade WeGIA to version 3.6.9 or later immediately, as this version contains the fix for the SQL injection vulnerability
  • If immediate patching is not possible, restrict access to the memorando module at the web server or application level
  • Review database access logs for signs of prior exploitation and assess potential data exposure
  • Implement network-level controls to limit access to the WeGIA application to trusted IP ranges

Patch Information

The vulnerability is fixed in WeGIA version 3.6.9. Organizations running versions prior to 3.6.9 should upgrade immediately. The security patch addresses the SQL injection by implementing proper input validation and parameterized queries for the id_memorando parameter. For additional details, consult the WeGIA GitHub Security Advisory.

Workarounds

  • Deploy a Web Application Firewall (WAF) with rules configured to block SQL injection attempts targeting the id_memorando parameter
  • Implement input validation at the web server level using ModSecurity or similar tools to reject requests containing SQL syntax
  • Restrict access to the vulnerable dao/memorando/DespachoDAO.php endpoint using web server access controls until patching is complete
  • Consider temporarily disabling the memorando dispatch functionality if it is not critical to operations
bash
# Example Apache .htaccess configuration to restrict access to vulnerable endpoint
<FilesMatch "DespachoDAO\.php$">
    Require ip 192.168.1.0/24
    # Or deny all external access temporarily
    # Require all denied
</FilesMatch>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechWegia

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33991: Wegia SQL Injection Vulnerability

  • CVE-2026-33133: Wegia Web Manager SQLi Vulnerability

  • CVE-2026-33134: Wegia Wegia SQL Injection Vulnerability

  • CVE-2026-31895: WeGIA SQL Injection 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