forked from indymedia/epicyon
Check for enabling scripts or popups
parent
5da576965f
commit
af76a5809e
|
@ -166,7 +166,7 @@ def dangerousMarkup(content: str, allowLocalNetworkAccess: bool) -> bool:
|
||||||
invalidPartials = ('127.0.', '192.168', '10.0.')
|
invalidPartials = ('127.0.', '192.168', '10.0.')
|
||||||
invalidStrings = ('script', 'canvas', 'style', 'abbr',
|
invalidStrings = ('script', 'canvas', 'style', 'abbr',
|
||||||
'frame', 'iframe', 'html', 'body',
|
'frame', 'iframe', 'html', 'body',
|
||||||
'hr')
|
'hr', 'allow-popups', 'allow-scripts')
|
||||||
for markup in contentSections:
|
for markup in contentSections:
|
||||||
if '>' not in markup:
|
if '>' not in markup:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue