This file is indexed.

/usr/share/doc/pyro/examples/authenticate/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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Example of connection Authentication.


FIRST: Starting the NS with authentication enabled

You need to use authentication on the Name Server too:--

Either start 'ns' with a custom authentication ID option ("s3cr3t"),
or use a custom security plugin (supplied).

To use the security plugin, which prints the authentication process,
make sure the current directory ('.') is part of your PYTHONPATH,
because otherwise the security module cannot be loaded from this
directory (this is correct -safe- behavior of Python).

Start the nameserver with:
	"ns -v -s NSSecEx"

It will show you that it's using your security plugins.
(If you don't use the -v flag, you won't see this on the console)

Using a custom connection validator enables you to have more
control over the authentication process, and to specify
multiple allowed authentication IDs.



Running the server and client:

The server tells Pyro that it wants to use a limited set of
allowed authentication IDs. Pyro will now refuse any new
client connection that does not supply one of the allowed IDs.

The client asks for the ID. You can deliberately enter a wrong
ID to see what happens.
(first id is for connecting to the Name Server, second is for
connecting to the test server).