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

CVE-2026-32813: Admidio User Management SQLi Vulnerability

CVE-2026-32813 is a second-order SQL injection flaw in Admidio that allows authenticated attackers to execute arbitrary SQL queries and compromise the database. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-32813 Overview

CVE-2026-32813 is a second-order SQL injection vulnerability affecting Admidio, an open-source user management solution. The vulnerability exists in versions 5.0.6 and below within the MyList configuration feature, which allows authenticated users to define custom list column layouts. While user-supplied values are safely stored using prepared statements, they are subsequently read back and interpolated directly into dynamically constructed SQL queries without proper sanitization or parameterization—creating a classic second-order SQL injection attack surface.

Critical Impact

An attacker with authenticated access can inject arbitrary SQL through the MyList configuration, potentially reading, modifying, or deleting any data in the database and achieving full database compromise.

Affected Products

  • Admidio versions 5.0.6 and below
  • Admidio MyList configuration feature
  • Systems using the adm_list_columns table for custom list layouts

Discovery Timeline

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

Technical Details for CVE-2026-32813

Vulnerability Analysis

This vulnerability represents a textbook example of second-order SQL injection (also known as stored SQL injection). The attack pattern involves two distinct phases: an initial "safe write" where malicious input is stored, followed by an "unsafe read" where the stored data is retrieved and used unsafely.

The MyList configuration feature in Admidio allows authenticated users to customize list views by defining column names, sort directions, and filter conditions. These user-supplied values are stored in the adm_list_columns table using prepared statements, which correctly prevents first-order SQL injection during the write operation.

However, when these stored values are later retrieved to construct dynamic SQL queries for rendering the customized lists, the application fails to apply parameterization or sanitization. The values are directly interpolated into the SQL query string, allowing any previously stored malicious SQL payloads to execute.

Root Cause

The root cause is improper handling of stored data when constructing dynamic SQL queries. The development team correctly implemented prepared statements for the initial data storage operation but failed to recognize that stored data can still contain malicious content that requires sanitization or parameterization when used in subsequent query construction.

This represents CWE-89 (SQL Injection) where the trust boundary is incorrectly assumed to exist between the storage and retrieval operations. Data that passes through the database is not inherently safe, especially when it originates from user input.

Attack Vector

The attack is network-accessible and requires low-privilege authenticated access to the Admidio application. An attacker would:

  1. Authenticate to the Admidio application with any valid user account
  2. Navigate to the MyList configuration interface
  3. Create or modify a list column definition, injecting SQL payloads into column names, sort directions, or filter condition fields
  4. Wait for (or trigger) the application to render a list view that utilizes the compromised configuration
  5. The injected SQL executes with the database permissions of the application

The vulnerability requires some user interaction as the attacker needs to navigate to specific application functionality. The impact extends to full confidentiality, integrity, and availability compromise of the database.

Detection Methods for CVE-2026-32813

Indicators of Compromise

  • Unusual or malformed entries in the adm_list_columns table containing SQL syntax
  • Database error logs showing syntax errors from dynamic query construction
  • Unexpected database queries or operations not matching normal application behavior
  • Evidence of data exfiltration or unauthorized data modifications

Detection Strategies

  • Monitor database logs for queries with unusual patterns, especially those referencing the list columns functionality
  • Implement application-level logging to track modifications to the MyList configuration
  • Deploy Web Application Firewall (WAF) rules to detect SQL injection patterns in form submissions
  • Conduct regular audits of the adm_list_columns table for suspicious content

Monitoring Recommendations

  • Enable detailed SQL query logging on database servers hosting Admidio
  • Configure alerting for database errors originating from list rendering operations
  • Implement integrity monitoring for the adm_list_columns table
  • Review application access logs for patterns indicating configuration tampering

How to Mitigate CVE-2026-32813

Immediate Actions Required

  • Upgrade Admidio to version 5.0.7 or later immediately
  • Audit the adm_list_columns table for any suspicious or malformed entries
  • Review database access logs for signs of exploitation
  • Consider temporarily disabling the MyList configuration feature until patching is complete

Patch Information

Admidio has released version 5.0.7 which addresses this vulnerability. The fix is available in commit 3473bf5a7aa1bfc5043e73979719396276f4189f. Organizations should upgrade to the patched version immediately.

For detailed patch information, refer to the GitHub Commit Changes and the GitHub Security Advisory GHSA-3x67-4c2c-w45m.

Workarounds

  • Restrict access to the MyList configuration feature to trusted administrators only
  • Implement database-level auditing and monitoring for the adm_list_columns table
  • Deploy a Web Application Firewall with SQL injection detection rules
  • Consider implementing row-level security or database triggers to validate stored configuration values

The vulnerability mechanism involves stored values being directly interpolated into SQL queries during list rendering operations. Organizations unable to immediately patch should review the security advisory for specific implementation details and apply defense-in-depth measures until the upgrade can be completed.

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechAdmidio

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-3x67-4c2c-w45m
  • Related CVEs
  • CVE-2026-34384: Admidio CSRF Vulnerability

  • CVE-2026-34383: Admidio Auth Bypass Vulnerability

  • CVE-2026-34382: Admidio CSRF Vulnerability

  • CVE-2026-34381: Admidio Information Disclosure Flaw
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