Detection rules › Panther
Carbon Black Data Forwarder Stopped
Detects when a user disables or deletes a Data Forwarder.
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Stealth | T1562.008 Impair Defenses: Disable or Modify Cloud Logs |
Rule body yaml
AnalysisType: rule
RuleID: "CarbonBlack.Audit.Data.Forwarder.Stopped"
LogTypes:
- CarbonBlack.Audit
Description: "Detects when a user disables or deletes a Data Forwarder."
DisplayName: "Carbon Black Data Forwarder Stopped"
Enabled: true
Filename: cb_audit_data_forwarder_stopped.py
Severity: High
Tags:
- Defense Evasion
- Impair Defenses
- Disable or Modify Cloud Logs
Reports:
MITRE ATT&CK:
- TA0005:T1562.008
Reference: https://docs.vmware.com/en/VMware-Carbon-Black-Cloud/services/carbon-black-cloud-user-guide/GUID-E8D33F72-BABB-4157-A908-D8BBDB5AF349.html
Threshold: 1
DedupPeriodMinutes: 60
Tests:
- Name: Endpoint event forwarder disabled
ExpectedResult: true
Log:
{
"clientIp": "12.34.56.78",
"description": "Updated Config: {\"id\":\"b6ab1fb9-61f6-11ee-9e9b-5655adf4bf96\",\"org_key\":\"A1234567\",\"name\":\"endpoint event\",\"enabled\":false,\"s3_bucket_name\":\"carbonblackbucket\",\"s3_prefix\":\"endpoint\",\"type\":\"endpoint.event\",\"create_time\":\"2023-10-03T14:11:14Z\",\"update_time\":\"2023-11-14T19:16:43Z\"}\n",
"eventId": "58bef441832211ee83ef1721d866b8d6",
"eventTime": "2023-11-14 19:16:43.123000000",
"flagged": false,
"loginName": "bob.ross@acme.com",
"orgName": "bob.ross@acme.com",
"requestUrl": "/data_forwarder/v2/orgs/A1234567/configs/b6ab1fb9-61f6-11ee-9e9b-5655adf4bf96",
"verbose": false,
}
- Name: Endpoint event forwarder updated
ExpectedResult: false
Log:
{
"clientIp": "12.34.56.78",
"description": "Updated Config: {\"id\":\"b6ab1fb9-61f6-11ee-9e9b-5655adf4bf96\",\"org_key\":\"A1234567\",\"name\":\"endpoint event\",\"enabled\":true,\"s3_bucket_name\":\"carbonblackbucket\",\"s3_prefix\":\"endpoint\",\"type\":\"endpoint.event\",\"create_time\":\"2023-10-03T14:11:14Z\",\"update_time\":\"2023-11-14T19:16:43Z\"}\n",
"eventId": "58bef441832211ee83ef1721d866b8d6",
"eventTime": "2023-11-14 19:16:43.123000000",
"flagged": false,
"loginName": "bob.ross@acme.com",
"orgName": "bob.ross@acme.com",
"requestUrl": "/data_forwarder/v2/orgs/A1234567/configs/b6ab1fb9-61f6-11ee-9e9b-5655adf4bf96",
"verbose": false,
}
Detection logic
Condition
requestUrl starts_with "/data_forwarder/"
description starts_with "Deleted Config: " or (description starts_with "Updated Config: " and description contains "\"enabled\":false")
This rule also runs imperative logic the parser cannot express as a filter; the conditions above are the structured part it could extract.
Indicators
Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.
| Field | Kind | Values |
|---|---|---|
description | contains |
|
description | starts_with |
|
requestUrl | starts_with |
|
Output fields
Fields the rule emits when it matches. Chronicle authors list these in the outcome block; they appear on the detection and $risk_score drives alerting. Sentinel / Defender XDR rules build them up through project / summarize / extend stages. Sentinel maps these into alert fields via entityMappings and customDetails; Defender XDR custom detections surface them as alert fields directly.
| Field |
|---|
loginName |
clientIp |