Skip to content

Commit 0d703bc

Browse files
committed
Revert Awake
1 parent 81b3dfa commit 0d703bc

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
title: "Awake Security connector for Microsoft Sentinel"
3+
description: "Learn how to install the connector Awake Security to connect your data source to Microsoft Sentinel."
4+
author: cwatson-cat
5+
ms.topic: how-to
6+
ms.date: 04/26/2024
7+
ms.service: microsoft-sentinel
8+
ms.author: cwatson
9+
ms.collection: sentinel-data-connector
10+
---
11+
12+
# Awake Security connector for Microsoft Sentinel
13+
14+
The Awake Security CEF connector allows users to send detection model matches from the Awake Security Platform to Microsoft Sentinel. Remediate threats quickly with the power of network detection and response and speed up investigations with deep visibility especially into unmanaged entities including users, devices and applications on your network. The connector also enables the creation of network security-focused custom alerts, incidents, workbooks and notebooks that align with your existing security operations workflows.
15+
16+
This is autogenerated content. For changes, contact the solution provider.
17+
18+
## Connector attributes
19+
20+
| Connector attribute | Description |
21+
| --- | --- |
22+
| **Log Analytics table(s)** | CommonSecurityLog (AwakeSecurity)<br/> |
23+
| **Data collection rules support** | [Workspace transform DCR](/azure/azure-monitor/logs/tutorial-workspace-transformations-portal) |
24+
| **Supported by** | [Arista - Awake Security](https://awakesecurity.com/) |
25+
26+
## Query samples
27+
28+
**Top 5 Adversarial Model Matches by Severity**
29+
30+
```kusto
31+
union CommonSecurityLog
32+
33+
| where DeviceVendor == "Arista Networks" and DeviceProduct == "Awake Security"
34+
35+
| summarize TotalActivities=sum(EventCount) by Activity,LogSeverity
36+
37+
| top 5 by LogSeverity desc
38+
```
39+
40+
**Top 5 Devices by Device Risk Score**
41+
42+
```kusto
43+
CommonSecurityLog
44+
| where DeviceVendor == "Arista Networks" and DeviceProduct == "Awake Security"
45+
| extend DeviceCustomNumber1 = coalesce(column_ifexists("FieldDeviceCustomNumber1", long(null)), DeviceCustomNumber1, long(null))
46+
| summarize MaxDeviceRiskScore=max(DeviceCustomNumber1),TimesAlerted=count() by SourceHostName=coalesce(SourceHostName,"Unknown")
47+
| top 5 by MaxDeviceRiskScore desc
48+
```
49+
50+
51+
52+
## Vendor installation instructions
53+
54+
1. Linux Syslog agent configuration
55+
56+
Install and configure the Linux agent to collect your Common Event Format (CEF) Syslog messages and forward them to Microsoft Sentinel.
57+
58+
> Notice that the data from all regions will be stored in the selected workspace
59+
60+
1.1 Select or create a Linux machine
61+
62+
Select or create a Linux machine that Microsoft Sentinel will use as the proxy between your security solution and Microsoft Sentinel this machine can be on your on-prem environment, Azure or other clouds.
63+
64+
1.2 Install the CEF collector on the Linux machine
65+
66+
Install the Microsoft Monitoring Agent on your Linux machine and configure the machine to listen on the necessary port and forward messages to your Microsoft Sentinel workspace. The CEF collector collects CEF messages on port 514 TCP.
67+
68+
> 1. Make sure that you have Python on your machine using the following command: python -version.
69+
70+
> 2. You must have elevated permissions (sudo) on your machine.
71+
72+
Run the following command to install and apply the CEF collector:
73+
74+
`sudo wget -O cef_installer.py https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/DataConnectors/CEF/cef_installer.py&&sudo python cef_installer.py {0} {1}`
75+
76+
2. Forward Awake Adversarial Model match results to a CEF collector.
77+
78+
Perform the following steps to forward Awake Adversarial Model match results to a CEF collector listening on TCP port **514** at IP **192.168.0.1**:
79+
- Navigate to the Detection Management Skills page in the Awake UI.
80+
- Click + Add New Skill.
81+
- Set the Expression field to,
82+
>integrations.cef.tcp { destination: "192.168.0.1", port: 514, secure: false, severity: Warning }
83+
- Set the Title field to a descriptive name like,
84+
>Forward Awake Adversarial Model match result to Microsoft Sentinel.
85+
- Set the Reference Identifier to something easily discoverable like,
86+
>integrations.cef.sentinel-forwarder
87+
- Click Save.
88+
89+
Note: Within a few minutes of saving the definition and other fields the system will begin sending new model match results to the CEF events collector as they are detected.
90+
91+
For more information, refer to the **Adding a Security Information and Event Management Push Integration** page from the Help Documentation in the Awake UI.
92+
93+
3. Validate connection
94+
95+
Follow the instructions to validate your connectivity:
96+
97+
Open Log Analytics to check if the logs are received using the CommonSecurityLog schema.
98+
99+
>It may take about 20 minutes until the connection streams data to your workspace.
100+
101+
If the logs are not received, run the following connectivity validation script:
102+
103+
> 1. Make sure that you have Python on your machine using the following command: python -version
104+
105+
>2. You must have elevated permissions (sudo) on your machine
106+
107+
Run the following command to validate your connectivity:
108+
109+
`sudo wget -O cef_troubleshoot.py https://raw.githubusercontent.com/Azure/Azure-Sentinel/master/DataConnectors/CEF/cef_troubleshoot.py&&sudo python cef_troubleshoot.py {0}`
110+
111+
4. Secure your machine
112+
113+
Make sure to configure the machine's security according to your organization's security policy
114+
115+
116+
[Learn more >](https://aka.ms/SecureCEF)
117+
118+
119+
120+
## Next steps
121+
122+
For more information, go to the [related solution](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/arista-networks.awake-security?tab=Overview) in the Azure Marketplace.

0 commit comments

Comments
 (0)