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

CVE-2026-30927: Admidio Auth Bypass Vulnerability

CVE-2026-30927 is an authentication bypass flaw in Admidio that allows attackers to register other users for events by manipulating parameters. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30927 Overview

CVE-2026-30927 is an Authorization Bypass vulnerability discovered in Admidio, an open-source user management solution. The vulnerability exists in the event participation logic within modules/events/events_function.php, where improper access control allows any authenticated user who can participate in an event to register or cancel participation for OTHER users by manipulating the user_uuid GET parameter.

The flawed condition uses a logical OR (||) operator, meaning if possibleToParticipate() returns true (indicating the event is open for participation), ANY user—not just designated leaders—can specify a different user_uuid and modify participation status for that user. The code then operates on $user->getValue('usr_id') (the target user from user_uuid) rather than validating the current user's authority to perform such actions.

Critical Impact

Authenticated users can manipulate event registrations for other users, potentially disrupting organizational events, causing data integrity issues, and enabling social engineering attacks within organizations using Admidio.

Affected Products

  • Admidio versions prior to 5.0.6

Discovery Timeline

  • 2026-03-10 - CVE-2026-30927 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30927

Vulnerability Analysis

This vulnerability falls under CWE-639 (Authorization Bypass Through User-Controlled Key), a category of Broken Access Control flaws. The core issue stems from the application accepting a user-controlled parameter (user_uuid) without properly validating whether the requesting user has authorization to perform actions on behalf of the target user.

In Admidio's event participation workflow, the system should enforce that only event leaders can register or manage participation for other users. However, the flawed conditional logic allows any participant to bypass this restriction simply by providing a different user's UUID in the request.

The impact includes unauthorized modification of event attendance records, potential denial of service by removing legitimate participants from events, and manipulation of organizational attendance tracking systems.

Root Cause

The root cause is improper authorization logic in modules/events/events_function.php. The conditional check uses an OR operator that evaluates possibleToParticipate() independently from leader status verification. When the event allows participation, this effectively grants all participants the same capability as leaders—namely, the ability to manage registrations for arbitrary users identified by the user_uuid parameter.

Attack Vector

An attacker with a valid authenticated session can exploit this vulnerability through the network by crafting a malicious HTTP request. The attack requires:

  1. Valid authentication to the Admidio system
  2. Access to an event open for participation
  3. Knowledge of another user's UUID (which may be discoverable through enumeration or other application features)

The attacker simply modifies the user_uuid GET parameter in the event participation request to target a different user, allowing them to register or cancel that user's participation without authorization.

php
             $formValues['additional_guests'] = '';
         }
 
+        // if user is no leader of the event then only allow to handle their own participation
+        if (!$participants->isLeader($gCurrentUserId)) {
+            $getUserUuid = $gCurrentUser->getValue('usr_uuid');
+        }
+
         if (isset($eventsParticipationEditForm)) {
             $formValues = $eventsParticipationEditForm->validate($_POST);
         }

Source: GitHub Commit e47f70cc3cbcdb39635fdbaaef02d19f604b8c3e

The patch adds an explicit check: if the current user is not a leader of the event, the system forces $getUserUuid to the current user's own UUID, preventing manipulation of other users' participation.

Detection Methods for CVE-2026-30927

Indicators of Compromise

  • Web server logs showing requests to modules/events/events_function.php with user_uuid parameters that differ from the authenticated user's UUID
  • Unexpected changes to event participation records without corresponding user activity
  • Audit logs indicating event registration changes initiated by users other than the affected participant or event leaders

Detection Strategies

  • Monitor HTTP requests for user_uuid parameter manipulation in event-related endpoints
  • Implement log analysis rules to detect when the requesting user's session UUID differs from the user_uuid parameter value
  • Review event participation audit trails for anomalies where non-leaders modified other users' participation status

Monitoring Recommendations

  • Enable detailed access logging for the modules/events/ directory
  • Configure web application firewall (WAF) rules to flag requests where user_uuid parameters appear to be user-controlled and differ from session identity
  • Implement integrity monitoring for event participation database tables to detect unauthorized modifications

How to Mitigate CVE-2026-30927

Immediate Actions Required

  • Upgrade Admidio to version 5.0.6 or later immediately
  • Review event participation logs for signs of past exploitation
  • Consider temporarily restricting event participation features if immediate patching is not possible
  • Audit user accounts for unauthorized participation changes

Patch Information

The vulnerability is fixed in Admidio version 5.0.6. The patch, available via commit e47f70cc3cbcdb39635fdbaaef02d19f604b8c3e, ensures that non-leader users can only manage their own event participation by forcing the user_uuid to the current user's UUID when leader privileges are not present.

For detailed patch information, see the GitHub Security Advisory GHSA-7pfv-hr63-h7cw and the related issue discussion.

Workarounds

  • Restrict access to event participation features to trusted users only until patching can be completed
  • Implement network-level access controls to limit access to Admidio administrative functions
  • Deploy a web application firewall (WAF) rule to strip or validate user_uuid parameters against authenticated session identities
  • Enable enhanced logging to detect and respond to exploitation attempts
bash
# Example: Verify Admidio version after patching
grep -r "version" /path/to/admidio/adm_program/installation.xml | head -5

# Review web server logs for potential exploitation attempts
grep "events_function.php.*user_uuid" /var/log/apache2/access.log | grep -v "$(cat /path/to/known_admin_uuids.txt)"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechAdmidio

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Commit Update

  • GitHub Issue Discussion

  • GitHub Security Advisory GHSA-7pfv-hr63-h7cw
  • Related CVEs
  • CVE-2026-34383: Admidio Auth Bypass Vulnerability

  • CVE-2026-32817: Admidio Auth Bypass Vulnerability

  • CVE-2026-34384: Admidio CSRF Vulnerability

  • CVE-2026-34382: Admidio CSRF 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