mitmproxy/examples/proxapp.py

26 lines
858 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
2016-07-08 01:37:33 +00:00
import mitmproxy
2014-09-08 14:02:31 +00:00
app = Flask("proxapp")
@app.route('/')
def hello_world():
return 'Hello World!'
# Register the app using the magic domain "proxapp" on port 80. Requests to
# this domain and port combination will now be routed to the WSGI app instance.
2016-07-08 01:37:33 +00:00
def start():
2016-07-09 02:57:57 +00:00
mitmproxy.ctx.master.apps.add(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-07-09 02:57:57 +00:00
mitmproxy.ctx.master.apps.add(app, "example.com", 443)