CVE Catalog

CVE-2026-93710

Unknown
Published: Updated: Translated: NVD NIST

Summary

Dancer2 versions from 2.0.0 before 2.2.0 for Perl dispatch a route that a dying hook refused when the exception handler halts the response in compile_hooks. A handler that halts does not stop cleanup, leading to the refused route being executed. This can allow bypassing checks in a before hook.

Risk Assessment

The risk is the possibility of bypassing security checks implemented in hooks, potentially leading to unauthorized access or unintended operations.

Recommendation

Update Dancer2 to version 2.2.0 or later and review hook logic to ensure that halting the response actually stops processing.

Other vulnerabilities in Dancer2

See all
Original NVD description (English source)

Dancer2 versions from 2.0.0 before 2.2.0 for Perl dispatch a route that a dying hook refused when the exception handler halts the response in compile_hooks. A hook that dies fires core.app.hook_exception, then calls cleanup unless the failing hook is the exception handler. A handler that halts does not stop that cleanup, which discards the request, response and session the dispatcher has yet to read, so the refused route runs. The handler has to halt the response object by calling its halt method or setting is_halted: the halt keyword unwinds through with_return before cleanup runs. A check in a before hook is not enforced: the caller gets the refusal, while the route body runs and its writes land.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS