This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add a config option for validating 'next_link' parameters against a domain whitelist #8275
Merged
Merged
Changes from 2 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3bb8b74
Add next_link domain whitelist config option
anoadragon453 0550f12
Use the config option to validate next_link values
anoadragon453 62e61e4
Require file:/// again
anoadragon453 41c4b3a
Stop trying to convert None to a set
anoadragon453 f4513fe
Scheme for file:/// is 'file', not 'file:///'
anoadragon453 8a5dcaa
Add tests, improve _request_token and add types
anoadragon453 f7e4686
Changelog
anoadragon453 bf5e812
mypy
anoadragon453 b09ef06
Update tests/rest/client/v2_alpha/test_account.py
anoadragon453 42715ff
Add tests for None whitelist, exotic schemes
anoadragon453 7b1e865
atd -> IS
anoadragon453 3235e44
sample config
anoadragon453 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 hidden or 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 contains hidden or 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 contains hidden or 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 |
---|---|---|
|
@@ -17,6 +17,11 @@ | |
import logging | ||
import random | ||
from http import HTTPStatus | ||
from typing import TYPE_CHECKING | ||
from urllib.parse import urlparse | ||
|
||
if TYPE_CHECKING: | ||
from synapse.app.homeserver import HomeServer | ||
|
||
from synapse.api.constants import LoginType | ||
from synapse.api.errors import ( | ||
|
@@ -98,6 +103,9 @@ async def on_POST(self, request): | |
Codes.THREEPID_DENIED, | ||
) | ||
|
||
# Raise if the provided next_link value isn't valid | ||
assert_valid_next_link(self.hs, next_link) | ||
|
||
# The email will be sent to the stored address. | ||
# This avoids a potential account hijack by requesting a password reset to | ||
# an email address which is controlled by the attacker but which, after | ||
|
@@ -446,6 +454,9 @@ async def on_POST(self, request): | |
Codes.THREEPID_DENIED, | ||
) | ||
|
||
# Raise if the provided next_link value isn't valid | ||
assert_valid_next_link(self.hs, next_link) | ||
|
||
existing_user_id = await self.store.get_user_id_by_threepid("email", email) | ||
|
||
if existing_user_id is not None: | ||
|
@@ -517,6 +528,9 @@ async def on_POST(self, request): | |
Codes.THREEPID_DENIED, | ||
) | ||
|
||
# Raise if the provided next_link value isn't valid | ||
assert_valid_next_link(self.hs, next_link) | ||
|
||
existing_user_id = await self.store.get_user_id_by_threepid("msisdn", msisdn) | ||
|
||
if existing_user_id is not None: | ||
|
@@ -603,15 +617,10 @@ async def on_GET(self, request): | |
|
||
# Perform a 302 redirect if next_link is set | ||
if next_link: | ||
if next_link.startswith("file:///"): | ||
logger.warning( | ||
"Not redirecting to next_link as it is a local file: address" | ||
) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This check now happens implicitly in Additionally, |
||
else: | ||
request.setResponseCode(302) | ||
request.setHeader("Location", next_link) | ||
finish_request(request) | ||
return None | ||
request.setResponseCode(302) | ||
request.setHeader("Location", next_link) | ||
finish_request(request) | ||
return None | ||
|
||
# Otherwise show the success template | ||
html = self.config.email_add_threepid_template_success_html_content | ||
|
@@ -875,6 +884,45 @@ async def on_POST(self, request): | |
return 200, {"id_server_unbind_result": id_server_unbind_result} | ||
|
||
|
||
def assert_valid_next_link(hs: "HomeServer", next_link: str): | ||
""" | ||
Raises a SynapseError if a given next_link value is invalid | ||
|
||
next_link is valid if the scheme is http(s) and the next_link.domain_whitelist config | ||
option is either empty or contains a domain that matches the one in the given next_link | ||
|
||
Args: | ||
hs: The homeserver object | ||
next_link: The next_link value given by the client | ||
|
||
Raises: | ||
SynapseError: If the next_link is invalid | ||
""" | ||
valid = True | ||
|
||
# Parse the contents of the URL | ||
next_link_parsed = urlparse(next_link) | ||
|
||
# Scheme must be http(s) | ||
if next_link_parsed.scheme not in ["http", "https"]: | ||
valid = False | ||
anoadragon453 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# If the domain whitelist is set, the domain must be in it | ||
if ( | ||
valid | ||
and hs.config.next_link_domain_whitelist is not None | ||
and next_link_parsed.hostname not in hs.config.next_link_domain_whitelist | ||
): | ||
valid = False | ||
|
||
if not valid: | ||
raise SynapseError( | ||
400, | ||
"'next_link' domain not included in whitelist, or not http(s)", | ||
errcode=Codes.INVALID_PARAM, | ||
) | ||
|
||
|
||
class WhoamiRestServlet(RestServlet): | ||
PATTERNS = client_patterns("/account/whoami$") | ||
|
||
|
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.
Uh oh!
There was an error while loading. Please reload this page.