Skip to content

Commit bc1b20a

Browse files
authored
Update credential_phishing_esign_document_notification.yml
1 parent e17bb65 commit bc1b20a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

detection-rules/credential_phishing_esign_document_notification.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ source: |
135135
136136
// HR impersonation
137137
or strings.ilike(sender.display_name, "HR", "H?R", "*Human Resources*")
138+
139+
// Sender display name is a phone number
140+
or regex.imatch(sender.display_name,
141+
'\+?([ilo0-9]{1}.)?\(?[ilo0-9]{3}?\)?.[ilo0-9]{3}.?[ilo0-9]{4}'
142+
)
138143
)
139144
and (
140145
any(body.links,
@@ -157,7 +162,8 @@ source: |
157162
'enter.{0,15}teams',
158163
'Review and sign',
159164
'REVIEW.*DOCUMENT',
160-
'Open Document'
165+
'Open Document',
166+
'Sign Now'
161167
)
162168
// check that the display_text is all lowercase
163169
or (

0 commit comments

Comments
 (0)