Summary
CVE-2026-56261 is a critical Server-Side Request Forgery (SSRF) vulnerability in the Crawl4AI Docker API server, affecting all versions prior to 0.8.7. The /crawl/job and /llm/job endpoints accept webhook callback URLs as parameters without validating the destination address, enabling unauthenticated remote attackers to force the server to make HTTP requests to internal networks, private IP ranges, Docker-internal hosts, or cloud metadata endpoints. With a CVSS 4.0 score of 9.2 (Critical), this vulnerability poses a severe risk of cloud credential theft and internal network exposure.
Technical details
- Root cause: The
/crawl/joband/llm/jobendpoints in Crawl4AI’s Docker API server accept webhook callback URLs as job parameters without performing any destination validation. There is no blocklist, allowlist, or DNS rebinding protection applied to webhook targets. - Trigger conditions: An unauthenticated attacker sends a crafted POST request to
/crawl/jobor/llm/jobwith awebhookparameter set to an internal IP address, a private RFC 1918 range, a Docker bridge network address, or a cloud instance metadata endpoint such ashttp://169.254.169.254/latest/meta-data/(used by AWS IMDSv1, GCP, and Azure). - Attack vector: Fully network-accessible with no authentication required. Crawl4AI’s Docker API server runs without authentication by default unless the
CRAWL4AI_API_TOKENenvironment variable is explicitly configured — the majority of self-hosted instances are unauthenticated. - Impact: The server initiates outbound HTTP requests to the attacker-supplied internal destination upon job completion, potentially retrieving cloud provider instance metadata including IAM role credentials (AWS, GCP, Azure), exposing internal microservices, and enabling lateral movement within the container’s host network.
Affected software
- Crawl4AI Docker API server (
unclecode/crawl4ai): all versions prior to 0.8.7
Severity
CVSS v3.1 base score: 8.6 (HIGH)
Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N
Mitigation and recommended actions
- Immediate: Upgrade Crawl4AI to version 0.8.7 or later, which introduces destination validation for webhook callback URLs in the Docker API server.
- If immediate patching is not feasible:
- Restrict network access to the Crawl4AI Docker API (default port 11235) with firewall rules to prevent public internet exposure.
- Set the
CRAWL4AI_API_TOKENenvironment variable to enforce token-based authentication on all API endpoints. - Apply egress filtering at the container or host network level to block outbound requests from the Crawl4AI container to link-local (
169.254.0.0/16) and RFC 1918 private address ranges.
IONIX Status
The IONIX research team is tracking ongoing exploitation attempts and recommends immediate patching. Potentially affected assets are outlined in this post.

