Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Only do restricted join rules signature checks for room versions 8/9. (
Browse files Browse the repository at this point in the history
…#10927)

Otherwise the presence of a (bogus, unused) field could cause
auth checks to fail.
  • Loading branch information
clokep authored Sep 28, 2021
1 parent a8bbf08 commit c3ccad7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/10927.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a bug introduced in Synapse v1.40.0 where the signature checks for room version 8/9 could be applied to earlier room versions in some situations.
3 changes: 2 additions & 1 deletion synapse/event_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ def check(
raise AuthError(403, "Event not signed by sending server")

is_invite_via_allow_rule = (
event.type == EventTypes.Member
room_version_obj.msc3083_join_rules
and event.type == EventTypes.Member
and event.membership == Membership.JOIN
and "join_authorised_via_users_server" in event.content
)
Expand Down

0 comments on commit c3ccad7

Please sign in to comment.