This file is indexed.

/usr/share/horde/ingo/js/blacklist.js is in php-horde-ingo 3.2.8-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
22
23
24
25
26
27
28
29
/**
 * Provides the javascript for the blacklist view.
 *
 * @author     Michael Slusarz <slusarz@horde.org>
 * @copyright  2014-2015 Horde LLC
 * @license    ASL (http://www.horde.org/licenses/apache)
 */

var IngoBlacklist = {

    // Vars used and defaulting to null/false:
    //   filtersurl

    onDomLoad: function()
    {
        $('actionvalue').observe('change', function(e) {
            if ($F(e.element())) {
                $('action_folder').setValue(1);
            }
        });

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

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