Security Advisories (1)
CVE-2022-4993 (2026-08-13)

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.

Changes for version 0.40068

  • Add RequestToken field Add build_render_list_method Zccept coderefs for date_start, date_end in Date field

Documentation

index of the manual
using HFH forms in Catalyst
FormHandler use recipes
FormHandler use recipes
form defaults documentation
FormHandler error methods
brief documentation of available fields
converting from Data::FormValidator
converting from HTML::FormFu
inflation and deflation of field values
introduction to using FormHandler
how to render with FormHandler
how to use FormHandler with Catalyst

Modules

HTML forms using Moose
arrange form layout using blocks
role to build field array
base class for fields
Field to support repeatable javascript add
a true or false field
captcha field with GD::SecurityImage
a checkbox field type
field consisting of subfields
a date field with formats
compound DateTime field
DateTime::Duration from HTML form values
validates email using Email::Valid
simple file field; does no processing
validate a float value
accept integer from 0 to 23
integer range in select list
validate an integer value
input range from 0 to 59
US currency-like values
select list 1 to 12
select list with month names
multiple select list
for nested elements of compound fields
base class for submit field
positive integer field
repeatable (array) field
used internally by repeatable fields
result class for fields
field to support repeatable javascript remove
select list 0 to 59
Multiple select field from CSV value
CSV Text field from multiple
select list day of week strings
year selection list
internal role for form and compound fields
Experiment in loading form from config file
internationalization
Arabic message translations
Bulgarian message file
Catalan message translations - traducion catalana dels missatges
Czech message translations
German message translations
base message file
Spanish message translations - traduccion al español de los mensages
Hungarian message file
Italian message translations - traduzione italiana dei messaggi
Japanese message file
Brazilian Portuguese message file
Russian message file
Swedish message translations
Turkish message file
Ukrainian message file
internal hash merging
field_list and apply_list
default model base class
Class::DBI model class (non-functioning)
stub for Object model
to add FormHandler sugar
to add sugar to roles
used in Wizard
used in Wizard
params handling
role providing method to construct repeatable javascript
simple rendering role
render a form with a table layout
form result object
role with common code for form & field results
provides is_html method used in tests
generate and validate captchas
types used internally in FormHandler
customized replacement for MooseX::Traits
Moose type constraints
validation role (internal)
role to apply widgets
base block renderer
block to format bare form element like bootstrap
button field rendering widget
button field rendering widget, using button tag
Captcha field rendering widget
HTML attributes field role
hidden field rendering widget
password rendering widget
radio group rendering widget
reset field rendering widget
allow setting options from options keys
select field rendering widget
button field rendering widget
submit field rendering widget
text field rendering widget
textarea rendering widget
update field rendering widget
set HTML attributes on the form tag
widget to render a form with divs
render a form with a table layout
role to render form messages using Bootstrap styling
common methods for widget wrappers
Twitter Bootstrap 2.0 field wrapper
Twitter Bootstrap 3.0 field wrapper
wrapper that doesn't wrap
wrapper class for table layout
wrapper class for table layout that doesn't wrap compound fields
create a multi-page form