This file is indexed.

/usr/share/gnome-shell/js/gdm/fingerprint.js is in gnome-shell-common 3.4.1-0ubuntu2.

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
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-

const Gio = imports.gi.Gio;
const Lang = imports.lang;
const Shell = imports.gi.Shell;
const Signals = imports.signals;

const FprintManagerIface = <interface name='net.reactivated.Fprint.Manager'>
<method name='GetDefaultDevice'>
    <arg type='o' direction='out' />
</method>
</interface>;

const FprintManagerProxy = Gio.DBusProxy.makeProxyWrapper(FprintManagerIface);

function FprintManager() {
    return new FprintManagerProxy(Gio.DBus.system,
                           'net.reactivated.Fprint',
                           '/net/reactivated/Fprint/Manager');
};