This file is indexed.

/usr/share/xul-ext/greasemonkey/modules/abstractScript.js is in xul-ext-greasemonkey 3.8-1~deb8u1.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';

var EXPORTED_SYMBOLS = ['AbstractScript'];

var gAboutBlankRegexp = /^about:blank/;

var Cu = Components.utils;

Cu.import('chrome://greasemonkey-modules/content/third-party/convert2RegExp.js');
Cu.import('chrome://greasemonkey-modules/content/third-party/MatchPattern.js');
Cu.import('chrome://greasemonkey-modules/content/util.js');


function AbstractScript() { }

Object.defineProperty(AbstractScript.prototype, "globalExcludes", {
  get: function() {
    return [];
  },
  configurable: true
});

AbstractScript.prototype.matchesURL = function(url) {
  var uri = GM_util.uriFromUrl(url);

  function testClude(glob) {
    // Do not run in about:blank unless _specifically_ requested. See #1298
    if (gAboutBlankRegexp.test(url) && !gAboutBlankRegexp.test(glob)) {
      return false;
    }

    return GM_convert2RegExp(glob, uri).test(url);
  }
  function testMatch(matchPattern) {
    if ('string' == typeof matchPattern)
      matchPattern = new MatchPattern(matchPattern);
    return matchPattern.doMatch(url);
  }

  // Flat deny if URL is not greaseable, or matches global excludes.
  if (!GM_util.isGreasemonkeyable(url)) return false;

  if (this.globalExcludes.some(testClude)) return false;

  // Allow based on user cludes.
  if (this.userExcludes.some(testClude)) return false;
  if (this.userIncludes.some(testClude) || this.userMatches.some(testMatch))
    return true;

  // Finally allow based on script cludes and matches.
  if (this.excludes.some(testClude)) return false;
  return (this.includes.some(testClude) || this.matches.some(testMatch));
};