This file is indexed.

/usr/lib/python2.7/dist-packages/rekall/plugins/common/efilter_plugins/ipython.py is in python-rekall-core 1.6.0+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
"""Add a magic handler for select, describe and explain plugins."""
from IPython.core import magic
from rekall import ipython_support


@magic.magics_class
class EfilterMagics(magic.Magics):

    def _RunPlugin(self, session, plugin_name, line):
        # Strip quotes.
        while line[0] == line[-1] and line[0] in "'\"":
            line = line[1:-1]

        return session.RunPlugin(plugin_name, query=line)

    @magic.line_cell_magic
    def search(self, line, cell=None):
        session = self.shell.user_global_ns["session"]
        if cell is None:
            return self._RunPlugin(session, "search", line)
        else:
            return self._RunPlugin(session, "search", cell)

    @magic.line_cell_magic
    def SELECT(self, line, cell=None):
        return self._process_select(line, cell)

    @magic.line_cell_magic
    def select(self, line, cell=None):
        """This makes it easier to run the search plugin:

[1] win7.elf 15:35:09> select * from pslist() where _EPROCESS.name =~ "svchost"
  _EPROCESS            Name          PID   PPID   Thds    Hnds    Sess  Wow64
-------------- -------------------- ----- ------ ------ -------- ------ ------
0xfa80024f85d0 svchost.exe            236    480     19      455      0 False
0xfa80023f6770 svchost.exe            608    480     12      352      0 False
        """
        return self._process_select(line, cell)

    def _process_select(self, line, cell=None):
        session = self.shell.user_module.session
        if cell is None:
            return self._RunPlugin(session, "search", "select " + line)
        else:
            return self._RunPlugin(session, "search", "select " + cell)


ipython_support.REGISTERED_MAGICS.append(EfilterMagics)