Skip to content

Cross-site Scripting when rendering error messages in laminas-form

Moderate severity GitHub Reviewed Published Jan 28, 2022 in laminas/laminas-form • Updated Feb 3, 2023

Package

composer laminas/laminas-form (Composer)

Affected versions

>= 3.1.0, < 3.1.1
>= 3.0.0, < 3.0.2
< 2.17.1

Patched versions

3.1.1
3.0.2
2.17.1

Description

Impact

When rendering validation error messages via the formElementErrors() view helper shipped with laminas-form, many messages will contain the submitted value. However, in vulnerable versions of laminas-form, the value was not being escaped for HTML contexts, which can potentially lead to a Reflected Cross-Site Scripting (XSS) attack.

Patches

The following versions were issued to mitigate the vulnerability:

  • 2.17.1
  • 3.0.2
  • 3.1.1

Workarounds

At the top of a view script where you call the formElementErrors() view helper, place the following code:

use Laminas\Form\ElementInterface;
use Laminas\View\PhpRenderer;

$escapeMessages = function (ElementInterface $formOrElement, PhpRenderer $renderer): void {
    $messages = $element->getMessages();
    if (! $messages) {
        return;
    }

    $escaped  = [];
    array_walk_recursive(
        $messages,
        static function (string $item) use (&$escaped, $renderer): void {
            $escaped[] = $renderer->escapeHtml($item);
        }
    };

    $element->setMessages($escaped);
};

Before calling formElementErrors() with a form, fieldset, or element, call the above closure as follows

// Usage with a form
// $this is the view renderer
$escapeMessages($form, $this);

// Usage with a fieldset
// $this is the view renderer
$escapeMessages($fieldset, $this);

// Usage with a form element
// $this is the view renderer
$escapeMessages($element, $this);

For more information

If you have any questions or comments about this advisory:

References

@weierophinney weierophinney published to laminas/laminas-form Jan 28, 2022
Reviewed Jan 28, 2022
Published by the National Vulnerability Database Jan 28, 2022
Published to the GitHub Advisory Database Jan 28, 2022
Last updated Feb 3, 2023

Severity

Moderate
6.1
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
Required
Scope
Changed
Confidentiality
Low
Integrity
Low
Availability
None
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N

Weaknesses

CVE ID

CVE-2022-23598

GHSA ID

GHSA-jq4p-mq33-w375

Source code

Credits

Checking history
See something to contribute? Suggest improvements for this vulnerability.