Merge pull request #627 from SISheogorath/fix/XSS

Prevent XSS vulnerbility by srcdoc in iframe
This commit is contained in:
Christoph (Sheogorath) Kern
2017-11-24 18:09:41 +01:00
committed by GitHub

View File

@@ -18,7 +18,7 @@ whiteList['style'] = []
// allow kbd tag
whiteList['kbd'] = []
// allow ifram tag with some safe attributes
whiteList['iframe'] = ['allowfullscreen', 'name', 'referrerpolicy', 'sandbox', 'src', 'srcdoc', 'width', 'height']
whiteList['iframe'] = ['allowfullscreen', 'name', 'referrerpolicy', 'sandbox', 'src', 'width', 'height']
// allow summary tag
whiteList['summary'] = []