前序:
mitmproxy真的很強(qiáng)大,或許是大家都各自使用,或者沒(méi)有相關(guān)的需求,導(dǎo)致我廢了很大精力找了很久的資料都很難找到二次代理的配置方法,看了很久源代碼加上搜了很久的資料,最終讓我終于找到方法,下面記錄一下,大家就不用跟我一樣踩坑了。
成都創(chuàng)新互聯(lián)是專(zhuān)業(yè)的蓬溪網(wǎng)站建設(shè)公司,蓬溪接單;提供成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行蓬溪網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
以下配置使用mitmproxy版本信息如下
Mitmproxy: 4.0.4
Python: 3.6.3
配置步驟實(shí)際相當(dāng)簡(jiǎn)單,但所有步驟缺一不可:
注:只有在一開(kāi)始啟動(dòng)了upstream模式,后續(xù)才可以進(jìn)行定制化跳轉(zhuǎn)
mitmdump --mode upstream:http://default-upstream-proxy.local:8080/ -s ./change_upstream_proxy.py
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)
設(shè)備連接mitmproxy后,訪問(wèn)http://www.ip.cn 及 http://httpbin.org/ip