This file is indexed.

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

public class SsnLimit {

    public static void main( String argv[] ) throws Exception {
        jcifs.Config.setProperty( "jcifs.smb.client.ssnLimit", "1" );
        NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication( null, null, null );
        UniAddress addr = UniAddress.getByName( argv[0] );
        for( int i = 0; i < 25; i++ ) {
            SmbSession.logon( addr, auth );
            Thread.sleep( 1000 );
        }
        Thread.sleep( 10000 );
    }
}