High Severity
Link: Microsoft Dynamics 365 form phishing
Description
Email body is suspicious, and links to a Microsoft Dynamics form. Known phishing tactic.
Sublime Security
Created Aug 17th, 2023 • Last updated Nov 14th, 2024
Feed Source
Sublime Core Feed
Source
type.inbound
and any(body.links,
.href_url.domain.domain in ("ncv.microsoft.com", "customervoice.microsoft.com")
and ml.link_analysis(.).effective_url.domain.domain == "customervoice.microsoft.com"
// confirm it is a form
and (
any(ml.link_analysis(.).final_dom.links,
.href_url.domain.domain == "cdn.forms.office.net"
)
or strings.icontains(ml.link_analysis(.).final_dom.raw,
"cdn.forms.office.net"
)
)
// analyze for credential phishing signals
and (
any(file.explode(ml.link_analysis(.).screenshot),
any(ml.nlu_classifier(.scan.ocr.raw).intents,
.name == "cred_theft" and .confidence != "low"
)
)
or any(ml.nlu_classifier(body.current_thread.text).intents,
.name == "cred_theft" and .confidence != "low"
)
)
)
and (
not profile.by_sender().solicited
or (
profile.by_sender().any_messages_malicious_or_spam
and not profile.by_sender().any_false_positives
)
)
and not profile.by_sender().any_false_positives
// negate highly trusted sender domains unless they fail DMARC authentication
and (
(
sender.email.domain.root_domain in $high_trust_sender_root_domains
and not headers.auth_summary.dmarc.pass
)
or sender.email.domain.root_domain not in $high_trust_sender_root_domains
)
Playground
Test against your own EMLs or sample data.