add table to advanced hunting

This commit is contained in:
Joey Caparas 2018-03-20 14:47:55 -07:00
parent 5d9afa8cab
commit be83e453e3

View File

@ -154,4 +154,70 @@ The filter selections will resolve as an additional query term and the results w
## Public Advanced Hunting query GitHub repository
Check out the [Advanced Hunting repository](https://github.com/Microsoft/Advanced-Hunting-Queries). Contribute and use example queries shared by our customers.
## Advanced hunting table reference
| Column name | Column type | Description
:---|:--- |:---
| MachineId | string | Unique identifier for the machine in the service.
| ComputerName | string | Fully qualified domain name (FQDN) of the machine.
| EventTime | datetime | Date and time when the event was recorded.
| ActionType | string | Type of activity that triggered the event.
| ProviderId | | Unique identifier for the Event Tracing for Windows (ETW) provider that collected the event log.
| EventId | | Unique identifier used by Event Tracing for Windows (ETW) for the event type.
| EventType | string | Table where the record is stored.
| ReportIndex | | Event identifier that is unique among the same event type.
| FileName | string | Name of the file that the recorded action was applied to.
| SHA1 | string | SHA-1 of the file that the recorded action was applied to.
| SHA256 | string | SHA-256 of the file that the recorded action was applied to.
| MD5 | string | MD5 hash of the file that the recorded action was applied to.
| FolderPath | string | Folder containing the file that the recorded action was applied to.
| FileOriginUrl | string | URL where the file was downloaded from.
| FileOriginIp | string | IP address where the file was downloaded from.
| FileOriginReferrerUrl | string | URL of the web page that links to the downloaded file.
| InitiatingProcessId | int | Process ID (PID) of the process that initiated the event.
| InitiatingProcessCreationTime | datetime | Date and time when the process that initiated the event was started.
| InitiatingProcessFileName | string | Name of the process that initiated the event.
| InitiatingProcessSha256 | string | SHA-256 of the process (image file) that initiated the event.
| InitiatingProcessMd5 | string | MD5 hash of the process (image file) that initiated the event.
| InitiatingProcessSha1 | string | SHA-1 of the process (image file) that initiated the event.
| InitiatingProcessCommandLine | string | Path and command line arguments used to run the process that initiated the event.
| InitiatingProcessFolderPath | string | Folder containing the process (image file) that initiated the event.
| InitiatingProcessAccountDomain | string | Domain of the account that ran the process responsible for the event.
| InitiatingProcessAccountName | string | User name of the account that ran the process responsible for the event.
| InitiatingProcessAccountSid | string | Security Identifier (SID) of the account that ran the process responsible for the event.
| InitiatingProcessIntegrityLevel | string | Integrity level of the process that initiated the event. Windows assigns integrity levels to processes based on certain characteristics, such as if they were launched from an internet downloaded. These integrity levels influence permissions to resources.
| InitiatingProcessTokenElevation | string | Token type indicating the presence or absence of User Access Control (UAC) privilege elevation applied to the process that initiated the event.
| InitiatingProcessParentCreationTime | datetime | Date and time when the parent of the process responsible for the event was event was started.
| InitiatingProcessParentName | string | Name of the parent process that spawned the process responsible for the event.
| InitiatingProcessParentId | int | Process ID (PID) of the parent process that spawned the process responsible for the event.
| AdditionalFields | | Additional information about the event in JSON array format.
| AccountName | string | User name of the account.
| AccountDomain | string | Domain of the account.
| AccountSid | string | Security Identifier (SID) of the account.
| LogonType | string | Type of logon session, specifically: <br><br> - **Interactive** - User physically interacts with the machine using the local keyboard and screen.<br> <br> - **Remote interactive (RDP) logons** - User interacts with the machine remotely using Remote Desktop, Terminal Services, Remote Assistance, or other RDP clients. <br><br> - **Network** - Session initiated when the machine is accessed using PsExec or when shared resources on the machine, such as printers and shared folders, are accessed. <br><br> - **Batch** - Session initiated by scheduled tasks. <br><br> - **Service** - Session initiated by services as they start. <br>
| RemoteUrl | string | URL or fully qualified domain name (FQDN) that was being connected to.
| RemoteIP | string | IP address that was being connected to.
| RemotePort | int | TCP port on the remote device that was being connected to.
| LocalPort | int | TCP port on the local machine used during communication.
| LocalIP | string | IP address assigned to the local machine used during communication.
| ProcessCreationTime | datetime | Date and time the process was created.
| RegistryKey | string | Registry key that the recorded action was applied to.
| RegistryValueType | string | Data type, such as binary or string, of the registry value that the recorded action was applied to.
| RegistryValueName | string | Name of the registry value that the recorded action was applied to.
| RegistryValueData | string | Data of the registry value that the recorded action was applied to.
| PreviousRegistryKey | string | Original registry key of the registry value before it was modified.
| PreviousRegistryValueData | string | Original data of the registry value before it was modified.
| PreviousRegistryValueName | string | Original name of the registry value before it was modified.
| PreviousRegistryValueType | string | Original data type of the registry value before it was modified.
| ProcessCommandline | string | Path and command line arguments used to create the new process.
| ProcessIntegrityLevel | string | Integrity level of the newly created process. Windows assigns integrity levels to processes based on certain characteristics, such as if they were launched from an internet downloaded. These integrity levels influence permissions to resources.
| ProcessTokenElevation | string | Token type indicating the presence or absence of User Access Control (UAC) privilege elevation applied to the newly created process.
| ProcessId | int | Process ID (PID) of the newly created process.
| AlertId | string | Unique identifier for the alert.
| OSArchitecture | string | Architecture of the operating system running on the machine.
| OSPlatform | string | Platform of the operating system running on the machine. This indicates specific operating systems, including variations within the same family, such Windows 10 and Windows 7.
| OSBuild | string | Build version of the operating system running on the machine.
| NetworkCardIPs | string | List of all network adapters on the machine, including their MAC addresses and assigned IP addresses, in JSON array format.
| IsAzureADJoined | boolean | Boolean indicator of whether machine is joined to the Azure Active Directory.
| LoggedOnUsers | string | List of all users that are logged on the machine at the time of the event in JSON array format.
| MachineGroup | string | Machine group of the machine. This group is used by role-based access control to determine access to the machine.