dissect.target.plugins.os.unix.linux.android._os

Module Contents

Classes

BuildProp

AndroidPlugin

Base class for OS plugins.

class dissect.target.plugins.os.unix.linux.android._os.BuildProp(fh: TextIO)
class dissect.target.plugins.os.unix.linux.android._os.AndroidPlugin(target: dissect.target.target.Target)

Bases: dissect.target.plugins.os.unix.linux._os.LinuxPlugin

Base class for OS plugins.

This provides a base class for certain common functions of OS’s, which each OS plugin has to implement separately.

For example, it provides an interface for retrieving the hostname and users of a target.

All derived classes MUST implement ALL the classmethods and exported methods with the same @classmethod or @export(...) annotation.

classmethod detect(target: dissect.target.target.Target) dissect.target.filesystem.Filesystem | None

Provide detection of this OSPlugin on a given filesystem.

Parameters:

fsFilesystem to detect the OS on.

Returns:

The root filesystem / sysvol when found.

classmethod create(target: dissect.target.target.Target, sysvol: dissect.target.filesystem.Filesystem) AndroidPlugin

Initiate this OSPlugin with the given target and detected filesystem.

Parameters:
  • target – The Target object.

  • sysvol – The filesystem that was detected in the detect() function.

Returns:

An instantiated version of the OSPlugin.

hostname() str

Return the target’s hostname.

Returns:

The hostname as string.

ips() list[str]

Returns a list of static IP addresses and DHCP lease IP addresses found on the host system.

version() str

Return the target’s OS version.

Returns:

The OS version as string.

os() str

Return a slug of the target’s OS name.

Returns:

A slug of the OS name, e.g. ‘windows’ or ‘linux’.

abstract users() Iterator[dissect.target.helpers.record.UnixUserRecord]

Recover users from /etc/passwd, /etc/master.passwd or /var/log/syslog session logins.