This file is indexed.

/usr/share/doc/pyro4/examples/flame/Readme.txt is in pyro4-examples 4.23-1.

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
Pyro Flame example.
Flame = "foreign location automatic module exposer"

Without actually writing any code on the server you can still write
clients that access modules and other things on the server.

You'll have to start a Pyro Flame server before running the client.
Set the correct configuration (see below) and run the following command:

  python -m Pyro4.utils.flameserver


Security (explicitly enable Flame, pickle serializer
----------------------------------------------------
By default, Flame is switched off; the feature cannot be used.
This is because it has severe security implications.
If you want to use Flame, you have to explicitly enable it in
the server's configuration (FLAME_ENABLED config item).

Also, because a lot of custom classes are passed over the network,
flame requires the pickle serializer (SERIALIZER config item).
When launching the server via the above utility command, this
is taken care of automatically. If you write your own server and
client, remember to configure this correctly yourself.

For this example, setting the environment variable:
  PYRO_FLAME_ENABLED=true
before launching the flame server is enough to make it work.