This file is indexed.

/usr/share/doc/pyro/examples/denyhosts/Readme.txt is in pyro-examples 1:3.14-1.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
This test is for showing how you might implement host/IP-based
access control for new connections.

It uses the Pyro feature to set a custom newConnectionValidator.
The validator will ask you to accept or deny any new connections
that occur to the server. Try it out, start the client from
various machines and answer yes or no on the server when it
asks you about the new connections.

Note that even if you accept the connection, the custom validator
then calls the default validator. This one then still checks if
the max. number of connections is not exceeded.

You might want to skip that last step, or re-implement it yourself
(but you'll have to look at the code of the default validator,
Pyro.protocol.DefaultConnValidator) because it accesses some
internal structures of the daemon.