This file is indexed.

/usr/lib/python3/dist-packages/django_xmlrpc/templates/xmlrpc_get.html is in python3-django-xmlrpc 0.1.5-6+deb9u1.

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
{% extends "admin/base_site.html" %}
{% load i18n %}

{% block title %}{% trans "XML-RPC Service" %}{% endblock %}

{% block content %}
<h2>{% trans "XML-RPC Service" %}</h2>

<p>{% trans "You need to invoke this service using an XML-RPC Client." %}</p>

<h3>{% trans "The following methods are available :" %}</h3>

{% for m in methods %}
<div class="functions">
  <h4>{{ m.0 }}</h4>
  <div class="function_desc">
    <strong>{% trans "Types of argument" %}{{ m.1.args|length|pluralize }} :</strong> {{ m.1.args }}
    <br />
    <strong>{% trans "Type of return" %} :</strong> {{ m.1.returns }}
    <br />
    <pre class="function_doc">{{ m.2 }}</pre>
  </div>
</div>
{% endfor %}
{% endblock %}