Bug 2520301 - CVE-2022-4993 perl-HTML-FormHandler: HTML::FormHandler: Denial of Service via crafted error messages [fedora-all]
Summary: CVE-2022-4993 perl-HTML-FormHandler: HTML::FormHandler: Denial of Service via...
Keywords:
Status: ON_QA
Alias: None
Product: Fedora
Classification: Fedora
Component: perl-HTML-FormHandler
Version: rawhide
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: ---
Assignee: Emmanuel Seyman
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: {"flaws": ["64fbd072-c8ab-4fbc-bb2f-7...
Depends On:
Blocks: CVE-2022-4993
TreeView+ depends on / blocked
 
Reported: 2026-08-20 13:18 UTC by Laura Pardo
Modified: 2026-09-14 02:04 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Laura Pardo 2026-08-20 13:18:45 UTC
Disclaimer: Community trackers are created by Red Hat Product Security team on a best effort basis. Package maintainers are required to ascertain if the flaw indeed affects their package, before starting the update process.

HTML::FormHandler versions through 0.40068 for Perl allow attacker selected method dispatch and resource exhaustion because _apply_actions and add_error use error message text built from request data as a Locale::Maketext bracket notation template.

add_error hands its first argument to the language handle as the Locale::Maketext message key, and the default handle's lexicon sets `_AUTO`, so a string that is not a lexicon entry is compiled as a bracket notation template instead of being looked up. In a bracket group the first token names a method called on the language handle and the remaining tokens are its arguments.

Three kinds of text the library did not author reach that position. _apply_actions installs a `$SIG{__WARN__}` handler that stores the warning text in `$error_message`, and a captured warning survives a successful action, so a field carrying a numeric transform turns `Argument "[sprintf,%50000000d,0]" isn't numeric` into the template; a warning quotes the submitted value verbatim, so the group is well formed and dispatches. `$error_message ||= $tobj->validate($new_value)` takes a type constraint's own failure message, which renders the rejected value through a partial dumper in bracket and comma form (Devel::PartialDump when Moose can load it, Type::Tiny's own dumper always), so a field with `apply => [ Str ]` given a parameter sent more than once, which arrives as an array, gets `Reference ["a","b"] did not pass type constraint "Str"` as its template, from a request that carries no bracket character of its own. A coercion or transform exception reaches it the same way. Beyond those, a validator whose message contains the field value puts that value in the template directly, and add_error replaces the message list with the contents of an arrayref first argument (`@message = @{$message[0]} if ref $message[0] eq 'ARRAY'`), so a value arriving as an array fills the argument slots from the same request as well.

A malformed group such as `[0]` makes the compile croak, and HTML::FormHandler::I18N::maketext and add_error each re-raise that as a die, so process() throws. A well formed group naming sprintf reaches CORE::sprintf with an attacker chosen field width. Any caller that applies a type constraint or a transform to an untrusted field, or whose validator passes an untrusted field value to add_error, can be made to throw an unhandled exception out of process(), or to allocate an arbitrary amount of memory in one request, and an application whose language handle subclass defines side effecting public methods makes those callable with attacker chosen arguments. The dumped type constraint message is bounded to the exception, because both dumpers quote non-numeric elements so the method slot is never an attacker chosen name. The built-in messages pass fixed templates with the value in an argument slot, where it stays inert, and the built-in field types attach explicit message callbacks, so neither is affected.

Comment 1 Fedora Update System 2026-09-06 13:48:27 UTC
FEDORA-2026-ab25ac7ee2 (perl-HTML-FormHandler-0.410001-1.fc43) has been submitted as an update to Fedora 43.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-ab25ac7ee2

Comment 2 Fedora Update System 2026-09-06 13:48:29 UTC
FEDORA-2026-ad7d80deb9 (perl-HTML-FormHandler-0.410001-1.fc44) has been submitted as an update to Fedora 44.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-ad7d80deb9

Comment 3 Fedora Update System 2026-09-06 13:48:29 UTC
FEDORA-2026-5b1ed32d6c (perl-HTML-FormHandler-0.410001-1.fc45) has been submitted as an update to Fedora 45.
https://bodhi.fedoraproject.org/updates/FEDORA-2026-5b1ed32d6c

Comment 4 Fedora Update System 2026-09-07 01:09:26 UTC
FEDORA-2026-5b1ed32d6c has been pushed to the Fedora 45 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-5b1ed32d6c`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-5b1ed32d6c

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 5 Fedora Update System 2026-09-07 01:23:35 UTC
FEDORA-2026-ad7d80deb9 has been pushed to the Fedora 44 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-ad7d80deb9`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-ad7d80deb9

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 6 Fedora Update System 2026-09-07 01:42:43 UTC
FEDORA-2026-ab25ac7ee2 has been pushed to the Fedora 43 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-ab25ac7ee2`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-ab25ac7ee2

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 7 Fedora Update System 2026-09-14 01:29:32 UTC
FEDORA-2026-406a152d49 has been pushed to the Fedora 45 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-406a152d49`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-406a152d49

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 8 Fedora Update System 2026-09-14 01:35:15 UTC
FEDORA-2026-167a356523 has been pushed to the Fedora 43 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-167a356523`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-167a356523

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.

Comment 9 Fedora Update System 2026-09-14 02:04:44 UTC
FEDORA-2026-21850d7df0 has been pushed to the Fedora 44 testing repository.
Soon you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2026-21850d7df0`
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2026-21850d7df0

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.


Note You need to log in before you can comment on or make changes to this bug.