Skip to content

Commit

Permalink
Update impersonation_netflix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
morriscode authored Sep 8, 2023
1 parent 3e746a3 commit 574b4f4
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions detection-rules/impersonation_netflix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ source: |
.href_url.domain.tld not in ("com", "org", "net", "ms") and .href_url.domain.valid == true
)
)
or 2 of (
strings.icontains(body.current_thread.text, "restart"),
strings.icontains(body.current_thread.text, "cancelled"),
strings.icontains(body.current_thread.text, "membership"),
strings.icontains(body.current_thread.text, "expir"),
strings.icontains(body.current_thread.text, "payment")
or (
2 of (
strings.icontains(body.current_thread.text, "restart"),
strings.icontains(body.current_thread.text, "cancelled"),
strings.icontains(body.current_thread.text, "membership"),
strings.icontains(body.current_thread.text, "expir"),
strings.icontains(body.current_thread.text, "payment")
)
and length(body.links) > 0
and not any(body.links,
.href_url.domain.root_domain in ("netflix.com", "dvd.com", "netflixfamily.com")
Expand Down

0 comments on commit 574b4f4

Please sign in to comment.