mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-25 19:15:51 +03:00
Check creation event's room_id domain matches sender's
This commit is contained in:
parent
10f4856b0c
commit
560c71c735
1 changed files with 7 additions and 0 deletions
|
@ -86,6 +86,13 @@ class Auth(object):
|
|||
return True
|
||||
|
||||
if event.type == EventTypes.Create:
|
||||
room_id_domain = get_domain_from_id(event.room_id)
|
||||
sender_domain = get_domain_from_id(event.sender)
|
||||
if room_id_domain != sender_domain:
|
||||
raise AuthError(
|
||||
403,
|
||||
"Creation event's room_id domain does not match sender's"
|
||||
)
|
||||
# FIXME
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue