-
-
Notifications
You must be signed in to change notification settings - Fork 250
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: Bypass of the Renderer's link security check #87
Comments
qll
changed the title
XSS: Bypass of the Renderer' link security check
XSS: Bypass of the Renderer's link security check
Feb 23, 2016
Great |
Closed
You fixed it. |
Closed
This was referenced Feb 1, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The code actually checks for
javascript:
, wheras the browser happily first decodes entities and then executes the payload. Furthermore, there are lots of other ways to bypass this.data:text/html,<script>alert
1</script>
as data-URIs inherit the document's context (and, thus, cookies etc).In general, I would advise against such a blacklist approach. I will attempt to create a good pull request for this soon.
The text was updated successfully, but these errors were encountered: