mitmproxy/examples/addons/wsgi-flask-app.py

28 lines
908 B
Python
Raw Normal View History

2014-09-08 14:02:31 +00:00
"""
Host a WSGI app in mitmproxy.
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('/')
2017-04-28 21:56:14 +00:00
def hello_world() -> str:
2014-09-08 14:02:31 +00:00
return 'Hello World!'
2020-01-20 18:47:14 +00:00
2020-01-20 18:25:30 +00:00
addons = [
# Host app at the magic domain "example.com" on port 80. Requests to this
2016-10-18 22:48:51 +00:00
# domain and port combination will now be routed to the WSGI app instance.
wsgiapp.WSGIApp(app, "example.com", 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)
2020-01-20 18:25:30 +00:00
]