Merge pull request #747 from jnguyen32/xss-bug-fix-issue-724

XSS bug fix issue #724: XSS issue when importing through getHTML() function
This commit is contained in:
Philipp Kühn
2020-07-08 08:57:14 +02:00
committed by GitHub
3 changed files with 20574 additions and 3 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.history
.DS_Store
node_modules
dist/

20570
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -272,9 +272,9 @@ export default class Editor extends Emitter {
}
if (typeof content === 'string') {
const element = document.createElement('div')
element.innerHTML = content.trim()
const htmlString = `<div>${content}</div>`;
const parser = new window.DOMParser;
const element = parser.parseFromString(htmlString, "text/html").body;
return DOMParser.fromSchema(this.schema).parse(element, parseOptions)
}