Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-93710 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

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.

Metrics

CVSS 3.x Severity and Vector Strings:

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-460Improper Cleanup on Thrown ExceptionCPANSec

Affected Products

ProductVersions
Dancer2
>= 2.0.0, < 2.2.0 (semver)

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • Upgrade: 2.2.0moderate effort
  • Workaround:low effort

    Do not halt in the on_hook_exception handler. Without the halt, the exception propagates and the request fails with a 500 error.

  • Workaround:low effort

    Refuse requests in before hooks with halt or forward rather than by dying, so the exception path is not entered at all.

  • Workaround:low effort

    Make the route body itself re-check the condition the hook was enforcing.

Change History

3 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-93710
NVD Published Date:
Sep 22, 2026
NVD Last Modified:
Sep 22, 2026
Source:
CPANSec
CVE-2026-93710 Details - Not Deferred