Skip to content

Commit 77f4c9b

Browse files
authored
Update Trello board invitation with VIP impersonation
1 parent 50a302a commit 77f4c9b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

detection-rules/service_abuse_trello_board_invite_vip.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,20 @@ severity: "medium"
55
source: |
66
type.inbound
77
and sender.email.domain.root_domain == "trello.com"
8+
// inspect the hops for two observed patterns
89
and any(headers.hops,
910
any(.fields,
10-
.name =~ "X-Msys-Api"
11-
and strings.icontains(.value, 'campaign_id":"invite_board_')
11+
// X-Msys-Api with campaign_id
12+
(
13+
.name =~ "X-Msys-Api"
14+
and strings.icontains(.value, 'campaign_id":"invite_board_')
15+
)
16+
// X-Atl-Po-Triggerid with trello and invite board
17+
or (
18+
.name == "Feedback-Id"
19+
and strings.icontains(.value, 'trello')
20+
and regex.icontains(.value, 'invite[_-]board')
21+
)
1222
)
1323
)
1424

0 commit comments

Comments
 (0)