mitmproxy/examples/simple/wsgi_flask_app.py

26 lines
870 B
Python
Raw Normal View History

2014-09-08 14:02:31 +00:00
"""
This example shows how to graft a WSGI app onto mitmproxy. In this
instance, we're using the Flask framework (http://flask.pocoo.org/) to expose
a single simplest-possible page.
"""
from flask import Flask
from mitmproxy.addons import wsgiapp
2014-09-08 14:02:31 +00:00
app = Flask("proxapp")
@app.route('/')
def hello_world():
return 'Hello World!'
2016-07-08 01:37:33 +00:00
def start():
2016-10-18 22:48:51 +00:00
# Host app at the magic domain "proxapp" on port 80. Requests to this
# domain and port combination will now be routed to the WSGI app instance.
return wsgiapp.WSGIApp(app, "proxapp", 80)
2014-09-08 14:02:31 +00:00
# SSL works too, but the magic domain needs to be resolvable from the mitmproxy machine due to mitmproxy's design.
# mitmproxy will connect to said domain and use serve its certificate (unless --no-upstream-cert is set)
# but won't send any data.
2016-10-18 22:48:51 +00:00
# mitmproxy.ctx.master.apps.add(app, "example.com", 443)