This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Sanitize innert document #12524
Closed
Closed
Sanitize innert document #12524
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a59f423
refactor($sanitize): new implementation of the html sanitized parser
mhevery 45bc1fa
fix($sanitize): support void elements, fixups, remove dead code, typos
IgorMinar 8cff6eb
feat($sanitize): make svg support an opt-in
IgorMinar ab3dfaf
fix($compile): properly sanitize xlink:href attribute interoplation
IgorMinar eb86054
chore(travis): disable browserstack builds for now
IgorMinar 76f7926
fix($sanitize): add mXSS protection
IgorMinar 60bad80
fix($sanitize): strip urls starting with 'unsafe:' as opposed to 'uns…
IgorMinar 919b1b2
refactor($sanitize): remove <script> from valid block elements
IgorMinar 4328f80
refactor(): rename local variables to improve code clarity
IgorMinar 2b3a724
test($sanitize): add a test to prove that html comments are being str…
IgorMinar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@ngdoc error | ||
@name $sanitize:noinert | ||
@fullName Can't create an inert html document | ||
@description | ||
|
||
This error occurs when `$sanitize` sanitizer determines that `document.implementation.createHTMLDocument ` api is not supported by the current browser. | ||
|
||
This api is necessary for safe parsing of HTML strings into DOM trees and without it the sanitizer can't sanitize the input. | ||
|
||
The api is present in all supported browsers including IE 9.0, so the presence of this error usually indicates that Angular's `$sanitize` is being used on an unsupported platform. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@ngdoc error | ||
@name $sanitize:uinput | ||
@fullName Failed to sanitize html because the input is unstable | ||
@description | ||
|
||
This error occurs when `$sanitize` sanitizer tries to check the input for possible mXSS payload and the verification | ||
errors due to the input mutating indefinitely. This could be a sign that the payload contains code exploiting an mXSS | ||
vulnerability in the browser. | ||
|
||
mXSS attack exploit browser bugs that cause some browsers parse a certain html strings into DOM, which once serialized | ||
doesn't match the original input. These browser bugs can be exploited by attackers to create payload which looks | ||
harmless to sanitizers, but due to mutations caused by the browser are turned into dangerous code once processed after | ||
sanitization. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this disabling just temporary or should we give up with browserstack altogether?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's just temporary