Skip to content

Commit ede00ab

Browse files
committed
Add changes from upstream source to existing files
1 parent 75deede commit ede00ab

File tree

144 files changed

+836
-247
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+836
-247
lines changed

articles/sentinel/data-connectors/ai-vectra-stream.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "AI Vectra Stream connector for Microsoft Sentinel"
33
description: "Learn how to install the connector AI Vectra Stream to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 02/23/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
The AI Vectra Stream connector allows to send Network Metadata collected by Vectra Sensors accross the Network and Cloud to Microsoft Sentinel
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ The AI Vectra Stream connector allows to send Network Metadata collected by Vect
2325
## Query samples
2426

2527
**List all DNS Queries**
28+
2629
```kusto
2730
VectraStream
2831
@@ -32,6 +35,7 @@ VectraStream
3235
```
3336

3437
**Number of DNS requests per type**
38+
3539
```kusto
3640
VectraStream
3741
@@ -41,6 +45,7 @@ VectraStream
4145
```
4246

4347
**Top 10 of query to non existing domain**
48+
4449
```kusto
4550
VectraStream
4651
@@ -56,6 +61,7 @@ VectraStream
5661
```
5762

5863
**Host and Web sites using non-ephemeral Diffie-Hellman key exchange**
64+
5965
```kusto
6066
VectraStream
6167

articles/sentinel/data-connectors/aishield.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "AIShield connector for Microsoft Sentinel"
33
description: "Learn how to install the connector AIShield to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 02/23/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
[AIShield](https://www.boschaishield.com/) connector allows users to connect with AIShield custom defense mechanism logs with Microsoft Sentinel, allowing the creation of dynamic Dashboards, Workbooks, Notebooks and tailored Alerts to improve investigation and thwart attacks on AI systems. It gives users more insight into their organization's AI assets security posturing and improves their AI systems security operation capabilities.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,13 +25,15 @@ ms.author: cwatson
2325
## Query samples
2426

2527
**Get all incidents order by time**
28+
2629
```kusto
2730
AIShield
2831
2932
| order by TimeGenerated desc
3033
```
3134

3235
**Get high risk incidents**
36+
3337
```kusto
3438
AIShield
3539

articles/sentinel/data-connectors/amazon-web-services-s3.md

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Amazon Web Services S3 connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Amazon Web Services S3 to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 04/16/2024
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -18,6 +18,8 @@ This connector allows you to ingest AWS service logs, collected in AWS S3 bucket
1818

