dissect.target.plugins.os.unix.bsd.darwin.macos._os¶
Module Contents¶
Classes¶
Darwin plugin. |
- class dissect.target.plugins.os.unix.bsd.darwin.macos._os.MacOSPlugin(target: dissect.target.target.Target)¶
Bases:
dissect.target.plugins.os.unix.bsd.darwin._os.DarwinPluginDarwin plugin.
- VERSION = '/System/Library/CoreServices/SystemVersion.plist'¶
- GLOBAL = '/Library/Preferences/.GlobalPreferences.plist'¶
- SYSTEM = '/Library/Preferences/SystemConfiguration/preferences.plist'¶
- classmethod detect(target: dissect.target.target.Target) dissect.target.filesystem.Filesystem | None¶
Provide detection of this OSPlugin on a given filesystem.
- Parameters:
fs –
Filesystemto detect the OS on.- Returns:
The root filesystem / sysvol when found.
- classmethod create(target: dissect.target.target.Target, sysvol: dissect.target.filesystem.Filesystem) typing_extensions.Self¶
Initiate this OSPlugin with the given target and detected filesystem.
- Parameters:
target – The
Targetobject.sysvol – The filesystem that was detected in the
detect()function.
- Returns:
An instantiated version of the OSPlugin.
- hostname() str | None¶
Return the target’s hostname.
- Returns:
The hostname as string.
- ips() list[str] | None¶
Return the IP addresses configured in the target.
- Returns:
The IPs as list.
- version() str | None¶
Return the target’s OS version.
- Returns:
The OS version as string.
- users() collections.abc.Iterator[dissect.target.helpers.record.MacOSUserRecord]¶
Yield unix user records from passwd files or syslog session logins.
References
- os() str¶
Return a slug of the target’s OS name.
- Returns:
A slug of the OS name, e.g. ‘windows’ or ‘linux’.
- architecture() str | None¶
Return a slug of the target’s OS architecture.
- Returns:
A slug of the OS architecture, e.g. ‘x86_32-unix’, ‘MIPS-linux’ or ‘AMD64-win32’, or ‘unknown’ if the architecture is unknown.