↳ Source GitHubRègle analytiqueMedium
Network endpoint to host executable correlation
Description
'Correlates blocked URLs hosting [malicious] executables with host endpoint data to identify potential instances of executables of the same name having been recently run.
- Type de règle
- Scheduled
- Version
- 1.1.6
- Statut déclaré
- Available
- Fréquence
- 1d
- Période analysée
- 1d
- Déclenchement
- gt 0
Couverture MITRE déclarée
Sources déclarées
Métadonnées du fichier source. Aucune dépendance déduite du KQL.
Connecteurs
Types de données
Requête KQL
Requête originale, sans modification.
let endpointData =
(union isfuzzy=true
(SecurityEvent
| where EventID == 4688
| extend shortFileName = tolower(tostring(split(NewProcessName, '\\')[-1]))
),
(WindowsEvent
| where EventID == 4688
| extend NewProcessName = tostring(EventData.NewProcessName)
| extend shortFileName = tolower(tostring(split(NewProcessName, '\\')[-1]))
| extend TargetUserName = tostring(EventData.TargetUserName)
));
// Correlate suspect executables seen in TrendMicro rule updates with similar activity on endpoints
CommonSecurityLog
| where DeviceVendor =~ "Trend Micro"
| where Activity =~ "Deny List updated"
| where RequestURL endswith ".exe"
| project TimeGenerated, Activity , RequestURL , SourceIP, DestinationIP
| extend suspectExeName = tolower(tostring(split(RequestURL, '/')[-1]))
| join kind=innerunique (endpointData) on $left.suspectExeName == $right.shortFileName
| extend HostName = tostring(split(Computer, '.', 0)[0]), DnsDomain = tostring(strcat_array(array_slice(split(Computer, '.'), 1, -1), '.'))
Entités déclarées
Contenus associés
Liens établis à partir des identifiants déclarés et des manifests des solutions.
Traçabilité de la source
GitHubLes valeurs affichées proviennent des fichiers du dépôt Azure/Azure-Sentinel. Elles décrivent le modèle publié, pas la configuration de votre workspace.
- Fichier
- Solutions/Network Threat Protection Essentials/Analytic Rules/NetworkEndpointCorrelation.yaml ↗
- Commit
7ca9800↗- Identifiant source
01f64465-b1ef-41ea-a7f5-31553a11ad43
Autres fichiers source 3
Solutions/Network Threat Protection Essentials/Analytic Rules/NetworkEndpointCorrelation.yamlsource ↗Detections/MultipleDataSources/NetworkEndpointCorrelation.yamlmigration-note ↗Solutions/Network Threat Protection Essentials/Data/Solution_NetworkThreatDetection.jsonsolution-membership ↗GSTEP / SUIVI DU CATALOGUE
Ajouté au catalogue : 16 sept. 2026 · 05:49 UTC
Dernier changement observé : 16 sept. 2026 · 05:49 UTC