We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a302a commit 77f4c9bCopy full SHA for 77f4c9b
detection-rules/service_abuse_trello_board_invite_vip.yml
@@ -5,10 +5,20 @@ severity: "medium"
5
source: |
6
type.inbound
7
and sender.email.domain.root_domain == "trello.com"
8
+ // inspect the hops for two observed patterns
9
and any(headers.hops,
10
any(.fields,
- .name =~ "X-Msys-Api"
11
- and strings.icontains(.value, 'campaign_id":"invite_board_')
+ // 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
22
)
23
24
0 commit comments