CVE-2026-85491 Details
Description
Catalyst::Seal versions before 0.03 for Perl allow one request to disable a path or route a later one past an authorization check via a dispatch memo keyed on the request path alone. Catalyst::Seal replaces the dispatcher's prepare_action with a version that memoises how a path resolved: which dispatch type matched, at which level, and what was left over as arguments. The key is the request path and nothing else. Action roles that match on the method, content type, scheme or query make that resolution depend on state the key does not carry, so the memo answers for a request it was not built from. A path that resolves to no action is memoised as well, and replaying that entry returns without consulting any dispatch type, so no action is set and the request fails. A GET of a path whose action is declared POST-only therefore disables that path for every later request, the correct POST included. An entry that did resolve replays the level the earlier descent reached. Where a POST-only action sits below a shallower action on the same path, a GET memoises the shallow route, and a later POST is dispatched there with an auto() guarding the deeper controller never running. The memo is cleared only when an action is registered, which happens at setup, so an entry lasts for the life of the process, and its cap of 2048 entries bounds how many paths one caller can disable. In the configuration measured, the misroute lands on the less privileged action, so it is an authorization check not running rather than a privilege gain.
A vulnerability exists in Catalyst::Seal versions prior to 0.03 for Perl, allowing one request to disable a path or route a later request past an authorization check. This is achieved through a dispatch memo that is keyed solely on the request path. The vulnerability arises because Catalyst::Seal replaces the dispatcher's prepare_action method with one that memoizes how a path is resolved, including which dispatch type matched and what arguments were left over. However, this memoization does not account for state-dependent factors such as the request method or content type, leading to incorrect dispatching of actions.
Users are advised to upgrade to Catalyst::Seal version 0.03 or later. For those unable to upgrade, set the CATALYST_SEAL environment variable to 0, which will revert the application to the default Catalyst behavior.
Metrics
CVSS 4.0 Severity and Vector Strings:
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
Volerion
Assessed Sep 24, 2026CISA-ADP
Assessed Sep 25, 2026References 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.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://metacpan.org/release/LNATION/Catalyst-Seal-0.02/source/lib/Catalyst/Seal/Dispatch.pm#L237-280 | CPANSec | Source CodeVendor |
| https://metacpan.org/release/LNATION/Catalyst-Seal-0.03/changes | CPANSec | Source CodeVendor |
| http://www.openwall.com/lists/oss-security/2026/09/24/8 | CVE | AdvisoryMailing ListRemedy |
| http://www.openwall.com/lists/oss-security/2026/09/24/9 | CVE | AdvisoryMailing ListRemedy |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-1023 | Incomplete Comparison with Missing Factors | CPANSec |
| CWE-706 | Use of Incorrectly-Resolved Name or Reference | CPANSec |
Affected Products
| Product | Versions |
|---|---|
| Catalyst::Seal | < 0.03 |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Sep 25, 2026 | CVE Modified | CISA-ADP |
| Sep 25, 2026 | CVE Modified | CVE |
| Sep 24, 2026 | CVE Modified | CPANSec |
| Sep 24, 2026 | New CVE Received | CPANSec |
Volerion