Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dvtr 270 ticket changes #54

Open
wants to merge 2 commits into
base: VotiroSentinelSolutions
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ incidentConfiguration:
eventGroupingSettings:
aggregationKind: AlertPerResult
alertDetailsOverride:
alertDisplayNameFormat: File {{fileName}} with hash {{SrcFileSHA256}} was blocked
alertDescriptionFormat: The {{FileWithConnectorDetails}} was blocked by Votiro due to Policy {{policyName}}, see more detail in the following link {{incidentURL}}
alertDisplayNameFormat: File with hash {{SrcFileSHA256}} was blocked
alertDescriptionFormat: The {{FileWithConnectorDetails}} was blocked by Votiro due to Policy rules, see more detail in the following link {{incidentURL}}
alertTacticsColumnName: sanitizationResult
alertSeverityColumnName: LogSeverity
version: 1.0.0
version: 1.1.0
kind: Scheduled
6 changes: 3 additions & 3 deletions Solutions/Votiro/Analytic Rules/VotiroFileBlockedInEmail.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ incidentConfiguration:
eventGroupingSettings:
aggregationKind: AlertPerResult
alertDetailsOverride:
alertDisplayNameFormat: File {{fileName}} with hash {{SrcFileSHA256}} was blocked
alertDescriptionFormat: Attachment {{FileWithEmailDetails}} by Votiro due to Policy {{policyName}}, see more detail in the following link {{incidentURL}}
alertDisplayNameFormat: File with hash {{SrcFileSHA256}} was blocked
alertDescriptionFormat: Attachment {{FileWithEmailDetails}} by Votiro due to Policy rules, see more detail in the following link {{incidentURL}}
alertTacticsColumnName: sanitizationResult
alertSeverityColumnName: LogSeverity
version: 1.0.0
version: 1.1.0
kind: Scheduled
2 changes: 1 addition & 1 deletion Solutions/Votiro/Data Connectors/VotiroEvents.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{
"type": "IsConnectedQuery",
"value": [
"CommonSecurityLog\n| where DeviceVendor == \"Votiro\" and DeviceProduct == \"Votiro cloud\"\n| summarize LastLogReceived = max(TimeGenerated)\n| project IsConnected = LastLogReceived > ago(30d)"
"CommonSecurityLog\n| where DeviceVendor == \"Votiro\" and DeviceProduct == \"Votiro cloud\"\n| summarize LastLogReceived = max(TimeGenerated)\n| project IsConnected = LastLogReceived > ago(3d)"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion Solutions/Votiro/Data/Solution_Votiro.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Analytic Rules/VotiroFileBlockedInEmail.yaml"
],
"BasePath": "C:\\Github\\Azure-Sentinel\\Solutions\\Votiro",
"Version": "2.0.0",
"Version": "3.0.0",
"Metadata": "SolutionMetadata.json",
"TemplateSpec": true,
"Is1Pconnector": false
Expand Down
Binary file added Solutions/Votiro/Package/3.0.0.zip
Binary file not shown.
194 changes: 97 additions & 97 deletions Solutions/Votiro/Package/mainTemplate.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Solutions/Votiro/Workbooks/Votiro Monitoring Dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"type": 3,
"content": {
"version": "KqlItem/1.0",
"query": "VotiroEvents\n| where TimeGenerated {TimeRange}\n| summarize Count = count() by connectorType\n| where connectorType =~ \"File connector\" or connectorType =~ \"Email connector\"",
"query": "VotiroEvents\n| where TimeGenerated {TimeRange}\n| where ConnectorType == \"File connector\" or ConnectorType == \"Email connector\"\n | summarize Count = count() by ConnectorType\n",
"size": 3,
"title": "Incoming Traffic(Data Source)",
"queryType": 0,
Expand Down Expand Up @@ -128,7 +128,7 @@
"type": 3,
"content": {
"version": "KqlItem/1.0",
"query": "VotiroEvents\n| where TimeGenerated {TimeRange}\n| summarize Count=count() by sanitizationResult\n| where sanitizationResult in (\"Blocked\", \"Sanitized\", \"Partially sanitized\", \"Skipped\")\n",
"query": "VotiroEvents\n| where TimeGenerated {TimeRange}\n| where SanitizationResult != \"\"\n| where SanitizationResult in (\"Blocked\", \"Sanitized\", \"Partially sanitized\", \"Skipped\")\n | summarize Count=count() by SanitizationResult\n",
"size": 3,
"title": "Scanned Files(Threats)",
"queryType": 0,
Expand Down