Skip to content

Commit 1fc2bb8

Browse files
authored
Add patterns for AuthentiSign and e-Verify Doc (#3431)
1 parent cafc682 commit 1fc2bb8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

detection-rules/credential_phishing_esign_document_notification.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ source: |
1212
"Agreement.{0,5}Review",
1313
"Attend.and.Review",
1414
"action.re?quired",
15+
"AuthentiSign",
1516
"Completed.File",
1617
"D[0o]chsared",
1718
"D[0o]cshared",
@@ -31,6 +32,7 @@ source: |
3132
"esign.[0o]nline",
3233
"e-d[0o]c",
3334
"e-signature",
35+
"e-Verify Doc",
3436
"eSignature",
3537
"eSign&Return",
3638
"eSign[0o]nline",
@@ -133,6 +135,11 @@ source: |
133135
134136
// HR impersonation
135137
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+
)
136143
)
137144
and (
138145
any(body.links,
@@ -154,7 +161,9 @@ source: |
154161
'clarify.{0,20}(deposit|wallet|funds)',
155162
'enter.{0,15}teams',
156163
'Review and sign',
157-
'REVIEW.*DOCUMENT'
164+
'REVIEW.*DOCUMENT',
165+
'Open Document',
166+
'Sign Now'
158167
)
159168
// check that the display_text is all lowercase
160169
or (

0 commit comments

Comments
 (0)