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

CVE-2026-34382: Admidio CSRF Vulnerability

CVE-2026-34382 is a CSRF flaw in Admidio that allows attackers to delete list configurations by luring authenticated users to malicious pages. This post covers technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-34382 Overview

CVE-2026-34382 is a Cross-Site Request Forgery (CSRF) vulnerability affecting Admidio, an open-source user management solution. The vulnerability exists in the delete mode handler within mylist_function.php, which permanently deletes list configurations without validating a CSRF token. An attacker who can lure an authenticated user to a malicious page can silently destroy that user's list configurations — including organization-wide shared lists when the victim holds administrator rights.

Critical Impact

Authenticated users, particularly administrators, can have their list configurations — including organization-wide shared lists — permanently deleted through a CSRF attack without any user interaction beyond visiting a malicious page.

Affected Products

  • Admidio versions 5.0.0 through 5.0.7
  • Users with list configuration privileges
  • Administrators with access to organization-wide shared lists

Discovery Timeline

  • 2026-03-31 - CVE-2026-34382 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34382

Vulnerability Analysis

This vulnerability stems from the absence of CSRF token validation in the delete mode handler of the mylist_function.php file. The affected endpoint processes deletion requests for list configurations without verifying that the request originated from a legitimate session within the Admidio application. This allows an attacker to craft a malicious page that, when visited by an authenticated Admidio user, automatically submits a forged request to delete list configurations.

The impact is particularly severe when targeting administrators, as they have access to organization-wide shared lists. Successful exploitation results in permanent data loss with no confirmation dialog or additional authentication check protecting the destructive action.

Root Cause

The root cause is improper validation of user requests (CWE-352). The delete operation in mylist_function.php failed to implement CSRF token verification before processing deletion requests. This missing security control allowed cross-origin requests to execute privileged actions on behalf of authenticated users.

Attack Vector

The vulnerability is exploitable over the network and requires user interaction. An attacker must craft a malicious webpage containing a forged request targeting the vulnerable endpoint. When an authenticated Admidio user visits this malicious page while logged into their Admidio instance, the browser automatically includes the user's session cookies with the forged request, effectively allowing the attacker to execute the delete action with the victim's privileges.

The following patch was applied in version 5.0.8 to address this vulnerability by implementing CSRF token validation:

php
     throw new Exception('SYS_MODULE_DISABLED');
 }

+    // check the CSRF token of the form against the session token
+    $myListForm = $gCurrentSession->getFormObject($_POST['adm_csrf_token']);
+    if ($_POST['adm_csrf_token'] !== $myListForm->getCsrfToken()) {
+        throw new Exception('Invalid or missing CSRF token!');
+    }

 // At least one field should be assigned (has a non-empty value)
 if (
     empty($_POST['column']) ||

Source: GitHub Commit Details

Detection Methods for CVE-2026-34382

Indicators of Compromise

  • Unexpected deletion of list configurations without user-initiated action
  • HTTP POST requests to mylist_function.php originating from external referrers
  • Audit logs showing list deletions occurring shortly after users visited external websites
  • Multiple list configurations deleted in rapid succession across different user accounts

Detection Strategies

  • Monitor web server access logs for requests to mylist_function.php with external or missing Referer headers
  • Implement Content Security Policy (CSP) headers to restrict form submissions to same-origin requests
  • Review Admidio audit logs for unexpected deletion events, particularly affecting shared organization lists
  • Deploy web application firewall (WAF) rules to detect cross-origin POST requests to sensitive endpoints

Monitoring Recommendations

  • Enable detailed logging for all list configuration changes within Admidio
  • Configure alerts for bulk deletion activities or deletions by administrator accounts
  • Monitor for anomalous user session activity patterns that may indicate CSRF exploitation
  • Regularly audit list configurations to detect unauthorized modifications or deletions

How to Mitigate CVE-2026-34382

Immediate Actions Required

  • Upgrade Admidio to version 5.0.8 or later immediately
  • Review audit logs for any suspicious list configuration deletions since deploying affected versions
  • Restore any deleted list configurations from backups if exploitation is suspected
  • Educate administrators about the risks of visiting untrusted websites while logged into Admidio

Patch Information

The vulnerability has been patched in Admidio version 5.0.8. The fix implements CSRF token validation by checking the adm_csrf_token POST parameter against the session's stored token before processing any delete operations. Organizations should upgrade to version 5.0.8 or later by following the official upgrade documentation.

For detailed patch information, refer to the GitHub Security Advisory and the commit implementing the fix.

Workarounds

  • Restrict access to Admidio through IP whitelisting until the patch can be applied
  • Implement reverse proxy rules to reject requests to mylist_function.php with external referrers
  • Advise users to use dedicated browser profiles for Admidio administration tasks
  • Temporarily disable list configuration deletion functionality at the application level if feasible
bash
# Example: Apache mod_rewrite rule to block external referrers to sensitive endpoints
# Add to .htaccess or Apache configuration
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?yourdomain\.com [NC]
RewriteRule ^modules/groups-roles/mylist_function\.php$ - [F,L]

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechAdmidio

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-352
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34384: Admidio CSRF Vulnerability

  • CVE-2026-34383: Admidio Auth Bypass Vulnerability

  • CVE-2026-34381: Admidio Information Disclosure Flaw

  • CVE-2026-32757: Admidio User Management 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