Suspicious Query of MachineGUID

Use of reg to get MachineGuid information

Sigma rule (View on GitHub)

 1title: Suspicious Query of MachineGUID
 2id: f5240972-3938-4e56-8e4b-e33893176c1f
 3status: test
 4description: Use of reg to get MachineGuid information
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1082/T1082.md#atomic-test-8---windows-machineguid-discovery
 7author: frack113
 8date: 2022/01/01
 9tags:
10    - attack.discovery
11    - attack.t1082
12logsource:
13    category: process_creation
14    product: windows
15detection:
16    selection:
17        Image|endswith: '\reg.exe'
18        CommandLine|contains|all:
19            - 'SOFTWARE\Microsoft\Cryptography'
20            - '/v '
21            - 'MachineGuid'
22    condition: selection
23falsepositives:
24    - Unknown
25level: low

References

Related rules

to-top