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

CVE-2026-34384: Admidio CSRF Vulnerability

CVE-2026-34384 is a CSRF flaw in Admidio that allows attackers to bypass registration approval workflows by tricking administrators into visiting malicious URLs. This article covers technical details, affected versions, and mitigations.

Published: April 2, 2026

CVE-2026-34384 Overview

Admidio, an open-source user management solution, contains a Cross-Site Request Forgery (CSRF) vulnerability in its user registration approval workflow. Prior to version 5.0.8, the create_user, assign_member, and assign_user action modes in modules/registration.php process pending user registration approvals via GET requests without validating CSRF tokens. This architectural flaw allows attackers to bypass the manual registration approval workflow entirely by tricking administrators into visiting maliciously crafted URLs.

Critical Impact

An attacker who has submitted a pending registration can extract their own user UUID from the registration confirmation email URL, then craft a malicious link that automatically approves their registration when clicked by any user with the rol_approve_users privilege, completely bypassing organizational access controls.

Affected Products

  • Admidio versions prior to 5.0.8
  • Installations using the registration approval workflow
  • Systems where users with rol_approve_users rights process pending registrations

Discovery Timeline

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

Technical Details for CVE-2026-34384

Vulnerability Analysis

The vulnerability exists in the registration approval logic within modules/registration.php. While the delete_user mode in the same file correctly validates CSRF tokens before processing requests, the create_user, assign_member, and assign_user action modes fail to implement the same security control. These approval actions read their parameters from the $_GET superglobal and perform irreversible state changes—specifically, elevating pending registrations to approved user accounts—without any CSRF protection.

The attack surface is particularly concerning because the user UUID required for exploitation is not secret; it is exposed to the attacker in the registration confirmation email URL they receive after submitting their registration request. This creates a self-serve attack scenario where the attacker possesses all information needed to craft a malicious approval URL.

Root Cause

The root cause is inconsistent CSRF token validation across different action modes within the same PHP module. The development team implemented proper CSRF protection for the delete_user operation but overlooked the equally sensitive approval operations (create_user, assign_member, assign_user). These approval endpoints accept GET requests, which are inherently susceptible to CSRF attacks since they can be triggered by simply loading a URL in an image tag, link click, or redirect.

Attack Vector

The attack follows a straightforward exploitation path leveraging network-based delivery. An attacker submits a registration request to the target Admidio instance, then extracts their user UUID from the confirmation email. They construct a malicious URL targeting the vulnerable approval endpoints and deliver this URL to any user with the rol_approve_users privilege through phishing emails, social engineering, or embedding the URL in external web pages. When the privileged user visits the crafted URL while authenticated to Admidio, the approval action executes without their knowledge or consent.

The following patch shows how CSRF token validation was added to the assign_member and assign_user action modes:

php
         $page->createContentAssignUser($registrationUser, true);
         $page->show();
     } elseif (in_array($getMode, array('assign_member', 'assign_user'))) {
+        // check the CSRF token of the form against the session token
+        SecurityUtils::validateCsrfToken($_POST['adm_csrf_token']);
+
         $registrationService = new RegistrationService($gDb, $getUserUUID);
         $message = $registrationService->assignRegistration($getUserUUIDAssigned, $getMode === 'assign_member');

Source: GitHub Commit Update

Similarly, the profile_new.php module was patched to validate CSRF tokens for registration acceptance:

php
     foreach ($getUserUuids as $userUuid) {
         // read user data
         if (!$gValidLogin || $getAcceptRegistration) {
+            if ($getAcceptRegistration) {
+                // check the CSRF token of the form against the session token
+                SecurityUtils::validateCsrfToken($_POST['adm_csrf_token']);
+            }
+
             // create a user registration object and set requested organization
             $user = new UserRegistration($gDb, $gProfileFields);
             $user->readDataByUuid($userUuid);

Source: GitHub Commit Update

Detection Methods for CVE-2026-34384

Indicators of Compromise

  • Unexpected user account approvals without corresponding administrative action in audit logs
  • Web server access logs showing GET requests to registration.php with mode=create_user, mode=assign_member, or mode=assign_user parameters from external referrers
  • New user accounts appearing with registration approval timestamps that don't correlate with administrator activity
  • Referrer headers in access logs pointing to external domains for registration approval requests

Detection Strategies

  • Monitor HTTP access logs for GET requests to /modules/registration.php containing approval action modes (create_user, assign_member, assign_user) with suspicious referrer headers
  • Implement alerting for user registration approvals occurring outside of normal administrative hours or from unusual IP addresses
  • Cross-reference user approval events with administrator session activity to identify approvals that occurred without legitimate administrative context
  • Deploy web application firewall (WAF) rules to flag registration approval requests originating from cross-origin contexts

Monitoring Recommendations

  • Enable detailed logging for all user registration and approval events within Admidio's administrative interface
  • Configure SIEM correlation rules to detect registration approvals that lack corresponding administrator-initiated session activity
  • Implement periodic audits of newly approved user accounts against expected registration patterns
  • Monitor for spikes in registration approval activity that may indicate automated exploitation attempts

How to Mitigate CVE-2026-34384

Immediate Actions Required

  • Upgrade Admidio to version 5.0.8 or later immediately, as this version includes the security patch
  • Review all user accounts approved in the period prior to patching for unauthorized registrations
  • Temporarily disable public registration functionality if immediate patching is not possible
  • Alert users with rol_approve_users privileges about the CSRF risk and instruct them to avoid clicking untrusted links while authenticated

Patch Information

The vulnerability has been patched in Admidio version 5.0.8. The fix implements proper CSRF token validation by requiring the adm_csrf_token parameter to be submitted via POST and validated against the session token using the SecurityUtils::validateCsrfToken() function. This ensures that approval actions can only be triggered by legitimate form submissions from within the Admidio interface.

Patch commit 707171c188b3e8f36007fc3f2bccbfac896ed019 addresses this vulnerability. See the GitHub Security Advisory for complete details.

Workarounds

  • Restrict access to the registration module by implementing IP-based access controls at the web server or firewall level
  • Require administrators to use separate browser profiles or incognito sessions when reviewing pending registrations
  • Implement additional authentication requirements (e.g., re-authentication) before processing registration approvals at the reverse proxy level
  • Configure Content Security Policy headers to restrict the contexts from which Admidio pages can be loaded
bash
# Example Apache configuration to restrict registration module access
<Location "/modules/registration.php">
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
</Location>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechAdmidio

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.02%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34382: 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