summary refs log tree commit diff
path: root/changelog.d/13855.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.69.0rc1Sean Quah2022-10-041-1/+0
|
* Fix access token leak to logs from proxyagent (#13855)Eric Eastwood2022-09-231-0/+1
This can happen specifically with an application service `/transactions/10722?access_token=leaked` request Fix https://github.com/matrix-org/synapse/issues/13010 --- Saw an example leak in https://github.com/matrix-org/synapse/issues/13423#issuecomment-1205348482 ``` 2022-08-04 14:47:57,925 - synapse.http.client - 401 - DEBUG - as-sender-signal-1 - Sending request PUT http://localhost:29328/transactions/10722?access_token=<redacted> 2022-08-04 14:47:57,926 - synapse.http.proxyagent - 223 - DEBUG - as-sender-signal-1 - Requesting b'http://localhost:29328/transactions/10722?access_token=leaked' via <HostnameEndpoint localhost:29328> ```