Permalink
Cannot retrieve contributors at this time
13 lines (13 sloc)
551 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/Modifying the registry to add a ransom message notification.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: acd4112f-5271-4680-ab2a-f07952d71888 | |
| name: Modifying the registry to add a ransom message notification | |
| description: | | |
| Identify registry modifications that is indicative of a ransom note tied to DEV-0270. | |
| requiredDataConnectors: | |
| - connectorId: MicrosoftThreatProtection | |
| dataTypes: | |
| - DeviceProcessEvents | |
| tactics: | |
| - Impact | |
| query: | | |
| DeviceProcessEvents | |
| | where InitiatingProcessCommandLine has_all('"reg"', 'add', @'"HKLM\SOFTWARE\Policies\', '/v','/t', 'REG_DWORD', '/d', '/f', 'RecoveryKeyMessage', 'Your drives are Encrypted!', '@') |