Skip to content

Commit cbe5ea1

Browse files
authored
Merge branch 'main' into docs-editor/android-whatsnew-1731648553
2 parents 201aae3 + bbeeebf commit cbe5ea1

File tree

5 files changed

+100
-2
lines changed

5 files changed

+100
-2
lines changed

.acrolinx-config.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:changed-files-limit 60
22
:allowed-branchname-matches ["main" "release-.*"]
3-
:allowed-filename-matches ["ATADocs/" "CloudAppSecurityDocs/" "exposure-management/" "defender/" "defender-business/" "defender-endpoint/" "defender-for-cloud/" "defender-for-iot/" "defender-office-365/" "defender-vulnerability-management/" "defender-xdr/"] ;; Can be overridden in repo-specific edn file. This is an allow list that identifies which folders contain the files Acrolinx will check. Separate multiple folders as follows ["folder/" "folder2"]
3+
:allowed-filename-matches ["ATADocs/" "CloudAppSecurityDocs/" "defender/" "defender-business/" "defender-endpoint/" "defender-for-cloud/" "defender-for-iot/" "defender-office-365/" "defender-vulnerability-management/" "defender-xdr/" "exposure-management/" "unified-secops-platform/"] ;; Can be overridden in repo-specific edn file. This is an allow list that identifies which folders contain the files Acrolinx will check. Separate multiple folders as follows ["folder/" "folder2"]
44

55
:use-gh-statuses true
66

defender-xdr/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,8 @@
302302
href: advanced-hunting-cloudappevents-table.md
303303
- name: CloudAuditEvents
304304
href: advanced-hunting-cloudauditevents-table.md
305+
- name: CloudProcessEvents
306+
href: advanced-hunting-cloudprocessevents-table.md
305307
- name: DeviceEvents
306308
href: advanced-hunting-deviceevents-table.md
307309
- name: DeviceFileCertificateInfo
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
---
2+
title: CloudProcessEvents table in the advanced hunting schema
3+
description: Learn about the CloudProcessEvents table in the advanced hunting schema, which contains information about process events in multicloud hosted environments.
4+
search.appverid: met150
5+
ms.service: defender-xdr
6+
ms.subservice: adv-hunting
7+
f1.keywords:
8+
- NOCSH
9+
ms.author: maccruz
10+
author: schmurky
11+
ms.localizationpriority: medium
12+
manager: dansimp
13+
audience: ITPro
14+
ms.collection:
15+
- m365-security
16+
- tier3
17+
ms.custom:
18+
- cx-ti
19+
- cx-ah
20+
ms.topic: reference
21+
ms.date: 11/11/2024
22+
---
23+
24+
# CloudProcessEvents (Preview)
25+
26+
[!INCLUDE [Microsoft Defender XDR rebranding](../includes/microsoft-defender.md)]
27+
28+
**Applies to:**
29+
- Microsoft Defender XDR
30+
31+
The `CloudProcessEvents` table in the [advanced hunting](advanced-hunting-overview.md) schema contains information about process events in multicloud hosted environments such as Azure Kubernetes Service, Amazon Elastic Kubernetes Service, and Google Kubernetes Engine. Use this reference to construct queries that return information from this table.
32+
33+
> [!IMPORTANT]
34+
> Some information relates to prereleased product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
35+
36+
For information on other tables in the advanced hunting schema, [see the advanced hunting reference](advanced-hunting-schema-tables.md).
37+
38+
| Column name | Data type | Description |
39+
|-------------|-----------|-------------|
40+
| `Timestamp` | `datetime` | Date and time when the event was recorded |
41+
| `AzureResourceId` | `string` | Unique identifier of the Azure resource associated with the process |
42+
| `AwsResourceName` | `string` | Unique identifier specific to Amazon Web Services devices, containing the Amazon resource name|
43+
| `GcpFullResourceName` | `string` | Unique identifier specific to Google Cloud Platform devices, containing a combination of zone and ID for GCP |
44+
| `ContainerImageName` | `string` | UThe container image name or ID, if it exists |
45+
| `KubernetesNamespace` | `string` | The Kubernetes namespace name |
46+
| `KubernetesPodName` | `string` | The Kubernetes pod name |
47+
| `KubernetesResource` | `string` | Identifier value that includes namespace, resource type and name |
48+
| `ContainerName` | `string` | Name of the container in Kubernetes or another runtime environment |
49+
| `ContainerId` | `string` | The container identifier in Kubernetes or another runtime environment|
50+
| `ActionType` | `string` | Type of activity that triggered the event. See the in-portal schema reference for details.|
51+
| `FileName` | `string` | Name of the file that the recorded action was applied to |
52+
| `FolderPath` | `string` | Folder containing the file that the recorded action was applied to|
53+
| `ProcessId` | `long` | Process ID (PID) of the newly created process |
54+
| `ProcessName` | `string` | The name of the process |
55+
| `ParentProcessName` | `string` | The name of the parent process |
56+
| `ParentProcessId` | `string` | The process ID (PID) of the parent process|
57+
| `ProcessCommandLine` | `string` | Command line used to create the new process|
58+
| `ProcessCreationTime` | `datetime` | Date and time the process was created |
59+
| `ProcessCurrentWorkingDirectory` | `string` | Current working directory of the running process |
60+
| `AccountName` | `string` | User name of the account |
61+
| `LogonId` | `long` | Identifier for a logon session. This identifier is unique on the same pod or container between restarts. |
62+
| `InitiatingProcessId` | `string` | Process ID (PID) of the process that initiated the event |
63+
| `AdditionalFields` | `string` | Additional information about the event in JSON array format |
64+
65+
66+
## Sample queries
67+
68+
You can use this table to get detailed information on processes invoked in a cloud environment. The information is useful in hunting scenarios and can discover threats that can be observed through process details, like malicious processes or command-line signatures.
69+
70+
You can also investigate security alerts provided by Defender for Cloud that make use of the cloud process events data in advanced hunting to understand details in the process tree for processes that include a security alert.
71+
72+
### Process events by command-line arguments
73+
To hunt for process events including a given term (represented by "x" in the query below) in the command-line arguments:
74+
75+
```kusto
76+
CloudProcessEvents | where ProcessCommandLine has "x"
77+
```
78+
79+
### Rare process events for a pod in a Kuberentes cluster
80+
To investigate unusual process events invoked as part of a pod in a Kubernetes cluster:
81+
82+
```kusto
83+
CloudProcessEvents | where AzureResourceId = "x" and KubernetesNamespace = "y" and KubernetesPodName = "z" | summarize count() by ProcessName | top 10 by count_ asc
84+
```
85+
86+
## Related topics
87+
88+
- [Advanced hunting overview](advanced-hunting-overview.md)
89+
- [Learn the query language](advanced-hunting-query-language.md)
90+
- [Use shared queries](advanced-hunting-shared-queries.md)
91+
- [Hunt across devices, emails, apps, and identities](advanced-hunting-query-emails-devices.md)
92+
- [Understand the schema](advanced-hunting-schema-tables.md)
93+
- [Apply query best practices](advanced-hunting-best-practices.md)
94+

