This file is indexed.

/usr/lib/erlang/lib/ssl-5.3.2/ebin/ssl.app is in erlang-ssl 1:16.b.3-dfsg-1ubuntu2.2.

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
38
39
40
41
42
43
44
45
46
47
48
49
50
{application, ssl,
   [{description, "Erlang/OTP SSL application"},
    {vsn, "5.3.2"},
    {modules, [
	       %% TLS/SSL 
	       tls_connection,
	       tls_handshake,
	       tls_record,
	       tls_v1,
	       ssl_v3,
	       ssl_v2,
	       %% DTLS
	       dtls_connection,
	       dtls_handshake,
	       dtls_record,
	       dtls_v1,
	       %% API
	       ssl,  %% Main API		  
	       tls,  %% TLS specific
	       dtls, %% DTLS specific 
	       ssl_session_cache_api,
	       %% Both TLS/SSL and DTLS
	       ssl_config,
	       ssl_connection,
	       ssl_handshake,
	       ssl_record,
	       ssl_cipher,
	       ssl_srp_primes,
	       ssl_alert,
	       ssl_socket,
	       %% Erlang Distribution over SSL/TLS
	       inet_tls_dist,
	       ssl_tls_dist_proxy,
	       ssl_dist_sup,
	       %% SSL/TLS session handling
	       ssl_session,
	       ssl_session_cache,
	       ssl_manager,
	       ssl_pkix_db,
	       ssl_certificate,
	       %% App structure
	       ssl_app,
	       ssl_sup,
	       tls_connection_sup,
	       dtls_connection_sup	
	       ]},
    {registered, [ssl_sup, ssl_manager]},
    {applications, [crypto, public_key, kernel, stdlib]},
    {env, []},
    {mod, {ssl_app, []}}]}.