前序:
mitmproxy真的很強(qiáng)大卢鹦,或許是大家都各自使用锻离,或者沒有相關(guān)的需求,導(dǎo)致我廢了很大精力找了很久的資料都很難找到二次代理的配置方法槽棍,看了很久源代碼加上搜了很久的資料捉蚤,最終讓我終于找到方法,下面記錄一下炼七,大家就不用跟我一樣踩坑了缆巧。
以下配置使用mitmproxy版本信息如下
Mitmproxy: 4.0.4
Python: 3.6.3
配置步驟實(shí)際相當(dāng)簡(jiǎn)單,但所有步驟缺一不可:
第一步 命令行啟用upstream模式
注:只有在一開始啟動(dòng)了upstream模式豌拙,后續(xù)才可以進(jìn)行定制化跳轉(zhuǎn)
mitmdump --mode upstream:http://default-upstream-proxy.local:8080/ -s ./change_upstream_proxy.py
第二步 mitmdump腳本根據(jù)所需定義規(guī)則跳轉(zhuǎn)不同的二級(jí)代理
def request(flow: http.HTTPFlow) -> None:
if flow.request.method == "CONNECT":
# If the decision is done by domain, one could also modify the server address here.
# We do it after CONNECT here to have the request data available as well.
return
client_ip = flow.client_conn.address[0]
if 'ip.cn' in flow.request.url:
ctx.log.info(flow.request.url)
proxy =("localhost", 8888)
else:
proxy = ("localhost", 3800)
# 這里配置二級(jí)代理的ip地址和端口
if flow.live:
flow.live.change_upstream_proxy_server(proxy)
第三步 測(cè)試結(jié)果
設(shè)備連接mitmproxy后陕悬,訪問http://www.ip.cn 及 http://httpbin.org/ip