-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XSS in IE #492
Comments
This was referenced Mar 16, 2015
rhiokim
added a commit
to rhiokim/marked
that referenced
this issue
Mar 16, 2015
gkoberger
pushed a commit
to readmeio/marked
that referenced
this issue
Aug 24, 2015
ghost
pushed a commit
to zergeborg/marked
that referenced
this issue
May 13, 2016
ghost
pushed a commit
to zergeborg/marked
that referenced
this issue
May 13, 2016
blacklist vbscript: fixes markedjs#492
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Though set
sanitize
option totrue
could filter some xss code, but it still miss alink
case in IE.use:
[xss link](vbscript:alert(1))
will get a link
<a href="vbscript:alert(1)">xss link</a>
this script does not work in IE 11 edge mode, but works in IE 10 compatibility view.
The text was updated successfully, but these errors were encountered: