This file is indexed.

/usr/share/opennebula/sunstone/templates/login.html is in opennebula-sunstone 3.4.1-3.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
<!DOCTYPE html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>OpenNebula Sunstone Login</title>
    <link rel="stylesheet" type="text/css" href="css/login.css" />
    <link rel="stylesheet" type="text/css" href="vendor/jQueryUI/jquery-ui-1.8.16.custom.css" />

    <!-- Vendor Libraries -->
    <script type="text/javascript" src="vendor/jQuery/jquery.min.js"></script>
    <!-- End Vendor Libraries -->

    <script type="text/javascript" src="js/opennebula.js"></script>
    <script type="text/javascript" src="js/login.js"></script>

</head>


<body>
<div id="header">
    <div id="logo">
        The OpenNebula Cloud Operations Center
    </div>
</div>

<div id="wrapper">
      <div id="logo_sunstone">
      </div>

      <div id="error_box" class="error_message ui-state-error ui-corner-all">
      </div>

      <form id="login_form">
        <div class="border" id="login">
            <div class="content">
                Username
                <input type="text" size="15" name="username" id="username" class="box"/>
                Password
                <input type="password" size="15" name="password" id="password" class="box"/>
                <br />
                <input type="checkbox" id="check_remember" />
                <label id="label_remember" for="check_remember">Remember me</label>
                <input type="submit" id="login_btn" value="" />
                <img src="images/ajax-loader.gif" alt="retrieving" id="login_spinner" />

            </div>
        </div>
      </form>
</div>
</body>
</html>