StoneDrill Service Install

This method detects a service install of the malicious Microsoft Network Realtime Inspection Service service described in StoneDrill report by Kaspersky

Sigma rule (View on GitHub)

 1title: StoneDrill Service Install
 2id: 9e987c6c-4c1e-40d8-bd85-dd26fba8fdd6
 3status: test
 4description: This method detects a service install of the malicious Microsoft Network Realtime Inspection Service service described in StoneDrill report by Kaspersky
 5references:
 6    - https://securelist.com/blog/research/77725/from-shamoon-to-stonedrill/
 7author: Florian Roth (Nextron Systems)
 8date: 2017/03/07
 9modified: 2021/11/30
10tags:
11    - attack.persistence
12    - attack.g0064
13    - attack.t1543.003
14    - detection.emerging_threats
15logsource:
16    product: windows
17    service: system
18detection:
19    selection:
20        Provider_Name: 'Service Control Manager'
21        EventID: 7045
22        ServiceName: NtsSrv
23        ImagePath|endswith: ' LocalService'
24    condition: selection
25falsepositives:
26    - Unlikely
27level: high

References

Related rules

to-top