CVE-2026-26216
Published: 12 February 2026
Summary
CVE-2026-26216 is a critical-severity Code Injection (CWE-94) vulnerability in Kidocode Crawl4Ai. Its CVSS base score is 10.0 (Critical).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked in the top 45.0% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.
The strongest mitigations our analysis identified are NIST 800-53 SC-14 (Public Access Protections) and SI-10 (Information Input Validation).
Threat & Defense at a Glance
Threat & Defense Details
Mitigating Controls (NIST 800-53 r5)AI
Directly remediates the RCE flaw in Crawl4AI by requiring timely identification, reporting, and patching to version 0.8.0 or later.
Validates user-supplied hooks parameter to the /crawl endpoint, preventing injection and execution of arbitrary Python code via exec().
Enforces authorizations and protections at the publicly accessible Docker API /crawl endpoint, blocking unauthenticated remote code execution.
MITRE ATT&CK Enterprise TechniquesAI
Why these techniques?
CVE enables unauthenticated RCE via public-facing /crawl API endpoint (T1190) by injecting and executing arbitrary Python code with exec() (T1059.006), leading to system command execution.
NVD Description
Crawl4AI 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,…
more
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.
Deeper analysisAI
CVE-2026-26216 is a remote code execution vulnerability in Crawl4AI versions prior to 0.8.0, specifically within its Docker API deployment. The /crawl endpoint accepts a hooks parameter containing Python code that is executed using exec(), with the __import__ builtin included among the allowed builtins. This allows attackers to import arbitrary modules and execute system commands, as classified under CWE-94 (Code Injection).
Unauthenticated remote attackers can exploit the vulnerability over the network with low attack complexity and no user interaction or privileges required, earning a maximum CVSS v3.1 score of 10.0 (AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H). Successful exploitation results in full server compromise, including arbitrary command execution, file read and write access, sensitive data exfiltration, and lateral movement within internal networks.
The GitHub security advisory (GHSA-5882-5rx9-xgxp) and release notes for Crawl4AI v0.8.0 address the issue, with mitigation achieved by upgrading to version 0.8.0 or later. Further technical details on the vulnerability and remediation are provided in the VulnCheck advisory.
Details
- CWE(s)