dissect.target.plugins.os.windows.cim
¶
Module Contents¶
Classes¶
CIM database plugin. |
Attributes¶
- dissect.target.plugins.os.windows.cim.ConsumerBindingRecord¶
- class dissect.target.plugins.os.windows.cim.CimPlugin(target)¶
Bases:
dissect.target.plugin.Plugin
CIM database plugin.
Provides functions for getting useful data out the CIM (WBEM) database.
- __namespace__ = 'cim'¶
Defines the plugin namespace.
- check_compatible() None ¶
Perform a compatibility check with the target.
This function should return
None
if the plugin is compatible with the current target (self.target
). For example, check if a certain file exists. Otherwise it should raise anUnsupportedPluginError
.- Raises:
UnsupportedPluginError – If the plugin could not be loaded.
- repo() dissect.cim.cim.CIM ¶
- consumerbindings() Iterator[ConsumerBindingRecord] ¶
Return all __FilterToConsumerBinding queries.
WMI permanent event subscriptions can be used to trigger actions when specified conditions are met. Attackers often use this functionality to persist the execution of backdoors at system start up. WMI Consumers specify an action to be performed, including executing a command, running a script, adding an entry to a log, or sending an email. WMI Filters define conditions that will trigger a Consumer.
References