This file is indexed.

/usr/share/doc/python-magic/examples/example.py is in python-magic 1:5.30-1+deb9u2.

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
#! /usr/bin/python

import magic

ms = magic.open(magic.NONE)
ms.load()
tp = ms.file("/bin/ls")
print (tp)

f = open("/bin/ls", "rb")
buf = f.read(4096)
f.close()

tp = ms.buffer(buf)
print (tp)

ms.close()