Microsoft Sentinel Analytic Rules
cloudbrothers.infoAzure Sentinel RepoToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

SlackAudit - Multiple archived files uploaded in short period of time

Back
Id3db0cb83-5fa4-4310-a8a0-d8d66183f0bd
RulenameSlackAudit - Multiple archived files uploaded in short period of time
DescriptionThis query helps to detect when a user uploads multiple archived files in short period of time.
SeverityLow
TacticsExfiltration
TechniquesT1567
Required data connectorsSlackAuditAPI
KindScheduled
Query frequency1d
Query period1d
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/SlackAudit/Analytic Rules/SlackAuditMultipleArchivedFilesUploadedInShortTimePeriod.yaml
Version1.0.0
Arm template3db0cb83-5fa4-4310-a8a0-d8d66183f0bd.json
Deploy To Azure
let threshold = 10;
SlackAudit
| where DvcAction =~ 'file_uploaded'
| extend FE = extract(@'.*\.(.*)$', 1, EntityFileName)
| where FE in~ ('tar', 'bz2', 'gz', 'tgz', 'Z', 'tbz2', 'zst', 'zip', 'zipx', '7z', 'rar', 'sfx')
| summarize count() by SrcUserName, bucket = bin(TimeGenerated, 15m)
| where count_ > threshold
| extend AccountCustomEntity = SrcUserName
queryPeriod: 1d
query: |
  let threshold = 10;
  SlackAudit
  | where DvcAction =~ 'file_uploaded'
  | extend FE = extract(@'.*\.(.*)$', 1, EntityFileName)
  | where FE in~ ('tar', 'bz2', 'gz', 'tgz', 'Z', 'tbz2', 'zst', 'zip', 'zipx', '7z', 'rar', 'sfx')
  | summarize count() by SrcUserName, bucket = bin(TimeGenerated, 15m)
  | where count_ > threshold
  | extend AccountCustomEntity = SrcUserName  
name: SlackAudit - Multiple archived files uploaded in short period of time
entityMappings:
- fieldMappings:
  - columnName: AccountCustomEntity
    identifier: FullName
  entityType: Account
queryFrequency: 1d
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/SlackAudit/Analytic Rules/SlackAuditMultipleArchivedFilesUploadedInShortTimePeriod.yaml
requiredDataConnectors:
- connectorId: SlackAuditAPI
  dataTypes:
  - SlackAudit_CL
description: |
    'This query helps to detect when a user uploads multiple archived files in short period of time.'
kind: Scheduled
version: 1.0.0
status: Available
severity: Low
relevantTechniques:
- T1567
triggerOperator: gt
triggerThreshold: 0
tactics:
- Exfiltration
id: 3db0cb83-5fa4-4310-a8a0-d8d66183f0bd