This file is indexed.

/usr/share/pyshared/allmydata/web/status.xhtml is in tahoe-lafs 1.9.2-1.

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
<html xmlns:n="http://nevow.com/ns/nevow/0.1">
  <head>
    <title>Tahoe-LAFS - Current Uploads/Downloads</title>
    <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
    <link href="/icon.png" rel="shortcut icon" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  </head>
  <body>

<h1>Upload and Download Status</h1>


<h2>Active Operations:</h2>
<table align="left" class="table-headings-top" n:render="sequence" n:data="active_operations">
  <tr n:pattern="header">
    <th>Type</th>
    <th>Storage Index</th>
    <th>Helper?</th>
    <th>Total Size</th>
    <th>Progress</th>
    <th>Status</th>
  </tr>
  <tr n:pattern="item" n:render="row">
    <td><n:slot name="type"/></td>
    <td><n:slot name="si"/></td>
    <td><n:slot name="helper"/></td>
    <td><n:slot name="total_size"/></td>
    <td><n:slot name="progress"/></td>
    <td><n:slot name="status"/></td>
  </tr>
  <tr n:pattern="empty"><td>No active operations!</td></tr>
</table>
<br clear="all" />

<h2>Recent Operations:</h2>
<table align="left" class="table-headings-top" n:render="sequence" n:data="recent_operations">
  <tr n:pattern="header">
    <th>Started</th>
    <th>Type</th>
    <th>Storage Index</th>
    <th>Helper?</th>
    <th>Total Size</th>
    <th>Progress</th>
    <th>Status</th>
  </tr>
  <tr n:pattern="item" n:render="row">
    <td><n:slot name="started"/></td>
    <td><n:slot name="type"/></td>
    <td><n:slot name="si"/></td>
    <td><n:slot name="helper"/></td>
    <td><n:slot name="total_size"/></td>
    <td><n:slot name="progress"/></td>
    <td><n:slot name="status"/></td>
  </tr>
  <tr n:pattern="empty"><td>No recent operations!</td></tr>
</table>
<br clear="all" />

<div>Return to the <a href="/">Welcome Page</a></div>

  </body>
</html>