Detection rules › Sublime MQL
Brand impersonation: Aquent
Detects messages impersonating Aquent, a staffing and talent solutions company, by analyzing sender display names and body content for Aquent branding and office addresses from unauthorized domains.
Threat classification
Sublime's own taxonomy (not MITRE ATT&CK).
| Category | Values |
|---|---|
| Attack types | BEC/Fraud, Credential Phishing |
| Tactics and techniques | Impersonation: Brand, Social engineering |
Event coverage
Rule body MQL
type.inbound
and (
regex.icontains(sender.display_name, 'Aquent\b')
// look for Aquent address from footer, or current address being used by actors
or (
strings.icontains(body.current_thread.text, 'Aquent')
and (
(
strings.icontains(body.current_thread.text, '2884 Sand Hill Road')
and strings.icontains(body.current_thread.text, 'Menlo Park, CA 94025')
)
or (
strings.icontains(body.current_thread.text, '501 Boylston St')
and strings.icontains(body.current_thread.text, 'Boston, MA 02116')
)
)
)
)
and not (
sender.email.domain.root_domain in $org_domains
or (
sender.email.domain.root_domain in (
"aquent.com",
"dice.com",
"roberthalf.com",
"roberthalf.be",
"service-now.com",
"protiviti.com",
"atlassian.net",
"workday.com",
"myworkday.com",
"rapdev.io",
"immersivelabs.com",
"outsidegc.com"
)
and headers.auth_summary.dmarc.pass
)
)
// not a forward or reply
and (headers.in_reply_to is null or length(headers.references) == 0)
and not any(ml.nlu_classifier(body.current_thread.text).topics,
.name == "Advertising and Promotions" and .confidence != "low"
)
// negate instances where proofpoint sends a review of a reported message via analyzer
and not (
sender.email.email == "analyzer@analyzer.securityeducation.com"
and any(headers.domains, .root_domain == "pphosted.com")
and headers.auth_summary.spf.pass
and headers.auth_summary.dmarc.pass
)
Detection logic
Scope: inbound message.
Detects messages impersonating Aquent, a staffing and talent solutions company, by analyzing sender display names and body content for Aquent branding and office addresses from unauthorized domains.
- inbound message
any of:
- sender.display_name matches 'Aquent\\b'
all of:
- body.current_thread.text contains 'Aquent'
any of:
all of:
- body.current_thread.text contains '2884 Sand Hill Road'
- body.current_thread.text contains 'Menlo Park, CA 94025'
all of:
- body.current_thread.text contains '501 Boylston St'
- body.current_thread.text contains 'Boston, MA 02116'
none of:
- sender.email.domain.root_domain in $org_domains
all of:
- sender.email.domain.root_domain in ('aquent.com', 'dice.com', 'roberthalf.com', 'roberthalf.be', 'service-now.com', 'protiviti.com', 'atlassian.net', 'workday.com', 'myworkday.com', 'rapdev.io', 'immersivelabs.com', 'outsidegc.com')
- headers.auth_summary.dmarc.pass
any of:
- headers.in_reply_to is missing
- length(headers.references) is 0
not:
any of
ml.nlu_classifier(body.current_thread.text).topicswhere all hold:- .name is 'Advertising and Promotions'
- .confidence is not 'low'
not:
all of:
- sender.email.email is 'analyzer@analyzer.securityeducation.com'
any of
headers.domainswhere:- .root_domain is 'pphosted.com'
- headers.auth_summary.spf.pass
- headers.auth_summary.dmarc.pass
Inspects: body.current_thread.text, headers.auth_summary.dmarc.pass, headers.auth_summary.spf.pass, headers.domains, headers.domains[].root_domain, headers.in_reply_to, headers.references, sender.display_name, sender.email.domain.root_domain, sender.email.email, type.inbound. Sensors: ml.nlu_classifier, regex.icontains, strings.icontains. Reference lists: $org_domains.
Indicators matched (21)
| Field | Match | Value |
|---|---|---|
regex.icontains | regex | Aquent\b |
strings.icontains | substring | Aquent |
strings.icontains | substring | 2884 Sand Hill Road |
strings.icontains | substring | Menlo Park, CA 94025 |
strings.icontains | substring | 501 Boylston St |
strings.icontains | substring | Boston, MA 02116 |
sender.email.domain.root_domain | member | aquent.com |
sender.email.domain.root_domain | member | dice.com |
sender.email.domain.root_domain | member | roberthalf.com |
sender.email.domain.root_domain | member | roberthalf.be |
sender.email.domain.root_domain | member | service-now.com |
sender.email.domain.root_domain | member | protiviti.com |
9 more
sender.email.domain.root_domain | member | atlassian.net |
sender.email.domain.root_domain | member | workday.com |
sender.email.domain.root_domain | member | myworkday.com |
sender.email.domain.root_domain | member | rapdev.io |
sender.email.domain.root_domain | member | immersivelabs.com |
sender.email.domain.root_domain | member | outsidegc.com |
ml.nlu_classifier(body.current_thread.text).topics[].name | equals | Advertising and Promotions |
sender.email.email | equals | analyzer@analyzer.securityeducation.com |
headers.domains[].root_domain | equals | pphosted.com |