Skip to content
New issue

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

Scenario for .well-known requests of Synapse Matrix servers #1206

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .tests/matrix-wellknown-probing/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
parsers:
- crowdsecurity/syslog-logs
- crowdsecurity/nginx-logs
- crowdsecurity/http-logs
- crowdsecurity/dateparse-enrich
scenarios:
- ./scenarios/adrianrudnik/matrix-wellknown-probing.yaml
postoverflows:
- ""
log_file: matrix-wellknown-probing.log
log_type: nginx
ignore_parsers: true
6 changes: 6 additions & 0 deletions .tests/matrix-wellknown-probing/matrix-wellknown-probing.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
127.0.0.1 - - [29/Dec/2024:17:11:38 +0000] "GET /.well-known/matrix/server HTTP/2.0" 404 48 "-" "Conduwuit/0.5.0 (e123456 🥴🦴🏳️‍⚧️)"
127.0.0.2 - - [29/Dec/2024:17:11:39 +0200] "GET /.well-known/matrix/client HTTP/1.0" 404 48 "-" "Go-http-client/2.0"
127.0.0.3 - - [29/Dec/2024:17:11:41 +0000] "GET /.well-known/something HTTP/1.0" 404 48 "-" "Go-http-client/2.0"
127.0.0.4 - - [29/Dec/2024:17:11:42 +0000] "GET /index.html HTTP/1.0" 404 48 "-" "Conduwuit/0.5.0 (e123456 🥴🦴🏳️‍⚧️)"
127.0.0.5 - - [29/Dec/2024:17:11:43 +0000] "GET / HTTP/2.0" 404 48 "-" "Conduwuit/0.5.0 (e897654 🥴🦴🏳️‍⚧️)"
127.0.0.6 - - [29/Dec/2024:17:11:40 +0000] "GET /.well-known/matrix/server HTTP/3.0" 404 48 "-" "Conduwuit/0.5.0 (f000000 🥴🦴🏳️‍⚧️)"
42 changes: 42 additions & 0 deletions .tests/matrix-wellknown-probing/scenario.assert
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
len(results) == 2

"127.0.0.6" in results[0].Overflow.GetSources()
results[0].Overflow.Sources["127.0.0.6"].IP == "127.0.0.6"
results[0].Overflow.Sources["127.0.0.6"].Range == ""
results[0].Overflow.Sources["127.0.0.6"].GetScope() == "Ip"
results[0].Overflow.Sources["127.0.0.6"].GetValue() == "127.0.0.6"
results[0].Overflow.Alert.Events[0].GetMeta("datasource_path") == "matrix-wellknown-probing.log"
results[0].Overflow.Alert.Events[0].GetMeta("datasource_type") == "file"
results[0].Overflow.Alert.Events[0].GetMeta("http_args_len") == "0"
results[0].Overflow.Alert.Events[0].GetMeta("http_path") == "/.well-known/matrix/server"
results[0].Overflow.Alert.Events[0].GetMeta("http_status") == "404"
results[0].Overflow.Alert.Events[0].GetMeta("http_user_agent") == "Conduwuit/0.5.0 (f000000 🥴🦴🏳️‍⚧️)"
results[0].Overflow.Alert.Events[0].GetMeta("http_verb") == "GET"
results[0].Overflow.Alert.Events[0].GetMeta("log_type") == "http_access-log"
results[0].Overflow.Alert.Events[0].GetMeta("service") == "http"
results[0].Overflow.Alert.Events[0].GetMeta("source_ip") == "127.0.0.6"
results[0].Overflow.Alert.Events[0].GetMeta("timestamp") == "2024-12-29T17:11:40Z"
results[0].Overflow.Alert.GetScenario() == "adrianrudnik/matrix-wellknown-probing"
results[0].Overflow.Alert.Remediation == true
results[0].Overflow.Alert.GetEventsCount() == 1

"127.0.0.1" in results[1].Overflow.GetSources()
results[1].Overflow.Sources["127.0.0.1"].IP == "127.0.0.1"
results[1].Overflow.Sources["127.0.0.1"].Range == ""
results[1].Overflow.Sources["127.0.0.1"].GetScope() == "Ip"
results[1].Overflow.Sources["127.0.0.1"].GetValue() == "127.0.0.1"
results[1].Overflow.Alert.Events[0].GetMeta("datasource_path") == "matrix-wellknown-probing.log"
results[1].Overflow.Alert.Events[0].GetMeta("datasource_type") == "file"
results[1].Overflow.Alert.Events[0].GetMeta("http_args_len") == "0"
results[1].Overflow.Alert.Events[0].GetMeta("http_path") == "/.well-known/matrix/server"
results[1].Overflow.Alert.Events[0].GetMeta("http_status") == "404"
results[1].Overflow.Alert.Events[0].GetMeta("http_user_agent") == "Conduwuit/0.5.0 (e123456 🥴🦴🏳️‍⚧️)"
results[1].Overflow.Alert.Events[0].GetMeta("http_verb") == "GET"
results[1].Overflow.Alert.Events[0].GetMeta("log_type") == "http_access-log"
results[1].Overflow.Alert.Events[0].GetMeta("service") == "http"
results[1].Overflow.Alert.Events[0].GetMeta("source_ip") == "127.0.0.1"
results[1].Overflow.Alert.Events[0].GetMeta("timestamp") == "2024-12-29T17:11:38Z"
results[1].Overflow.Alert.GetScenario() == "adrianrudnik/matrix-wellknown-probing"
results[1].Overflow.Alert.Remediation == true
results[1].Overflow.Alert.GetEventsCount() == 1

13 changes: 13 additions & 0 deletions scenarios/adrianrudnik/matrix-wellknown-probing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Synapse Matrix Servers: Known/Server Requests

Prohibit Matrix servers from sending requests to the current server endpoints, even if the server no longer exists (decommissioned) or never existed (inherited/re-registered domain).

More details at

- https://github.com/element-hq/synapse/issues/3765
- https://github.com/element-hq/synapse/issues/5442
- https://github.com/element-hq/synapse/issues/17739

There does not seem to be a viable way to tell matrix network servers to stop sending these queries, hence this scenario to ban IP sources making these endless queries. Depending on the number of channels/servers the old server was connected to, this can be a significant number of requests per day.

There does not seem to be a viable way to tell matrix network servers to stop sending these queries, hence this scenario to ban IP sources making these endless queries.
19 changes: 19 additions & 0 deletions scenarios/adrianrudnik/matrix-wellknown-probing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
type: trigger
#debug: true
name: adrianrudnik/matrix-wellknown-probing
description: "Detect matrix .well-known probing"
filter: |
evt.Meta.log_type in ['http_access-log', 'http_error-log'] and
evt.Meta.http_status == '404' and
Upper(evt.Meta.http_path) contains Upper('/.well-known/matrix/server')
groupby: evt.Meta.source_ip
blackhole: 5m
labels:
service: http
remediation: true
confidence: 3
spoofable: 0
classification:
- attack.T1498
behavior: "http:dos"
label: "HTTP DOS by matrix servers inquiring about possible server"