This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/settings/account_settings.html is in python-sagenb 1.0.1+ds1-2.

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
{% extends "html/settings/base.html" %}

{% block title %}{{ gettext('Account Settings') }}{% endblock %}
{% block page_id %}account-settings-page{% endblock %}

{% block settings_main %}
<form method="post" action="/settings" id="account-settings-form">
    <div class="buttons buttons-top">
        <button type="submit">{{ gettext('Save') }}</button>
        <a href="/"><button>{{ gettext('Cancel') }}</button></a>
    </div>
    <div class="section">
        <h2>{{ gettext('Change Auto-Save Interval') }}</h2>
        <div>
            {{ gettext('Minutes') }}:
            <select name="autosave">
                {% for i, selected in autosave_intervals %}
                <option{{ selected }}>{{ i }}</option>
                {% endfor %}
            </select>
        </div>
    </div>
	{% if not external %}
    <div class="section">
        <h2>{{ gettext('Change Password') }}</h2>
        <div id="passwd">
            {% if message -%}
            <input type="hidden" name="message" value="{ message }" />
            {%- endif -%}
            <div>
                <label for="old-pass">{{ gettext('Old password') }}</label>
                <input type="password" name="old-pass" />
            </div>
            <div>
                <label for="new-pass">{{ gettext('New password') }}</label>
                <input type="password" name="new-pass" />
            </div>
            <div>
                <label for="retype-pass">{{ gettext('Retype new password') }}</label>
                <input type="password" name="retype-pass" />
            </div>
        </div>
    </div>

    <div class="section">
        <h2>{{ gettext('Change E-mail Address') }}</h2>
        
        <div>
            <div>
                <label>{{ gettext('Current e-mail') }}</label>
                {{ email_address }} {{ email_confirmed }}
            </div>
            <div>
                <label for="new-email">{{ gettext('New e-mail') }}</label>
                <input type="text" name="new-email" class="c1" />
            </div>
        </div>
    </div>
    {% endif %}

    {%- if auto_table %}
    {{ auto_table }}
    {%- endif %}
    
    <div class="buttons">
        <button type="submit">{{ gettext('Save') }}</button>
        <a href="/"><button>{{ gettext('Cancel') }}</button></a>
    </div>
</form>
{% endblock %}