Service abuse: FlipHTML5 with attachment deception and credential theft language
Detects messages that reference attachments without including any, contain links to FlipHTML5 services, and exhibit high-confidence credential theft language patterns.
Sublime rule (View on GitHub)
1name: "Service abuse: FlipHTML5 with attachment deception and credential theft language"
2description: "Detects messages that reference attachments without including any, contain links to FlipHTML5 services, and exhibit high-confidence credential theft language patterns."
3type: "rule"
4severity: "medium"
5source: |
6 type.inbound
7 // messages contain wording to "see attached" but contains no attachments
8 and (
9 regex.icontains(body.current_thread.text,
10 "attached|see.*attached|find.*attached|please{0,10}attached"
11 )
12 and length(attachments) == 0
13 )
14 // and the link goes to fliphtml5 and contains suspect "click me" language
15 and any(body.links, .href_url.domain.root_domain == "fliphtml5.com")
16 // and we have confidence its cred theft
17 and any(ml.nlu_classifier(body.current_thread.text).intents,
18 .name == "cred_theft" and .confidence != "low"
19 )
20attack_types:
21 - "Credential Phishing"
22tactics_and_techniques:
23 - "Social engineering"
24 - "Free file host"
25 - "Evasion"
26detection_methods:
27 - "Content analysis"
28 - "Natural Language Understanding"
29 - "URL analysis"
30id: "02464799-4c4c-58e0-936f-41d8bcd7b276"