如何捕获 https 流量

如何捕获 https 流量

我正在尝试捕获我的 android 模拟器的请求。我想知道我的 android 应用程序使用的数据。我尝试了各种方法,但都没有用。我现在正尝试使用模拟器来做到这一点。我已经在 ubuntu 中模拟了我的 android 设备,我想使用工具捕获我的 android 模拟器(http 和 https)的所有流量。

我们在 Windows 中安装了 Fiddler,但是这个模拟器东西在那里不起作用。

答案1

考虑wireshark

sudo apt-get install wireshark

这应该可以帮助您根据各种过滤条件嗅探出从您的 android 模拟器到 http https 的任何流量。

答案2

使用wireshark或命令行工具tsharktcpdump是另一种选择。

sudo apt-get install tcpdump
tcpdump -i $interface

相关内容