2022-04-28 16:01:33 +00:00
|
|
|
|
<details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 推特 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 你在一家**网络安全公司**工作吗?你想在HackTricks中看到你的**公司广告**吗?或者你想获得**PEASS的最新版本或下载PDF格式的HackTricks**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
- **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f)或[**电报群组**](https://t.me/peass),或者**关注**我在**Twitter**上的[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
- **通过向[hacktricks仓库](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud仓库](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享你的黑客技巧**。
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
<figure><img src="/.gitbook/assets/image (675).png" alt=""><figcaption></figcaption></figure>
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
找到最重要的漏洞,以便您可以更快地修复它们。Intruder跟踪您的攻击面,运行主动威胁扫描,发现整个技术堆栈中的问题,从API到Web应用程序和云系统。[**立即免费试用**](https://www.intruder.io/?utm\_source=referral\&utm\_campaign=hacktricks)。
|
|
|
|
|
|
|
|
|
|
{% embed url="https://www.intruder.io/?utm_campaign=hacktricks&utm_source=referral" %}
|
|
|
|
|
|
|
|
|
|
***
|
|
|
|
|
|
|
|
|
|
有些应用程序不喜欢用户下载的证书,因此为了检查某些应用程序的网络流量,我们实际上必须对应用程序进行反编译,并添加一些内容并重新编译它。
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
# 自动
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
工具[**https://github.com/shroudedcode/apk-mitm**](https://github.com/shroudedcode/apk-mitm)将**自动**对应用程序进行必要的更改,以开始捕获请求,并禁用证书固定(如果有)。
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
# 手动
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
首先,我们对应用程序进行反编译:`apktool d *file-name*.apk`
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
|
|
|
|
![](../../.gitbook/assets/img9.png)
|
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
然后,我们进入**Manifest.xml**文件并向下滚动到`<\application android>`标签,如果尚未存在,则添加以下行:
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
|
|
|
|
`android:networkSecurityConfig="@xml/network_security_config`
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
添加之前:
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
|
|
|
|
![](../../.gitbook/assets/img10.png)
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
添加之后:
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
|
|
|
|
![](../../.gitbook/assets/img11.png)
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
现在进入**res/xml**文件夹,并创建/修改名为network\_security\_config.xml的文件,内容如下:
|
2020-08-07 08:50:39 +00:00
|
|
|
|
```markup
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<network-security-config>
|
|
|
|
|
<base-config>
|
|
|
|
|
<trust-anchors>
|
|
|
|
|
<!-- Trust preinstalled CAs -->
|
|
|
|
|
<certificates src="system" />
|
|
|
|
|
<!-- Additionally trust user added CAs -->
|
|
|
|
|
<certificates src="user" />
|
|
|
|
|
</trust-anchors>
|
|
|
|
|
</base-config>
|
|
|
|
|
</network-security-config>
|
2020-08-07 08:50:39 +00:00
|
|
|
|
```
|
2023-08-03 19:12:22 +00:00
|
|
|
|
然后保存文件并退出所有目录,使用以下命令重新构建apk:`apktool b *文件夹名称/* -o *输出文件.apk*`
|
2020-08-07 08:50:39 +00:00
|
|
|
|
|
|
|
|
|
![](../../.gitbook/assets/img12.png)
|
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
最后,您只需要**签署新应用程序**。[阅读此页面的Smali部分 - 反编译/修改/编译以了解如何签署](smali-changes.md#sing-the-new-apk)。
|
|
|
|
|
|
|
|
|
|
<figure><img src="/.gitbook/assets/image (675).png" alt=""><figcaption></figcaption></figure>
|
|
|
|
|
|
|
|
|
|
查找最重要的漏洞,以便更快地修复它们。Intruder跟踪您的攻击面,运行主动威胁扫描,发现整个技术堆栈中的问题,从API到Web应用程序和云系统。[**立即免费试用**](https://www.intruder.io/?utm\_source=referral\&utm\_campaign=hacktricks)。
|
|
|
|
|
|
|
|
|
|
{% embed url="https://www.intruder.io/?utm\_campaign=hacktricks&utm\_source=referral" %}
|
|
|
|
|
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
- 您在**网络安全公司**工作吗?您想在HackTricks中看到您的**公司广告**吗?或者您想获得**PEASS的最新版本或下载PDF格式的HackTricks**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-09-03 01:34:43 +00:00
|
|
|
|
- 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f)或[**电报群组**](https://t.me/peass),或在**Twitter**上**关注**我[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**。**
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **通过向[hacktricks repo](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享您的黑客技巧**。
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|