初识安卓漏洞
让我们基于文章 Android 组件逻辑漏洞漫谈对漏洞简单分类。使用开源项目 InsecureShop 作为示例
# Activity
activity 中一个重要的属性是 android:exported 。表明当前 Activity 是否可以被其他应用启动。
# Intent Redirection
android:exported 属性为 true 的 Activty 可以接收第三方应用的 Intent。假如将不可信 Intent 进行转发,就有可能造成未导出组件泄露
# CVE-2024-26131
12345678910111213141516if...
more...







