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

CVE-2026-32817: Admidio Auth Bypass Vulnerability

CVE-2026-32817 is an authentication bypass flaw in Admidio that allows unauthenticated attackers to delete files and folders without permission. This post explains its impact, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-32817 Overview

CVE-2026-32817 is a critical authorization bypass vulnerability affecting Admidio, an open-source user management solution. The vulnerability exists in the documents and files module, which fails to properly verify whether the current user has permission to delete folders or files. The folder_delete and file_delete action handlers in modules/documents-files.php only perform a VIEW authorization check via getFolderForDownload and getFileForDownload functions before calling delete(), and critically, they never validate a CSRF token. Since target UUIDs are read from $_GET parameters, deletion can be triggered by a plain HTTP GET request, enabling both unauthenticated and authenticated attackers to permanently destroy document libraries.

Critical Impact

Unauthenticated attackers can permanently destroy entire document libraries when the module is in public mode, while authenticated users with view-only access can delete content they should only be able to read.

Affected Products

  • Admidio versions 5.0.0 through 5.0.6
  • Admidio installations with documents and files module enabled
  • Public and authenticated Admidio deployments

Discovery Timeline

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

Technical Details for CVE-2026-32817

Vulnerability Analysis

This vulnerability combines two distinct security flaws: missing authorization checks (CWE-862) and missing CSRF token validation. The documents and files module in Admidio performs only a VIEW-level permission check when handling deletion requests, rather than verifying DELETE permissions. The authorization functions getFolderForDownload() and getFileForDownload() are designed to validate read access, not write or delete operations, yet they are used as the sole authorization gate before executing destructive delete() operations.

The absence of CSRF protection compounds this issue significantly. Since deletion is triggered via GET request parameters containing folder or file UUIDs, an attacker can craft malicious links that, when clicked by any authenticated user, will execute the deletion with that user's session context. In public mode configurations where documents_files_module_enabled = 1 and folders are marked with fol_public = true, no authentication is required at all.

Root Cause

The root cause is improper access control implementation in the modules/documents-files.php file. The developers implemented view-level authorization checks but failed to implement corresponding delete-level authorization checks. The vulnerable code path calls getFolderForDownload() or getFileForDownload() to validate access, but these functions only verify whether the user can view the resource—not whether they have permission to modify or delete it. Additionally, the use of GET requests for state-changing operations violates secure development practices and enables CSRF attacks without token validation.

Attack Vector

The vulnerability is exploitable remotely over the network without requiring any user interaction or special privileges when targeting public folders. An attacker can construct a malicious URL containing the target folder or file UUID and send it directly to the vulnerable endpoint. When the Admidio installation has documents_files_module_enabled set to 1 and target folders are marked public, the attack succeeds without authentication.

For non-public configurations, the attack requires either tricking an authenticated user into clicking a malicious link (CSRF scenario) or using any valid authenticated session with minimal view permissions. The attacker identifies target UUIDs through enumeration or information disclosure, then issues GET requests to the folder_delete or file_delete handlers. The lack of proper authorization allows the deletion to proceed, permanently destroying the targeted content.

Detection Methods for CVE-2026-32817

Indicators of Compromise

  • Unexpected HTTP GET requests to modules/documents-files.php with folder_delete or file_delete actions
  • Bulk or sequential deletion requests with varying UUID parameters
  • Deletion requests originating from external referrers or containing CSRF-like patterns
  • Missing or corrupted files in the Admidio document library without corresponding administrative actions
  • Audit logs showing deletions performed by users who should only have view permissions

Detection Strategies

  • Monitor web server access logs for GET requests containing folder_delete or file_delete parameters
  • Implement alerting for deletion operations performed by users with view-only permissions
  • Deploy web application firewall (WAF) rules to detect and block suspicious deletion request patterns
  • Review Admidio application logs for unauthorized deletion attempts or permission mismatches

Monitoring Recommendations

  • Enable comprehensive logging for all file and folder operations in Admidio
  • Implement file integrity monitoring on the Admidio document storage directories
  • Configure alerts for unusual patterns of document deletion activity
  • Monitor for external referrer headers on deletion endpoints indicating potential CSRF attacks

How to Mitigate CVE-2026-32817

Immediate Actions Required

  • Upgrade Admidio to version 5.0.7 or later immediately
  • Review document library contents and restore from backups if unauthorized deletions are suspected
  • Temporarily disable the documents and files module if immediate upgrade is not possible
  • Audit access logs for evidence of exploitation attempts
  • Restrict network access to the Admidio installation while remediation is in progress

Patch Information

The Admidio development team has addressed this vulnerability in version 5.0.7. The fix implements proper DELETE-level authorization checks and adds CSRF token validation for all state-changing operations. Organizations should upgrade immediately by downloading the latest release from the official Admidio repository. For detailed technical information about the vulnerability and the fix, refer to the GitHub Security Advisory GHSA-rmpj-3x5m-9m5f.

Workarounds

  • Disable the documents and files module by setting documents_files_module_enabled = 0 in configuration until patching is possible
  • Remove public access to all folders by ensuring fol_public = false for all document folders
  • Implement web application firewall rules to block GET requests containing folder_delete or file_delete parameters
  • Restrict access to the Admidio installation at the network level using IP whitelisting or VPN requirements
  • Enable additional authentication layers such as basic authentication at the web server level as a temporary measure
bash
# Disable documents and files module in Admidio configuration
# Edit adm_my_files/config.php and ensure:
$gSettingsManager->set('documents_files_module_enabled', 0);

# Or restrict access via web server (Apache example)
<LocationMatch "/modules/documents-files.php">
    Require ip 10.0.0.0/8 192.168.0.0/16
</LocationMatch>

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

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34383: Admidio Auth Bypass Vulnerability

  • CVE-2026-30927: 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