Skip to content

Commit 97d4829

Browse files
peterdj45ID Generatoralex-heroldzoomequipd
authored
Create credential_phishing_nifty.com_domain_abuse.yml (#3371)
Co-authored-by: ID Generator <hello@sublimesecurity.com> Co-authored-by: Alex Herold <alex.herold@sublimesecurity.com> Co-authored-by: Brandon Murphy <4827852+zoomequipd@users.noreply.github.com>
1 parent 1fc2bb8 commit 97d4829

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Service Abuse: Nifty.com with impersonation"
2+
description: "Detects emails from nifty.com where the sender's local part matches a recipient's local part or organizational SLD, which has been observed in credential harvesting campaigns"
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and sender.email.domain.root_domain == "nifty.com"
8+
and (
9+
sender.email.local_part in map(recipients.to, .email.local_part)
10+
or sender.email.local_part in $org_slds
11+
)
12+
13+
and ml.nlu_classifier(body.current_thread.text).language != "japanese"
14+
15+
// and no false positives and not solicited
16+
and not profile.by_sender_email().any_messages_benign
17+
and not profile.by_sender_email().solicited
18+
19+
attack_types:
20+
- "Credential Phishing"
21+
tactics_and_techniques:
22+
- "Spoofing"
23+
detection_methods:
24+
- "Sender analysis"
25+
id: "370cfdac-4976-59a1-ae1f-7cd5594eb958"

0 commit comments

Comments
 (0)