This file is indexed.

/usr/share/doc/libjcifs-java-doc/examples/SidFragment.java is in libjcifs-java-doc 1.3.17-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
import jcifs.smb.*;

public class SidFragment {

    public static void main(String[] argv) throws Exception {
        if (argv.length < 1) {
            System.err.println("usage: SidFragment <textual domain sid>");
            return;
        }

        SID domsid = new SID(argv[0]);
        int rid = 1120;
        int count = 150;
        int si;

        SID[] sids = new SID[count];

        for (si = 0; si < sids.length; si++) {
            sids[si] = new SID(domsid, rid++);
        }

        SID.resolveSids("ts0", null, sids);

        for (si = 0; si < sids.length; si++) {
            System.out.println(sids[si].toString());
        }
    }
}