Service abuse: Power Automate callback scam
Detects inbound messages sent from Power Automate's notification address where the message body is classified by an NLU model as containing callback scam intent with medium or high confidence, indicating abuse of the legitimate automation service to deliver callback scam content.
Sublime rule (View on GitHub)
1name: "Service abuse: Power Automate callback scam"
2description: "Detects inbound messages sent from Power Automate's notification address where the message body is classified by an NLU model as containing callback scam intent with medium or high confidence, indicating abuse of the legitimate automation service to deliver callback scam content."
3type: "rule"
4severity: "medium"
5source: |
6 type.inbound
7 and sender.email.email == "powerautomatenoreply@microsoft.com"
8 and any(ml.nlu_classifier(body.current_thread.text).intents,
9 .name == "callback_scam" and .confidence == "high"
10 )
11attack_types:
12 - "Callback Phishing"
13tactics_and_techniques:
14 - "Social engineering"
15detection_methods:
16 - "Natural Language Understanding"
17 - "Sender analysis"
18id: "756d3921-1a9f-5f06-bd74-029f7608da3e"