Skip to content

Regular Expression Denial of Service in OpenProject forum messages

Moderate
oliverguenther published GHSA-qqvp-j6gm-q56f Jul 20, 2021

Package

OpenProject

Affected versions

<= 11.3.2

Patched versions

11.3.3

Description

Impact

The MessagesController class of OpenProject has a quote method that implements the logic behind the Quote button in the discussion forums, and it uses the following regex to strip <pre> tags from the message being quoted (app/controllers/messages_controller.rb#L147):

text.to_s.strip.gsub(%r{<pre>((.|\s)*?)</pre>}m, '[...]')

The (.|\s) part can match a space character in two ways, so an unterminated <pre> tag containing n spaces causes Ruby's regex engine to backtrack to try 2n states in the NFA. This will result in a Regular Expression Denial of Service.

Patches

The vulnerability has been introduced in Redmine before forking it. It is present in all OpenProject versions up to, and including, version 11.3.2. The issue is fixed in OpenProject 11.3.3

Workarounds

The vulnerability can also be fixed by applying the following patch: https://github.com/opf/openproject/pull/9447.patch

References

For more information

If you have any questions or comments about this advisory:

Severity

Moderate
4.3
/ 10

CVSS base metrics

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

CVE ID

CVE-2021-32763

Weaknesses