high CVSS 7.5

CVE-2026-34381·Docker vulnerability

Admidio is an open-source user management solution. From version 5.0.0 to before version 5.0.8, Admidio relies on adm_my_files/.htaccess to deny direct HTTP access to uploaded documents. The Docker image ships with AllowOverride None in the Apache configuration, which causes Apache to silently ignore all .htaccess files. As a result, any file uploaded to the documents module regardless of the role-based permissions configured in the UI, is directly accessible over HTTP without authentication by anyone who knows the file path. The file path is disclosed in the upload response JSON. This issue has been patched in version 5.0.8.

Severity
high
Software
Docker
Fixed in
5.0.8
Published
2026-03-31

Affected versions

From: 5.0.0

Until: 5.0.8

Fixed in: 5.0.8

How to fix this CVE

Upgrade Docker to the latest version that includes the patched Admidio image (5.0.8 or later). If running Admidio in Docker, ensure your Apache configuration explicitly sets AllowOverride All in the document root directory to allow .htaccess file restrictions to take effect. Verify that uploaded files are no longer directly accessible via HTTP without authentication after applying the fix.

sudo dnf update docker-ce

Defensia detects this vulnerability

What an exploitation attempt looks like

Sample log line indicative of exploitation attempts:

GET /adm_my_files/ HTTP/1.1" 200 (indicating successful retrieval of files that should be restricted by .htaccess); alternatively, log entries showing repeated requests to /adm_my_files/<filename> from non-authenticated sessions returning HTTP 200 responses

WAF mitigation (if patching is not yet possible)

Add this rule to your WAF to block exploitation attempts while you schedule the patch.

Implement a WAF rule to block direct HTTP access to the /adm_my_files/ directory: deny requests matching `^/adm_my_files/.*` unless the user session contains a valid Admidio authentication token in cookies or headers.

How to check if you are affected

  1. Step 1: Check Docker version with `docker --version` and verify if Admidio is running in a container using `docker ps | grep admidio`
  2. Step 2: Inspect the running container's Apache configuration by executing `docker exec <container_id> grep -n 'AllowOverride' /etc/apache2/sites-enabled/*.conf` to confirm if AllowOverride is set to None
  3. Step 3: Test if the adm_my_files directory is accessible without authentication by attempting to fetch a known file path via curl: `curl -I http://<docker_host>/adm_my_files/<filename>` and verify if it returns 403 Forbidden or 200 OK
  4. Step 4: After upgrade, re-run the curl test from Step 3 and verify that .htaccess restrictions now block unauthenticated access, returning a 403 Forbidden response

FAQ

What is CVE-2026-34381?

This vulnerability affects Docker deployments of Admidio versions 5.0.0 through 5.0.7, where an Apache misconfiguration (AllowOverride None) causes .htaccess restrictions to be ignored, allowing unauthenticated HTTP access to uploaded documents via their disclosed file paths.

Is CVE-2026-34381 being actively exploited?

No, this vulnerability is not listed on the CISA Known Exploited Vulnerabilities (KEV) catalog and no public exploits are currently available.

What versions of Docker are affected by CVE-2026-34381?

The vulnerability exists in Admidio versions 5.0.0 through 5.0.7 when running in Docker containers with default Apache configuration. The fix is available in Admidio 5.0.8 and later.

How do I check if my server is vulnerable to CVE-2026-34381?

Run `docker exec <container_id> grep 'AllowOverride' /etc/apache2/sites-enabled/*.conf` and check if it shows 'AllowOverride None'. If true, and Admidio version is below 5.0.8, your system is vulnerable.

Does Defensia detect CVE-2026-34381?

Yes — Defensia's CVE advisory scanner compares installed package versions against the NVD database. If Docker is installed on a monitored server, CVE-2026-34381 will appear in your dashboard with remediation steps.

Related Docker CVEs

CVE-2026-33587CVSS 10Lack of user input sanitisation in Open Notebook v1.8.3 allows the application user to execute Python code (and subsequently OS commands) on the docker container via Server-Side Template Injection (SSTI) for user-created transformations.
CVE-2026-53576CVSS 10Kestra is an open-source, event-driven orchestration platform. Prior to 1.0.45 and 1.3.21, the authentication filter for the REST API (@Filter("/api/v1/**")) treats any request whose path ends in /configs as the public instance-config endpoint and forwards it without a credential check. kestra addresses its resources by URL path segments that the caller chooses (/api/v1/{tenant}/flows/{namespace}, /api/v1/{tenant}/executions/{namespace}/{id}, /api/v1/{tenant}/namespaces/{namespace}/kv/{key}). An anonymous caller picks the literal configs as the final segment, and the request bypasses Basic-Auth entirely. Because the bypass reaches the flow-create and execution-trigger routes, an unauthenticated caller creates a flow containing a Shell or Process task and runs it. The task executes as root inside the kestra container. The official docker-compose.yml mounts /var/run/docker.sock, so root in the container reaches the host Docker daemon. This vulnerability is fixed in 1.0.45 and 1.3.21.
CVE-2026-40281CVSS 10Gotenberg is a Docker-powered stateless API for PDF files. In versions 8.30.1 and earlier, the metadata write endpoint validates metadata keys for control characters but leaves metadata values unsanitized. A newline character in a metadata value splits the ExifTool stdin line into two separate arguments, allowing injection of arbitrary ExifTool pseudo-tags such as -FileName, -Directory, -SymLink, and -HardLink. This is a bypass of the incomplete key-sanitization fix introduced in v8.30.1. An unauthenticated attacker can rename or move any PDF being processed to an arbitrary path in the container filesystem, overwrite arbitrary files, or create symlinks and hard links at arbitrary paths.
CVE-2026-44329CVSS 10free5GC is an open-source implementation of the 5G core network. Prior to 4.2.2, free5GC's SMF mounts the UPI management route group without OAuth2/bearer-token authorization middleware. A network attacker who can reach SMF on the SBI can hit UPI endpoints with no Authorization header at all, and the requests reach the SMF business handlers. In the running Docker lab this was directly demonstrated for read (GET /upi/v1/upNodesLinks), write (POST /upi/v1/upNodesLinks with attacker-controlled UP-node and link payload), and delete (DELETE /upi/v1/upNodesLinks/{nodeID}) operations. This vulnerability is fixed in 4.2.2.
CVE-2026-26216CVSS 10Crawl4AI versions prior to 0.8.0 contain a remote code execution vulnerability in the Docker API deployment. The /crawl endpoint accepts a hooks parameter containing Python code that is executed using exec(). The __import__ builtin was included in the allowed builtins, allowing unauthenticated remote attackers to import arbitrary modules and execute system commands. Successful exploitation allows full server compromise, including arbitrary command execution, file read and write access, sensitive data exfiltration, and lateral movement within internal networks.

References

Track CVEs across your fleet automatically

Defensia scans your Linux servers and tells you exactly which ones are running vulnerable versions — including CVE-2026-34381. Free for 1 server.

Get started free