File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,22 +9,15 @@ source: |
99 length(recipients.to) == 1
1010 and recipients.to[0].email.email == sender.email.email
1111 )
12- and any(body.current_thread.links,
13- .href_url.domain.root_domain != sender.email.domain.root_domain
14- and any(ml.link_analysis(.).unique_urls_accessed,
15- .url == 'https://ipinfo.io/json'
16- )
17- and (
18- strings.icontains(ml.link_analysis(.).final_dom.raw,
19- 'Math.floor',
20- 'Math.random'
21- )
22- or (
23- ml.link_analysis(.).credphish.disposition == "phishing"
24- and ml.link_analysis(.).credphish.confidence in ("medium", "high")
25- )
12+ and 0 < length(body.current_thread.links) < 10
13+ and any(filter(body.current_thread.links,
14+ .href_url.domain.root_domain != sender.email.domain.root_domain
15+ ),
16+ any(ml.link_analysis(.).unique_urls_accessed,
17+ .url == 'https://ipinfo.io/json'
2618 )
2719 )
20+ and not headers.return_path.domain.root_domain == "salesforce.com"
2821attack_types :
2922 - " Credential Phishing"
3023tactics_and_techniques :
You can’t perform that action at this time.
0 commit comments