mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
28 lines
669 B
Python
28 lines
669 B
Python
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')
|
|
|