defender-xdr/advanced-hunting-schema-tables.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ The following reference lists all the tables in the schema. Each table name link
6161
| **[BehaviorEntities](advanced-hunting-behaviorentities-table.md)** (Preview) | Behavior data types in Microsoft Defender for Cloud Apps (not available for GCC) |
6262
| **[BehaviorInfo](advanced-hunting-behaviorinfo-table.md)** (Preview) | Alerts from Microsoft Defender for Cloud Apps (not available for GCC) |
6363
| **[CloudAppEvents](advanced-hunting-cloudappevents-table.md)** | Events involving accounts and objects in Office 365 and other cloud apps and services |
64-
| **[CloudAuditEvents](advanced-hunting-cloudauditevents-table.md)** | Cloud audit events for various cloud platforms protected by the organization's Microsoft Defender for Cloud |
64+
| **[CloudAuditEvents](advanced-hunting-cloudauditevents-table.md)** (Preview) | Cloud audit events for various cloud platforms protected by the organization's Microsoft Defender for Cloud |
65+
| **[CloudProcessEvents](advanced-hunting-cloudprocessevents-table.md)** (Preview)| Cloud process events for various cloud platforms protected by the organization's Microsoft Defender for Containers |
6566
| **[DeviceEvents](advanced-hunting-deviceevents-table.md)** | Multiple event types, including events triggered by security controls such as Microsoft Defender Antivirus and exploit protection |
6667
| **[DeviceFileCertificateInfo](advanced-hunting-DeviceFileCertificateInfo-table.md)** | Certificate information of signed files obtained from certificate verification events on endpoints |
6768
| **[DeviceFileEvents](advanced-hunting-devicefileevents-table.md)** | File creation, modification, and other file system events |

defender-xdr/whats-new.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ You can also get product updates and important notifications through the [messag
3131

3232
## November 2024
3333
- (GA) The `arg()` operator in [advanced hunting](advanced-hunting-defender-use-custom-rules.md#use-arg-operator-for-azure-resource-graph-queries) in Microsoft Defender portal is now generally available. Users can now use the *arg()* operator for Azure Resource Graph queries to search over Azure resources, and no longer need to go to Log Analytics in Microsoft Sentinel to use this operator if already in Microsoft Defender.
34+
- (Preview) The [CloudProcessEvents](advanced-hunting-cloudprocessevents-table.md) table is now available for preview in advanced hunting. It contains information about process events in multicloud hosted environments. You can use it to discover threats that can be observed through process details, like malicious processes or command-line signatures.
3435

3536
## October 2024
3637

0 commit comments

Comments
 (0)