文件下载地址为:
https://wenda.zuncuang.com/charles-4.5.6-and-cracker.zip
此软件为当前最新
手机抓包的https接口时候,android手机适用于android N(android 7.X)以下,以上由于android机制问题,不能安装证书了,需要打包软甲的时候加入允许证书功能。官方的原话如下:
As of Android N, you need to add configuration to your app in order to have it trust the SSL certificates generated by Charles SSL Proxying. This means that you can only use SSL Proxying with apps that you control.
In order to configure your app to trust Charles, you need to add a Network Security Configuration File to your app. This file can override the system default, enabling your app to trust user installed CA certificates (e.g. the Charles Root Certificate). You can specify that this only applies in debug builds of your application, so that production builds use the default trust profile.
Add a file res/xml/network_security_config.xml to your app:
<network-security-config>
<debug-overrides>
<trust-anchors>
<!-- Trust user added CAs while debuggable only -->
<certificates src="user" />
</trust-anchors>
</debug-overrides>
</network-security-config>
Then add a reference to this file in your app's manifest, as follows:
<?xml version="1.0" encoding="utf-8"?>
<manifest ... >
<application android:networkSecurityConfig="@xml/network_security_config" ... >
...
</application>
</manifest>
软件下载地址:https://www.charlesproxy.com/
破解补丁下载地址:https://www.zzzmode.com/mytools/charles/
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!