Skip to content

Commit

Permalink
Windows: s/type/types for handles filter name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Johnson committed Feb 5, 2024
1 parent 0ac6f6c commit bd1ba62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volatility3/framework/plugins/windows/handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]
name="pslist", plugin=pslist.PsList, version=(2, 0, 0)
),
requirements.ListRequirement(
name="type",
name="types",
element_type=str,
description="Types of handles to include (all other handle types are excluded)",
optional=True,
Expand Down Expand Up @@ -355,7 +355,7 @@ def _generator(self, procs):
symbol_table=kernel.symbol_table_name,
)

object_types = [s.lower() for s in self.config.get("type", [])]
object_types = [s.lower() for s in self.config.get("types", [])]

cookie = self.find_cookie(
context=self.context,
Expand Down

0 comments on commit bd1ba62

Please sign in to comment.