dissect.target.plugins.os.windows.regf.nethist¶
Module Contents¶
Classes¶
Windows network history plugin. |
Functions¶
Attributes¶
- dissect.target.plugins.os.windows.regf.nethist.NetworkHistoryRecord¶
- class dissect.target.plugins.os.windows.regf.nethist.NethistPlugin(target: dissect.target.target.Target)¶
Bases:
dissect.target.plugin.PluginWindows network history plugin.
- KEY = 'HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Networklist\\Signatures'¶
- PROFILE_KEY = 'HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Networklist\\Profiles'¶
- check_compatible() None¶
Perform a compatibility check with the target.
This function should return
Noneif 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.
- network_history() collections.abc.Iterator[NetworkHistoryRecord]¶
Return attached network history.
The HKLMSoftwareMicrosoftWindows NTCurrentVersionNetworklistSignatures and HKLMSoftwareMicrosoftWindows NTCurrentVersionNetworklistProfiles registry keys contain information about the networks to which the system has been connected, both wireless and wired.
References
- find_profile(guid: str) dissect.target.helpers.regutil.RegistryKey | None¶