1919
For more information, see the [Microsoft Sentinel documentation](https://go.microsoft.com/fwlink/p/?linkid=2218883&wt.mc_id=sentinel_dataconnectordocs_content_cnl_csasci).
2020

21+
This is autogenerated content. For changes, contact the solution provider.
22+
2123
## Connector attributes
2224

2325
| Connector attribute | Description |
@@ -26,6 +28,60 @@ For more information, see the [Microsoft Sentinel documentation](https://go.micr
2628
| **Data collection rules support** | [Supported as listed](/azure/azure-monitor/logs/tables-feature-support) |
2729
| **Supported by** | [Microsoft Corporation](https://support.microsoft.com) |
2830

31+
## Query samples
32+
33+
**High severity findings summarized by activity type**
34+
35+
```kusto
36+
AWSGuardDuty
37+
38+
| where Severity > 7
39+
40+
| summarize count() by ActivityType
41+
```
42+
43+
**Top 10 rejected actions of type IPv4**
44+
45+
```kusto
46+
AWSVPCFlow
47+
48+
| where Action == "REJECT"
49+
50+
| where Type == "IPv4"
51+
52+
| take 10
53+
```
54+
55+
**User creation events summarized by region**
56+
57+
```kusto
58+
AWSCloudTrail
59+
60+
| where EventName == "CreateUser"
61+
62+
| summarize count() by AWSRegion
63+
```
64+
65+
66+
67+
## Prerequisites
68+
69+
To integrate with Amazon Web Services S3 make sure you have:
70+
71+
- **Environment**: you must have the following AWS resources defined and configured: S3, Simple Queue Service (SQS), IAM roles and permissions policies, and the AWS services whose logs you want to collect.
72+
73+
74+
## Vendor installation instructions
75+
76+
1. Set up your AWS environment
77+
78+
The​re are two options for setting up your AWS environment to send logs from an S3 bucket to your Log Analytics Workspace:
79+
80+
81+
2. Add connection
82+
83+
84+
2985

3086
## Next steps
3187

articles/sentinel/data-connectors/amazon-web-services.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Amazon Web Services connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Amazon Web Services to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 03/02/2024
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
Follow these instructions to connect to AWS and stream your CloudTrail logs into Microsoft Sentinel. For more information, see the [Microsoft Sentinel documentation](https://go.microsoft.com/fwlink/p/?linkid=2218883&wt.mc_id=sentinel_dataconnectordocs_content_cnl_csasci).
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |

articles/sentinel/data-connectors/apache-http-server.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Apache HTTP Server connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Apache HTTP Server to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 06/22/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
The Apache HTTP Server data connector provides the capability to ingest [Apache HTTP Server](http://httpd.apache.org/) events into Microsoft Sentinel. Refer to [Apache Logs documentation](https://httpd.apache.org/docs/2.4/logs.html) for more information.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ The Apache HTTP Server data connector provides the capability to ingest [Apache
2325
## Query samples
2426

2527
**Top 10 Clients (Source IP)**
28+
2629
```kusto
2730
ApacheHTTPServer
2831

articles/sentinel/data-connectors/apache-tomcat.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Apache Tomcat connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Apache Tomcat to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 06/22/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
The Apache Tomcat solution provides the capability to ingest [Apache Tomcat](http://tomcat.apache.org/) events into Microsoft Sentinel. Refer to [Apache Tomcat documentation](http://tomcat.apache.org/tomcat-10.0-doc/logging.html) for more information.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ The Apache Tomcat solution provides the capability to ingest [Apache Tomcat](htt
2325
## Query samples
2426

2527
**Top 10 Clients (Source IP)**
28+
2629
```kusto
2730
TomcatEvent
2831

articles/sentinel/data-connectors/api-protection.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "API Protection connector for Microsoft Sentinel"
33
description: "Learn how to install the connector API Protection to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 02/23/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
Connects the 42Crunch API protection to Azure Log Analytics via the REST API interface
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ Connects the 42Crunch API protection to Azure Log Analytics via the REST API int
2325
## Query samples
2426

2527
**API requests that were rate-limited**
28+
2629
```kusto
2730
apifirewall_log_1_CL
2831
@@ -32,6 +35,7 @@ apifirewall_log_1_CL
3235
```
3336

3437
**API requests generating a server error**
38+
3539
```kusto
3640
apifirewall_log_1_CL
3741
@@ -41,6 +45,7 @@ apifirewall_log_1_CL
4145
```
4246

4347
**API requests failing JWT validation**
48+
4449
```kusto
4550
apifirewall_log_1_CL
4651

articles/sentinel/data-connectors/argos-cloud-security.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "ARGOS Cloud Security connector for Microsoft Sentinel"
33
description: "Learn how to install the connector ARGOS Cloud Security to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 07/26/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
The ARGOS Cloud Security integration for Microsoft Sentinel allows you to have all your important cloud security events in one place. This enables you to easily create dashboards, alerts, and correlate events across multiple systems. Overall this will improve your organization's security posture and security incident response.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,20 +25,23 @@ The ARGOS Cloud Security integration for Microsoft Sentinel allows you to have a
2325
## Query samples
2426

2527
**Display all exploitable ARGOS Detections.**
28+
2629
```kusto
2730
ARGOS_CL
2831
2932
| where exploitable_b
3033
```
3134

3235
**Display all open, exploitable ARGOS Detections on Azure.**
36+
3337
```kusto
3438
ARGOS_CL
3539
3640
| where exploitable_b and cloud_s == 'azure' and status_s == 'open'
3741
```
3842

3943
**Display all open, exploitable ARGOS Detections on Azure.**
44+
4045
```kusto
4146
ARGOS_CL
4247
@@ -46,6 +51,7 @@ ARGOS_CL
4651
```
4752

4853
**Render a time chart with all open ARGOS Detections on Azure.**
54+
4955
```kusto
5056
ARGOS_CL
5157
@@ -57,6 +63,7 @@ ARGOS_CL
5763
```
5864

5965
**Display Top 10, open, exploitable ARGOS Detections on Azure.**
66+
6067
```kusto
6168
ARGOS_CL
6269

articles/sentinel/data-connectors/atlassian-beacon-alerts.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Atlassian Beacon Alerts connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Atlassian Beacon Alerts to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 11/29/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
Atlassian Beacon is a cloud product that is built for Intelligent threat detection across the Atlassian platforms (Jira, Confluence, and Atlassian Admin). This can help users detect, investigate and respond to risky user activity for the Atlassian suite of products. The solution is a custom data connector from DEFEND Ltd. that is used to visualize the alerts ingested from Atlassian Beacon to Microsoft Sentinel via a Logic App.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ Atlassian Beacon is a cloud product that is built for Intelligent threat detecti
2325
## Query samples
2426

2527
**Atlassian Beacon Alerts**
28+
2629
```kusto
2730
atlassian_beacon_alerts_CL
2831
| sort by TimeGenerated desc

articles/sentinel/data-connectors/automated-logic-webctrl.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Automated Logic WebCTRL connector for Microsoft Sentinel"
33
description: "Learn how to install the connector Automated Logic WebCTRL to connect your data source to Microsoft Sentinel."
44
author: cwatson-cat
55
ms.topic: how-to
6-
ms.date: 02/23/2023
6+
ms.date: 04/25/2024
77
ms.service: microsoft-sentinel
88
ms.author: cwatson
99
---
@@ -12,6 +12,8 @@ ms.author: cwatson
1212

1313
You can stream the audit logs from the WebCTRL SQL server hosted on Windows machines connected to your Microsoft Sentinel. This connection enables you to view dashboards, create custom alerts and improve investigation. This gives insights into your Industrial Control Systems that are monitored or controlled by the WebCTRL BAS application.
1414

15+
This is autogenerated content. For changes, contact the solution provider.
16+
1517
## Connector attributes
1618

1719
| Connector attribute | Description |
@@ -23,6 +25,7 @@ You can stream the audit logs from the WebCTRL SQL server hosted on Windows mach
2325
## Query samples
2426

2527
**Total warnings and errors raised by the application**
28+
2629
```kusto
2730
Event
2831

0 commit comments

Comments
 (0)