↳ GitHub sourceAnalytics ruleInformational
Netskope - Data Movement Tracking (Upload/Download Monitoring)
Description
Tracks file uploads and downloads, monitoring data movement direction, size, and destination. Provides visibility into data flow patterns.
- Rule type
- Scheduled
- Version
- 1.0.0
- Declared status
- Available
- Query frequency
- 1h
- Query period
- 1h
- Trigger
- gt 0
Declared MITRE coverage
Declared sources
Metadata from the source file. No dependencies inferred from KQL.
Connectors
Data types
KQL query
Original query, unchanged.
let significantSizeMB = 50;
NetskopeWebTransactions_CL
| where TimeGenerated > ago(1h)
| where isnotempty(CsUsername)
| where CsBytes > 0 or ScBytes > 0 or XRsFileSize > 0
| extend
Direction = case(
CsBytes > ScBytes, 'Upload',
ScBytes > CsBytes, 'Download',
'Unknown'),
TransferSize = max_of(CsBytes, ScBytes, XRsFileSize)
| summarize
TotalUploadBytes = sumif(CsBytes, Direction == 'Upload'),
TotalDownloadBytes = sumif(ScBytes, Direction == 'Download'),
UploadCount = countif(Direction == 'Upload'),
DownloadCount = countif(Direction == 'Download'),
UniqueFiles = dcount(XCsAppObjectName),
Files = make_set(XCsAppObjectName, 20),
FileTypes = make_set(XRsFileType),
Apps = make_set(XCsApp),
Destinations = make_set(CsHost, 20)
by CsUsername, XCDevice, XCCountry, bin(TimeGenerated, 1h)
| extend
TotalUploadMB = round(TotalUploadBytes / 1048576.0, 2),
TotalDownloadMB = round(TotalDownloadBytes / 1048576.0, 2),
TotalTransferMB = round((TotalUploadBytes + TotalDownloadBytes) / 1048576.0, 2)
| where TotalTransferMB > significantSizeMB
| extend DataFlowSummary = strcat('Upload: ', TotalUploadMB, ' MB (', UploadCount, ' ops), Download: ', TotalDownloadMB, ' MB (', DownloadCount, ' ops)')
| project
TimeGenerated,
User = CsUsername,
Device = XCDevice,
Country = XCCountry,
TotalUploadMB,
TotalDownloadMB,
TotalTransferMB,
UploadOperations = UploadCount,
DownloadOperations = DownloadCount,
UniqueFiles,
FilesSample = Files,
FileTypes,
Applications = Apps,
Destinations,
DataFlowSummary
Declared entities
Related content
Links established from declared identifiers and solution manifests.
Source provenance
GitHubDisplayed values come from files in Azure/Azure-Sentinel. They describe the published template, not your workspace configuration.
- Commit
9800e51↗- Source identifier
cf103180-cb81-4796-921d-3cc7eef4e817
GSTEP / CATALOG TRACKING
Added to catalog : 16 Sept 2026 · 05:49 UTC
Last change observed : 16 Sept 2026 · 05:49 UTC