mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
30 lines
742 B
Python
30 lines
742 B
Python
from __future__ import absolute_import
|
|
import flask
|
|
import os
|
|
from ..proxy import config
|
|
|
|
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():
|
|
p = os.path.join(master().server.config.confdir, config.CONF_BASENAME + "-ca-cert.pem")
|
|
return flask.Response(open(p, "rb").read(), mimetype='application/x-x509-ca-cert')
|
|
|
|
|
|
@mapp.route("/cert/p12")
|
|
def certs_p12():
|
|
p = os.path.join(master().server.config.confdir, config.CONF_BASENAME + "-ca-cert.p12")
|
|
return flask.Response(open(p, "rb").read(), mimetype='application/x-pkcs12')
|
|
|