Lucene search

K
rubygemsRubySecRUBY:ACTIONTEXT-2024-34341
HistoryMay 06, 2024 - 9:00 p.m.

Arbitrary Code Execution Vulnerability in Trix Editor included in ActionText

2024-05-0621:00:00
RubySec
github.com
9
actiontext
trix
arbitrary code execution
vulnerability
copy paste
script
sanitization
content security policy
csp
upgrade
bug

CVSS3

5.4

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

LOW

Integrity Impact

LOW

Availability Impact

NONE

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N

AI Score

7.9

Confidence

Low

From version 7.0 onwards the ActionText gem includes a copy of the Trix rich text editor.
Prior to versions 7.0.8.3 and 7.1.3.3, ActionText included a version of Trix that
is vulnerable to arbitrary code execution when
copying and pasting content from the web or other documents with markup into the editor.
The vulnerability stems from improper sanitization of pasted content, allowing an attacker
to embed malicious scripts which are executed within the context of the application.

Vulnerable Versions:

  • 7.1 series older than 7.1.3.3
  • 7.0 series older than 7.0.8.3

Fixed Versions:

  • 7.1.3.3
  • 7.0.8.3

Vector:

Bug 1: When copying content manipulated by a script, such as:

document.addEventListener('copy', function(e){
  e.clipboardData.setData('text/html', '<div>&lt;noscript&gt;<div></div>&lt;/noscript&gt;</div>');
  e.preventDefault();
});

and pasting into the Trix editor, the script within the content is executed.

Bug 2: Similar execution occurs with content structured as:

document.write(`copy<div></div>me`);

Impact:

An attacker could exploit these vulnerabilities to execute arbitrary JavaScript code
within the context of the user’s session, potentially leading to unauthorized actions
being performed or sensitive information being disclosed.

Remediation:

Update Recommendation: Users of ActionText 7.0 should upgrade to ActionText version 7.0.8.3 or later.
Users of ActionText 7.1 should upgrade to version 7.1.3.3 or later.
These updated versions incorporate proper sanitization of input from copied content.

CSP Enhancement: Additionally, enhancing the Content Security Policy (CSP) to disallow inline scripts
can significantly mitigate the risk of such vulnerabilities.
Set CSP policies such as script-src ‘self’ to ensure that only scripts hosted on the same origin
are executed, and explicitly prohibit inline scripts using script-src-elem.

Affected configurations

Vulners
Node
rubyactiontextRange7.0.07.0.8.3
OR
rubyactiontextRange7.1.3.3
VendorProductVersionCPE
rubyactiontext*cpe:2.3:a:ruby:actiontext:*:*:*:*:*:*:*:*

CVSS3

5.4

Attack Vector

NETWORK

Attack Complexity

LOW

Privileges Required

NONE

User Interaction

REQUIRED

Scope

UNCHANGED

Confidentiality Impact

LOW

Integrity Impact

LOW

Availability Impact

NONE

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N

AI Score

7.9

Confidence

Low

Related for RUBY:ACTIONTEXT-2024-34341