GHSA-c78w-2gw7-gjv3

Suggest an improvement
Source
https://github.com/advisories/GHSA-c78w-2gw7-gjv3
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/05/GHSA-c78w-2gw7-gjv3/GHSA-c78w-2gw7-gjv3.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-c78w-2gw7-gjv3
Aliases
Published
2020-05-11T20:00:15Z
Modified
2023-11-08T04:00:40Z
Summary
XSS in TinyMCE
Details

Impact

A cross-site scripting (XSS) vulnerability was discovered in: the core parser and media plugin. The vulnerability allowed arbitrary JavaScript execution when inserting a specially crafted piece of content into the editor via the clipboard or APIs. This impacts all users who are using TinyMCE 4.9.9 or lower and TinyMCE 5.2.1 or lower.

Patches

This vulnerability has been patched in TinyMCE 4.9.10 and 5.2.2 by improved HTML parsing and sanitization logic.

Workarounds

The workarounds available are:

  • disable the media plugin and manually sanitize CDATA content (see below) or
  • upgrade to either TinyMCE 4.9.10 or TinyMCE 5.2.2

Example: Manually strip CDATA elements

setup: function(editor) {
  editor.on('PreInit', function() {
    editor.parser.addNodeFilter('#cdata', function(nodes) {
      for (var i = 0; i < nodes.length; i++) {
        nodes[i].remove();
      }
    });
  });
}

Acknowledgements

Tiny Technologies would like to thank MichaƂ Bentkowski and intivesec for discovering these vulnerabilities.

References

https://www.tiny.cloud/docs/release-notes/release-notes522/#securityfixes

For more information

If you have any questions or comments about this advisory:

Database specific
{
    "cwe_ids":  [
        "CWE-79"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2020-05-11T20:00:00Z",
    "nvd_published_at":  null,
    "severity":  "MODERATE"
}
References

Affected packages

npm / tinymce

Package

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
4.9.10

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/05/GHSA-c78w-2gw7-gjv3/GHSA-c78w-2gw7-gjv3.json"

npm / tinymce

Package

Affected ranges

Type
SEMVER
Events
Introduced
5.0.0
Fixed
5.2.2

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2020/05/GHSA-c78w-2gw7-gjv3/GHSA-c78w-2gw7-gjv3.json"