博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mitmproxy(Mitmdump) 二次代理使用方式启动python
阅读量:5025 次
发布时间:2019-06-12

本文共 1073 字,大约阅读时间需要 3 分钟。

Mitm配置二次代理

主要是最近要抓取一些国外的app数据,配合python,所以需要代理

mitmproxy的官方文档

usage: mitmproxy [options]optional arguments:-h, --help            show this help message and exit--version            show version number and exit--options            Show all options and their default values--commands            Show all commands and their signatures--confdir PATH        Path to the mitmproxy config directory--set option[=value]  Set an option. When the value is omitted, booleans areset to true, strings and integers are set to None (ifpermitted), and sequences are emptied. Boolean valuescan be true, false or toggle.-q, --quiet          Quiet.-v, --verbose        Increase log verbosity.--mode MODE, -m MODE  Mode can be "regular", "transparent", "socks5","reverse:SPEC", or "upstream:SPEC". For reverse andupstream proxy modes, SPEC is host specification inthe form of "http[s]://host[:port]".

可以通过“upstream:SPEC”的方式来启动upstream模式,SPEC是主机代理模式,主机规范:

http[s]://host[:port],代理写法如下:
mitmdump --mode upstream:https://127.0.0.1:1087/ -s test.py

 

转载于:https://www.cnblogs.com/khaha/p/10955420.html

你可能感兴趣的文章
ASP.NET MVC 3–Global Action Filters
查看>>
图像切割之(一)概述
查看>>
JAVA修饰符类型(public,protected,private,friendly)
查看>>
flex利用webservice上传照片
查看>>
IOS开发之Bug--使用KVC的易错情况
查看>>
python list和tuple
查看>>
基础薄弱的反思
查看>>
[转]oracle10客户端PL/SQL Developer如何连接远程服务器上的oracle数据库
查看>>
HTML5 表单元素和属性
查看>>
使用SpringSocial开发QQ登录
查看>>
好玩的游戏
查看>>
代码说明call和apply方法的区别 (咱们这方面讲解的少,这样的题有变式,需要举例讲解一下)...
查看>>
T-SQL 类型转换
查看>>
在eclipse中设计BPMN 2.0工作流定义的根本步骤
查看>>
Json对象与Json字符串互转(4种转换方式)
查看>>
PAT甲级1002 链表实现方法
查看>>
查看Linux信息
查看>>
Python中sys模块sys.argv取值并判断
查看>>
【详记MySql问题大全集】四、设置MySql大小写敏感(踩坑血泪史)
查看>>
并查集
查看>>