mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
8a8437470e
Two reasons for this. First, this removes flask and its dependencies, which are quite sizeable. Second, pyinstaller now barfs on simplejson, which is a Flask dependency. I just don't have time to fix this upstream, so doing what we should be doing anyway is a no-brainer.
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
{% extends "frame.html" %}
|
|
{% block body %}
|
|
|
|
<center>
|
|
<h2> Click to install the mitmproxy certificate: </h2>
|
|
</center>
|
|
<div id="certbank" class="row">
|
|
<div class="col-md-3">
|
|
<a href="/cert/pem"><i class="fa fa-apple fa-5x"></i></a>
|
|
<p>Apple</p>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<a href="/cert/p12"><i class="fa fa-windows fa-5x"></i></a>
|
|
<p>Windows</p>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<a href="/cert/pem"><i class="fa fa-android fa-5x"></i></a>
|
|
<p>Android</p>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<a href="/cert/pem"><i class="fa fa-asterisk fa-5x"></i></a>
|
|
<p>Other</p>
|
|
</div>
|
|
</div>
|
|
|
|
<hr/>
|
|
<div class="text-center">
|
|
Other mitmproxy users cannot intercept your connection.
|
|
</div>
|
|
<div class="text-center text-muted">
|
|
This page is served by your local mitmproxy instance. The certificate you are about to install has been uniquely generated on mitmproxy's first run and is not shared
|
|
between mitmproxy installations.
|
|
</div>
|
|
|
|
{% end %}
|