fix regex misinterpreting tag name in badly formed HTML, prevent rich
content from ever using dangerous tags
This commit is contained in:
parent
22c3012e1c
commit
00b47e1673
2 changed files with 4 additions and 2 deletions
|
|
@ -149,7 +149,9 @@ export default {
|
|||
// Handle tag nodes
|
||||
if (Array.isArray(item)) {
|
||||
const [opener, children, closer] = item
|
||||
const Tag = getTagName(opener)
|
||||
let Tag = getTagName(opener)
|
||||
if (Tag === 'script') Tag = 'js-exploit'
|
||||
if (Tag === 'style') Tag = 'css-exploit'
|
||||
const fullAttrs = getAttrs(opener, () => true)
|
||||
const attrs = getAttrs(opener)
|
||||
const previouslyMentions = currentMentions !== null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue