This file is indexed.

/usr/share/horde/ingo/js/whitelist.js is in php-horde-ingo 3.2.16-1ubuntu1.

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
/**
 * Provides the javascript for the whitelist view.
 *
 * @author     Michael Slusarz <slusarz@horde.org>
 * @copyright  2014-2015 Horde LLC
 * @license    ASL (http://www.horde.org/licenses/apache)
 */

var IngoWhitelist = {

    onDomLoad: function()
    {
        $('whitelist_return').observe('click', function(e) {
            document.location.href = this.filtersurl;
            e.stop();
        }.bind(this));
    }

};

document.observe('dom:loaded', IngoWhitelist.onDomLoad.bind(IngoWhitelist));