2014-09-08 14:02:31 +00:00
|
|
|
"""
|
2020-06-22 23:53:39 +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
|
2016-10-19 01:25:11 +00:00
|
|
|
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 = [
|
2020-04-29 03:35:24 +00:00
|
|
|
# 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.
|
2020-04-29 03:35:24 +00:00
|
|
|
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
|
|
|
]
|