Skip to content
Open
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
10 changes: 10 additions & 0 deletions detection-rules/impersonation_docusign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,14 @@ source: |
)
)
)
or (
strings.icontains(body.current_thread.text, 'Docusign')
and (
regex.icontains(body.html.raw, '<title>[^<]*Easearch[^<]*</title>')
or regex.icontains(body.html.raw, '<spacing>[^<]*(?:Docusign|Document)')
or regex.icontains(body.html.raw, '{(?:domain|randomNumber\d?)}')
)
)
)

// identifies the main CTA in the email, eg "Review now" or "Review document"
Expand Down Expand Up @@ -347,6 +355,8 @@ source: |
or strings.icontains(.display_text, "Document")
)
)
or strings.icontains(.display_text, "complete tasks")
or strings.icontains(.display_text, "View and complete")
)
),
// ensure those links aren't legit
Expand Down