This file is indexed.

/usr/share/php/data/Horde_SessionHandler/migration/1_horde_sessionhandler_base_tables.php is in php-horde-sessionhandler 2.2.4-4.

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
<?php
class HordeSessionhandlerBaseTables extends Horde_Db_Migration_Base
{
    public function up()
    {
        if (!in_array('horde_sessionhandler', $this->tables())) {
            $t = $this->createTable('horde_sessionhandler', array('autoincrementKey' => false));
            $t->column('session_id', 'string', array('limit' => 32, 'null' => false));
            $t->column('session_lastmodified', 'integer', array('null' => false));
            $t->column('session_data', 'binary');
            $t->primaryKey(array('session_id'));
            $t->end();
            $this->addIndex('horde_sessionhandler', array('session_lastmodified'));
        }
    }

    public function down()
    {
        $this->dropTable('horde_sessionhandler');
    }
}