critical CVSS 9.4

CVE-2026-42596·Docker vulnerability

Gotenberg is a Docker-powered stateless API for PDF files. Prior to 8.31.0, the default deny-lists used by Gotenberg's downloadFrom feature and webhook feature are bypassable. Because the filter is regex-based and case-sensitive, an unauthenticated attacker can supply URLs such as http://[::ffff:127.0.0.1]:... and reach loopback or private HTTP services that the default deny-list is intended to block. This crosses a real security boundary because an external caller can force the server to make outbound requests to internal-only targets. This vulnerability is fixed in 8.31.0.

Severity
critical
Software
Docker
Fixed in
8.31.0
Published
2026-05-14

Affected versions

Until: 8.31.0

Fixed in: 8.31.0

How to fix this CVE

Update Docker to version 8.31.0 or later to patch the Gotenberg URL filter bypass vulnerability in the downloadFrom and webhook features. The vulnerability allows attackers to bypass the regex-based deny-list by using alternative IPv6 loopback notation (e.g., [::ffff:127.0.0.1]) to reach internal services. Apply this update immediately to prevent unauthorized outbound requests to private HTTP services.

sudo dnf update docker-ce docker-ce-cli docker-buildx-plugin docker-compose-plugin

Defensia detects this vulnerability

What an exploitation attempt looks like

Sample log line indicative of exploitation attempts:

POST|GET.*/(downloadFrom|webhook).*HTTP.*(?:::ffff:|::1|localhost|127\.0\.0\.|169\.254\.|10\.0\.0\.|172\.(1[6-9]|2[0-9]|3[01])\.|192\.168\.)

WAF mitigation (if patching is not yet possible)

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

Implement strict URL validation on all incoming requests to Gotenberg endpoints (downloadFrom, webhook). Enforce a whitelist of allowed destination domains and block requests containing IPv6 loopback notation ([::ffff:127.0.0.1], [::1]), private IP ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16), and link-local addresses (169.254.0.0/16). Apply case-sensitive matching to ensure bypass attempts with mixed-case schemes are rejected.

How to check if you are affected

  1. Check installed Docker version: docker --version
  2. Verify Gotenberg component version: docker inspect $(docker ps -q --filter 'ancestor=gotenberg') 2>/dev/null | grep -i version || echo 'Gotenberg container not running'
  3. Search Docker daemon logs for suspicious downloadFrom or webhook requests: sudo journalctl -u docker --since '24 hours ago' | grep -E '(downloadFrom|webhook|127\.0\.0\.1|::ffff)' | head -20
  4. Confirm patch installation after update: docker --version | grep -E '20\.(10|11)|8\.31' && echo 'Vulnerable version detected' || echo 'Update completed'

Indicators of compromise

  • GET/POST requests with [::ffff:127.0.0.1] in URL parameters
  • downloadFrom or webhook requests targeting internal IP ranges
  • URL patterns with mixed-case protocol schemes (e.g., hTTp://, HtTp://)
  • Outbound HTTP connections from Docker daemon to RFC1918 private addresses

FAQ

What is CVE-2026-42596?

CVE-2026-42596 is a critical vulnerability in Gotenberg's URL filtering mechanism that allows attackers to bypass security deny-lists using IPv6 loopback notation and case-sensitivity tricks, enabling unauthorized access to internal HTTP services from external callers.

Is CVE-2026-42596 being actively exploited?

According to CISA, CVE-2026-42596 is not currently listed as actively exploited, and no public exploits are available. However, the attack is trivial to execute and the vulnerability should be patched immediately.

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

All versions of Docker/Gotenberg prior to 8.31.0 are affected. The vulnerability exists in the default deny-list implementation of the downloadFrom and webhook features.

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

Run `docker --version` and verify the version is 8.31.0 or later. Additionally, check running Gotenberg containers with `docker ps --filter 'ancestor=gotenberg'` and inspect their version tags to confirm they are not using pre-8.31.0 builds.

Does Defensia detect CVE-2026-42596?

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

Related Docker CVEs

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-57572CVSS 10Crawl4AI is an open-source LLM-friendly web crawler and scraper. Prior to 0.9.0, the Docker API server accepted request-supplied browser_config.extra_args, which flowed into Chromium's launch arguments. An attacker could inject Chromium switches that replace a child-process launch command together with --no-zygote, causing Chromium to fork or exec an attacker-controlled command as the container's runtime user. The Docker API is unauthenticated by default, so a single request yields arbitrary command execution. This issue is fixed in version 0.9.0.
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-42298CVSS 10Postiz is an AI social media scheduling tool. Prior to commit da44801, a "Pwn Request" vulnerability in the Build and Publish PR Docker Image workflow (.github/workflows/pr-docker-build.yml) allows any unauthenticated user to execute arbitrary code during the Docker build process and exfiltrate a highly privileged GITHUB_TOKEN (write-all permissions). This can be achieved simply by opening a Pull Request from a fork with a maliciously modified Dockerfile.dev. This issue has been patched via commit da44801.
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-42596. Free for 1 server.

Get started free