This file is indexed.

/usr/share/opensips/sqlite/tls_mgm-create.sql is in opensips-sqlite-module 2.2.2-3build4.

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
INSERT INTO version (table_name, table_version) values ('tls_mgm','1');
CREATE TABLE tls_mgm (
    id CHAR(64) PRIMARY KEY NOT NULL,
    address CHAR(64) NOT NULL,
    type INTEGER NOT NULL,
    method CHAR(16),
    verify_cert INTEGER,
    require_cert INTEGER,
    certificate CHAR(255),
    private_key CHAR(255),
    crl_check_all INTEGER,
    crl_dir CHAR(255),
    ca_list CHAR(255),
    ca_dir CHAR(255),
    cipher_list CHAR(255),
    dh_params CHAR(255),
    ec_curve CHAR(255)
);