Suspicious Execution of Systeminfo

Detects usage of the "systeminfo" command to retrieve information

Sigma rule (View on GitHub)

 1title: Suspicious Execution of Systeminfo
 2id: 0ef56343-059e-4cb6-adc1-4c3c967c5e46
 3status: test
 4description: Detects usage of the "systeminfo" command to retrieve information
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1082/T1082.md#atomic-test-1---system-information-discovery
 7    - https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/systeminfo
 8author: frack113
 9date: 2022/01/01
10modified: 2022/07/14
11tags:
12    - attack.discovery
13    - attack.t1082
14logsource:
15    category: process_creation
16    product: windows
17detection:
18    selection:
19        - Image|endswith: '\systeminfo.exe'
20        - OriginalFileName: 'sysinfo.exe'
21    condition: selection
22falsepositives:
23    - Unknown
24level: low

References

Related rules

to-top