Application or Package Used
@nteract/core
I'm evaluating if there is any XSS risks by turning on the VDOM transform, code like
VDOM({
'tagName': 'script',
'attributes':{},
'children': "console.log(\"vdom\");alert(\"vdom\");"
})
would run, however the script is not executed, I am wondering if the content of VDOM object gets sanitized?