You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: detection-rules/2645_brand_impersonation_procore.yml
+40-3Lines changed: 40 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,45 @@
1
1
name: "Brand Impersonation: Procore"
2
-
description: "Detects messages containing Procore branding language that do not originate from legitimate Procore domains. This has been observed in phishing campaigns."
2
+
description: "Detects messages containing Procore branding language that do not originate from legitimate Procore domains. This has been observed in phishing campaigns."
3
3
type: "rule"
4
4
severity: "medium"
5
-
source: "type.inbound\nand strings.ilike(body.current_thread.text, \"*powered by procore*\") \nand not sender.email.domain.root_domain == \"procore.com\"\n"
5
+
source: |
6
+
type.inbound
7
+
and strings.ilike(body.current_thread.text, "*powered by procore*")
8
+
and not sender.email.domain.root_domain in ("procore.com", "procoretech.com")
9
+
and not any(body.links, .href_url.domain.domain == "storage.procore.com")
0 commit comments