This file is indexed.

/usr/share/xul-ext/greasemonkey/content/install.xul is in xul-ext-greasemonkey 1.15-1~deb7u1.

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0"?>

<?xml-stylesheet href="chrome://mozapps/content/xpinstall/xpinstallConfirm.css" type="text/css"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css" type="text/css"?>

<!DOCTYPE overlay SYSTEM "chrome://greasemonkey/locale/greasemonkey.dtd">

<dialog
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"

  id="greasemonkey"
  title="&install.title;"
  style="width: 32em; height:32em;"
  onload="init();"
  ondialogaccept="return onOk();"
  ondialogcancel="return onCancel();"
  ondialogextra1="return onShowSource();"
  buttons="accept,cancel,extra1"
  buttonlabelaccept="&install.installbutton;"
  buttonlabelextra1="&install.showscriptsource;"
  defaultButton="accept">

  <stringbundle id="gm-browser-bundle" src="chrome://greasemonkey/locale/gm-browser.properties" />

  <script type="application/x-javascript" src="chrome://greasemonkey/content/install.js" />

  <vbox id="dialogContentBox" flex="1">
    <description id="heading"
      style="margin-bottom:1em" />
    <vbox id="itemBox"
      flex="1"
      style="padding:0; overflow:auto; -moz-appearance:textfield; margin:2px 4px"
    >
      <vbox
        style="background:InfoBackground; color: InfoText; border-bottom:1px black dotted; padding:0.5em; margin:0; margin-bottom:0.5em"
      >
        <description id="scriptDescription"
          style="margin:0" />
      </vbox>
      <vbox id="includes"
        style="margin-bottom:1em; display:none"
      >
        <label
          value="&install.runson;" />
        <description id="includes-desc"
          style="font-style:italic" />
      </vbox>
      <vbox id="matches"
        style="margin-bottom:1em; display:none"
      >
        <label
          value="&install.matches;" />
        <description id="matches-desc"
          style="font-style:italic" />
      </vbox>
      <vbox id="excludes"
        style="display:none"
      >
        <label
          value="&install.butnoton;" />
        <description id="excludes-desc"
          style="font-style:italic" />
      </vbox>
      <spacer flex="1" />
    </vbox>

    <description
      style="margin-top:1em"
    >&install.warning1;</description>
    <description
      style="margin-bottom:1em"
      class="warning"
    >&install.warning2;</description>

    <vbox id="loading">
      <label value="&loading;" />
      <progressmeter id="progressmeter"/>
    </vbox>
  </vbox>

  <vbox id="errorContentBox" flex="1" style="display: none">
    <description style="margin-bottom: 1em; font-weight: bold;">
      &install.downloadError;
    </description>
    <description id="errorMessage" style="white-space: pre-line" />
  </vbox>
</dialog>