-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1cbb205
commit 9e9a948
Showing
2 changed files
with
4 additions
and
14 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
Security: Mitigate XSS | ||
|
||
We've mitigated an XSS vulnerability resulting from not sanitising the HTTP requests. | ||
net/http provides a router – ServeMux, which does more than routing, it also sanitises | ||
the requests. | ||
Instead of using ServeMux we were directly using an http.Handler which routes the | ||
request based on the URL.Path without sanitizing it. | ||
Besides, in pkg/siteacc/siteacc.go and internal/http/services/ocmd/invites.go we were | ||
creating http responses with user-provided values. | ||
This patch adds a http.ServeMux to sanitise the request before reaching any other | ||
handler and uses html.EscapeString to sanitise the user-provided values in the http | ||
We've mitigated an XSS vulnerability resulting from unescaped HTTP responses containing | ||
user-provided values in pkg/siteacc/siteacc.go and internal/http/services/ocmd/invites.go. | ||
This patch uses html.EscapeString to escape the user-provided values in the HTTP | ||
responses of pkg/siteacc/siteacc.go and internal/http/services/ocmd/invites.go. | ||
|
||
https://github.com/cs3org/reva/pull/3316 |
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