We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prune_event
This issue has been migrated from #1831.
It looks like we've been using keys in the event authentication checks without making sure they won't be removed when an event is redacted:
third_party_invite
m.room.member
redacts
m.room.redaction
m.federate
m.room.create
https://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L41-L57 https://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L69 https://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L71
Unfortunately fixing this will break the event signature checks for those events.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue has been migrated from #1831.
It looks like we've been using keys in the event authentication checks without making sure they won't be removed when an event is redacted:
third_party_invite
JSON keys in invitem.room.member
event content.(fixed by msc2716, Dummy issue #8984)redacts
JSON keys inm.room.redaction
events(fixed by msc2716, Dummy issue #8984)m.federate
JSON keys inm.room.create
eventshttps://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L41-L57
https://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L69
https://github.com/matrix-org/synapse/blob/v0.18.7/synapse/events/utils.py#L71
Unfortunately fixing this will break the event signature checks for those events.
The text was updated successfully, but these errors were encountered: