OSV 1.4.0 · github-reviewed · 修改于 2026-06-24 05:54
发布时间
2026-06-24 05:54
GitHub 审查时间
2026-06-24 05:54
NVD 发布时间
2026-06-16 06:16
源文件
advisories/github-reviewed/2026/06/GHSA-53h4-8rc4-f539/GHSA-53h4-8rc4-f539.json
If an application uses HttpException::setTitle() and/or setDescription() to include untrusted/request-derived data in the error title or description (e.g. "No products found matching '{$query}'."), an attacker could inject arbitrary HTML/JavaScript that executes in the victim's browser when they encounter an HTML error page generated by Slim.
The vulnerability is present even with displayErrorDetails = false as the unescaped title and description are rendered on this error path.
Built-in exceptions (HttpNotFoundException, HttpBadRequestException, etc.) ship plain-text defaults, so a vanilla Slim app with no user code is not exploitable. Only applications that feed untrusted data into setTitle() and/or setDescription() are affected.
The issue is fixed in 4.15.2.
Without upgrading, applications can:
HttpException::setTitle() and setDescription(). Use static, plain-text error copy instead.ErrorRendererInterface implementation, or a subclass of HtmlErrorRenderer that escapes the title and description) for the HTML media type.Slim is grateful to and thanks GitHub user 0xEr3n for reporting this issue.