File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
volatility3/framework/plugins/windows Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 44import logging
55from volatility3 .framework import interfaces , deprecation
66from volatility3 .plugins .windows .malware import svcdiff
7+ from volatility3 .plugins .windows import svcscan
78
89vollog = logging .getLogger (__name__ )
910
1011
1112class SvcDiff (
12- interfaces . plugins . PluginInterface ,
13+ svcscan . SvcScan ,
1314 deprecation .PluginRenameClass ,
1415 replacement_class = svcdiff .SvcDiff ,
1516 removal_date = "2026-06-07" ,
1617):
1718 """Compares services found through list walking versus scanning to find rootkits (deprecated)."""
18-
19+ def __init__ (self , * args , ** kwargs ):
20+ super ().__init__ (* args , ** kwargs )
21+ self ._enumeration_method = self .service_diff
1922 _required_framework_version = (2 , 4 , 0 )
2023
2124 _version = (2 , 0 , 0 )
You can’t perform that action at this time.
0 commit comments