Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Solutions/Dragos/Analytic Rules/DragosNotifiction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ alertDetailsOverride:
- alertProperty: ProductName
value: AlertProductName
customDetails:
DragosNotificationId: id
DragosIdentifier: id
DragosSeverity: severity
DragosDetectionQuads: detectionQuads
DragosCreatedAt: createdAt
Expand All @@ -60,6 +60,6 @@ incidentConfiguration:
lookbackDuration: PT1H
matchingMethod: Selected
groupByCustomDetails:
- DragosNotificationId
version: 1.0.0
- DragosIdentifier
version: 1.0.1
kind: Scheduled
Binary file modified Solutions/Dragos/Package/3.0.0.zip
Binary file not shown.
60 changes: 30 additions & 30 deletions Solutions/Dragos/Package/mainTemplate.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FunctionQuery: |
let existingIncidents = SecurityAlert
| where ProductName == "Dragos"
| extend CustomDetails=tostring(parse_json(ExtendedProperties)["Custom Details"])
| extend id = toint(extract_json("$.DragosNotificationId[0]", CustomDetails))
| extend id = toint(extract_json("$.DragosIdentifier[0]", CustomDetails))
| project-keep SystemAlertId, id;
union isfuzzy=true DragosPushNotificationsToSentinel, DragosPullNotificationsToSentinel
| join kind=leftouter (existingIncidents) on id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FunctionQuery: |
let existingIncidents = SecurityAlert
| where ProductName == "Dragos"
| extend CustomDetails=tostring(parse_json(ExtendedProperties)["Custom Details"])
| extend id = toint(extract_json("$.DragosNotificationId[0]", CustomDetails))
| extend id = toint(extract_json("$.DragosIdentifier[0]", CustomDetails))
| project-keep SystemAlertId, id;
DragosAlerts_CL
| extend detectionQuads=strcat_array(detectionQuads, ",")
Expand Down
2 changes: 1 addition & 1 deletion Solutions/Dragos/SolutionMetadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"publisherId": "dragosinc1734451815609",
"offerId": "azure-sentinel-solution-dragos",
"offerId": "microsoft-sentinel-solution-dragos",
"firstPublishDate": "2025-01-23",
"lastPublishDate": "2025-01-23",
"providers": [
Expand Down
Loading