File: agent.py

package info (click to toggle)
rekall 1.6.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 34,936 kB
  • ctags: 17,079
  • sloc: python: 83,524; ansic: 16,025; cpp: 4,808; objc: 391; sh: 234; asm: 182; makefile: 135
file content (70 lines) | stat: -rw-r--r-- 2,414 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""This file defines some common messages in a central place.

Many of these have been directly converted from GRR.
"""
import platform
import socket
import yaml
from wheel import pep425tags

from rekall import resources
from rekall_agent import serializer

# Get field definitions from messages.yaml.
path = resources.get_resource("messages.yaml", "rekall_agent",
                              prefix="message_data")

DEFINITIONS = yaml.safe_load(open(path, "rb").read())


class Uname(serializer.SerializedObject):
    """Stores information about the system."""

    schema = DEFINITIONS["Uname"]

    @classmethod
    def from_current_system(cls, session=None):
        """Gets a Uname object populated from the current system"""
        uname = platform.uname()
        fqdn = socket.getfqdn()
        system = uname[0]
        architecture, _ = platform.architecture()
        if system == "Windows":
            service_pack = platform.win32_ver()[2]
            kernel = uname[3]  # 5.1.2600
            release = uname[2]  # XP, 2000, 7
            version = uname[3] + service_pack  # 5.1.2600 SP3, 6.1.7601 SP1
        elif system == "Darwin":
            kernel = uname[2]  # 12.2.0
            release = "OSX"  # OSX
            version = platform.mac_ver()[0]  # 10.8.2
        elif system == "Linux":
            kernel = uname[2]  # 3.2.5
            release = platform.linux_distribution()[0]  # Ubuntu
            version = platform.linux_distribution()[1]  # 12.04

        # Emulate PEP 425 naming conventions - e.g. cp27-cp27mu-linux_x86_64.
        pep425tag = "%s%s-%s-%s" % (pep425tags.get_abbr_impl(),
                                    pep425tags.get_impl_ver(),
                                    str(pep425tags.get_abi_tag()).lower(),
                                    pep425tags.get_platform())

        return cls.from_keywords(
            session=session,
            system=system,
            architecture=architecture,
            node=uname[1],
            release=release,
            version=version,
            machine=uname[4],              # x86, x86_64
            kernel=kernel,
            fqdn=fqdn,
            pep425tag=pep425tag,
        )


# The rest will be automatically created as plain old data objects (PODO).
globals().update(serializer.load_from_dict(DEFINITIONS, [
    "CpuSample", "ClientInformation", "IOSample", "ClientStats",
    "CpuSeconds",
]))