@@ -67,6 +67,7 @@ def get_filtered_vads(
6767
6868 Args:
6969 conhost_proc: the process object for conhost.exe
70+ size_filter: size above which vads will not be returned
7071
7172 Returns:
7273 A list of tuples of:
@@ -99,8 +100,8 @@ def get_command_history(
99100 kernel_layer_name: The name of the layer on which to operate
100101 kernel_symbol_table_name: The name of the table containing the kernel symbols
101102 config_path: The config path where to find symbol files
102- procs: list of process objects
103- max_history: an initial set of CommandHistorySize values
103+ procs: List of process objects
104+ max_history: An initial set of CommandHistorySize values
104105
105106 Returns:
106107 The conhost process object, the command history structure, a dictionary of properties for
@@ -227,7 +228,6 @@ def get_command_history(
227228 "data" : command_history .CommandCountMax ,
228229 }
229230 )
230-
231231 command_history_properties .append (
232232 {
233233 "level" : 1 ,
@@ -236,6 +236,7 @@ def get_command_history(
236236 "data" : "" ,
237237 }
238238 )
239+
239240 for (
240241 cmd_index ,
241242 bucket_cmd ,
@@ -352,7 +353,7 @@ def _generator(
352353
353354 def _conhost_proc_filter (self , proc : interfaces .objects .ObjectInterface ):
354355 """
355- Used to filter to only conhost.exe processes
356+ Used to filter only conhost.exe processes
356357 """
357358 process_name = utility .array_to_string (proc .ImageFileName )
358359
0 commit comments