Vulnerability Description
FastGPT is an AI Agent building platform. Prior to 4.15.0-beta1, the JavaScript sandbox worker at projects/code-sandbox/src/pool/worker.ts:356 blocks dynamic import() with the regex /\bimport\s*\(/.test(code). JavaScript syntax accepts a block comment between import and (; the regex matches only ASCII whitespace, and the bytes /, *, *, / are not in the \s character class. The payload import/**/("child_process") parses as a syntactically valid dynamic import that the regex does not detect. Because import() is not wrapped by the safeRequire Proxy (which only proxies require), the attacker loads child_process and calls execSync - arbitrary command execution as uid=100(sandbox) inside the sandbox container. This vulnerability is fixed in 4.15.0-beta1.
CVSS Score
MEDIUM
Related Weaknesses (CWE)
References
- https://github.com/labring/FastGPT/security/advisories/GHSA-f5mq-qxm4-5mvc
- https://github.com/labring/FastGPT/security/advisories/GHSA-f5mq-qxm4-5mvc
FAQ
What is CVE-2026-44287?
CVE-2026-44287 is a vulnerability with a CVSS score of 6.3 (MEDIUM). FastGPT is an AI Agent building platform. Prior to 4.15.0-beta1, the JavaScript sandbox worker at projects/code-sandbox/src/pool/worker.ts:356 blocks dynamic import() with the regex /\bimport\s*\(/.te...
How severe is CVE-2026-44287?
CVE-2026-44287 has been rated MEDIUM with a CVSS base score of 6.3/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2026-44287?
Check the references section above for vendor advisories and patch information. Review vendor security bulletins for remediation guidance.