Microsoft Sentinel high experimental kql

Tape Erase Job Started

Detects when tape erase operations start. This might indicate data destruction activity.

View Source

Detection Logic

Veeam_GetSecurityEvents
| where instanceId == 115
| extend JobName = extract("JobName=\"([^\"]*)\"", 1, SyslogMessage)
| project
    Date = format_datetime(TimeGenerated, 'dd.MM.yyyy HH:mm'),
    DataSource = original_host,
    EventId = instanceId,
    ["Job Name"] = JobName,
    MessageDetails = Description,
    Severity = SeverityDescription

Field Validations

Loading…

Comments (0)

Loading comments...