mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
9af8f4bb31
This commit is largely based on work by Thiago Arrais (@thiagoarrais) and Shane Bradfield (@l33tLumberjack). I wasn't really able to get their PR reasonably merged onto the latest master, so I reapplied their changes manually here and did some further improvements on that.
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
"""
|
|
This example shows how to build a proxy based on mitmproxy's Flow
|
|
primitives.
|
|
|
|
Heads Up: In the majority of cases, you want to use inline scripts.
|
|
|
|
Note that request and response messages are not automatically replied to,
|
|
so we need to implement handlers to do this.
|
|
"""
|
|
from mitmproxy import controller, options, master
|
|
from mitmproxy.proxy import ProxyServer, ProxyConfig
|
|
|
|
|
|
class MyMaster(master.Master):
|
|
def run(self):
|
|
try:
|
|
master.Master.run(self)
|
|
except KeyboardInterrupt:
|
|
self.shutdown()
|
|
|
|
@controller.handler
|
|
def request(self, f):
|
|
print("request", f)
|
|
|
|
@controller.handler
|
|
def response(self, f):
|
|
print("response", f)
|
|
|
|
@controller.handler
|
|
def error(self, f):
|
|
print("error", f)
|
|
|
|
@controller.handler
|
|
def log(self, l):
|
|
print("log", l.msg)
|
|
|
|
|
|
opts = options.Options(cadir="~/.mitmproxy/")
|
|
config = ProxyConfig(opts)
|
|
server = ProxyServer(config)
|
|
m = MyMaster(opts, server)
|
|
m.run()
|