This file is indexed.

/usr/lib/python2.7/dist-packages/libmproxy/app.py is in mitmproxy 0.15-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
import flask
import os.path

mapp = flask.Flask(__name__)
mapp.debug = True

def master():
    return flask.request.environ["mitmproxy.master"]

@mapp.route("/")
def index():
    return flask.render_template("index.html", section="home")


@mapp.route("/cert/pem")
def certs_pem():
    capath = master().server.config.cacert
    p = os.path.splitext(capath)[0] + "-cert.pem"
    return flask.Response(open(p).read(), mimetype='application/x-x509-ca-cert')


@mapp.route("/cert/p12")
def certs_p12():
    capath = master().server.config.cacert
    p = os.path.splitext(capath)[0] + "-cert.p12"
    return flask.Response(open(p).read(), mimetype='application/x-pkcs12')