Permalink
Cannot retrieve contributors at this time
14 lines (14 sloc)
486 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Azure-Sentinel/Hunting Queries/Microsoft 365 Defender/Ransomware/DEV-0270/DLLHost.exe file creation via PowerShell.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id: 361aa11c-c7ad-4ef0-99fd-2ef52ddd2ba6 | |
| name: DLLHost.exe file creation via PowerShell | |
| description: | | |
| Identify masqueraded DLLHost.exe file created by PowerShell. | |
| requiredDataConnectors: | |
| - connectorId: MicrosoftThreatProtection | |
| dataTypes: | |
| - DeviceProcessEvents | |
| tactics: | |
| - Execution | |
| query: | | |
| DeviceProcessEvents | |
| | where InitiatingProcessFileName =~ 'powershell.exe' | |
| | where InitiatingProcessCommandLine has_all('$file=', 'dllhost.exe', 'Invoke-WebRequest', '-OutFile') |