type.inbound
and any(ml.nlu_classifier(body.current_thread.text).intents,
.name in ("cred_theft", "bec") and .confidence in ("medium", "high")
)
// templated ai-generated comments
and any(html.xpath(body.html, '//comment()').nodes,
regex.icontains(.raw,
'PDF icon|File row|Status \+ Reference|Billing Table|Invoice Info|CTA Button'
)
)
// negate highly trusted sender domains unless they fail DMARC authentication
and not (
sender.email.domain.root_domain in $high_trust_sender_root_domains
and coalesce(headers.auth_summary.dmarc.pass, false)
)
Playground
Test against your own EMLs or sample data.