This file is indexed.

/usr/share/fex/htdocs/sup.html is in fex 20160919-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
<html>
<head>
  <meta http-equiv="expires" content="0">
  <title>F*EX simple upload</title>
</head>
<body>
<script type="text/javascript">
  function showstatus() {
    var file = document.forms["upload"].elements["file"].value;
    if (file == "") return false;
    window.open(
      '/fup?showstatus=$RANDOM$',
      'fup_status',
      'width=700,height=500'
    );
    return true;
  }
</script>
<h1><a href="/">F*EX</a> simple upload</h1>
<p><hr><p>
<form name="upload"
      action="/fup"
      method="post"
      accept-charset="UTF-8"
      enctype="multipart/form-data"
      onsubmit="return showstatus();">
  <input type="hidden" name="uid"     value="$RANDOM$">
  <input type="hidden" name="comment" value="!SHORTMAIL!">
  <table>
    <tr><td>your e-mail address:
        <td><input type="text"     name="from" size="80" value="">
    </tr>
    <tr><td>your <a href="/FAQ/user.html#What_is_the__auth_ID">auth-ID</a>(*):
        <td><input type="password" name="id"   size="16" value="">
    </tr>
    <tr><td>your file:
        <td><input type="file"     name="file" size="80" value="">
    </tr>
  </table>
  <p>
  <input type="submit" value="submit">
</form>
<p>
<p><hr><p>
After "submit" you will see an upload progress bar
(if you have javascript enabled and popups allowed).<br>
After the end a download URL will be shown.
<p>
You can also use the <a href="/fup">regular upload form</a>
(with more features).
<p>
<em>NOTE: Only Firefox or Google Chrome can upload files > 2 GB!</em><br>
<p><hr><p>
(*) Please <a href="/fur">register yourself</a> if you do not have an
    <a href="/FAQ/user.html#What_is_the__auth_ID">auth-ID</a> yet.
<p><hr><p>
<address>Contact: <a href="mailto:$SERVER_ADMIN$">fexmaster</a></address>
</body>
</html>