CWE-927 类弱点 16 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-927 指 Android 应用使用隐式意图传输敏感数据。因未指定接收方,任何具备相应意图过滤器的应用均可拦截并获取数据,导致信息泄露。攻击者常通过注册恶意广播接收者窃取隐私。开发者应避免使用隐式意图传递敏感信息,改为显式指定目标组件,或采用加密通信及权限控制,确保数据仅被可信应用处理。
Intent intent = new Intent(); intent.setAction("com.example.CreateUser"); intent.putExtra("Username", uname_string); intent.putExtra("Password", pw_string); sendBroadcast(intent);IntentFilter filter = new IntentFilter("com.example.CreateUser"); MyReceiver receiver = new MyReceiver(); registerReceiver(receiver, filter);Intent intent = new Intent(); intent.setAction("com.example.service.UserExists"); intent.putExtra("Username", uname_string); sendStickyBroadcast(intent);IntentFilter filter = new IntentFilter("com.example.service.UserExists"); MyReceiver receiver = new MyReceiver(); registerReceiver(receiver, filter);| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2024-3480 | Motorola Framework 安全漏洞 — Phones | 2.8 | Low | 2024-05-03 |
| CVE-2024-3108 | Motorola Time Weather Widget 安全漏洞 — Phones | 5.5 | Medium | 2024-05-03 |
| CVE-2023-41828 | Motorola Phone 安全漏洞 — Phones | 4.4 | Medium | 2024-05-03 |
| CVE-2023-41826 | Motorola Device Help 安全漏洞 — Phones | 5.1 | Medium | 2024-05-03 |
| CVE-2023-41824 | Motorola Phone Calls 安全漏洞 — Phones | 2.8 | Low | 2024-05-03 |
| CVE-2023-41820 | Motorola Ready For 安全漏洞 — Phones | 5.0 | Medium | 2024-05-03 |
| CVE-2023-41817 | Motorola Phone Calls 安全漏洞 — Phones | 2.8 | Low | 2024-05-03 |
| CVE-2023-44127 | LG Mobile 安全漏洞 — LG V60 Thin Q 5G(LMV600VM) | 3.6 | Low | 2023-09-27 |
| CVE-2023-44124 | LG Mobile 安全漏洞 — LG V60 Thin Q 5G(LMV600VM) | 6.1 | Medium | 2023-09-27 |
| CVE-2023-44122 | LG Mobile 安全漏洞 — LG V60 Thin Q 5G(LMV600VM) | 6.1 | Medium | 2023-09-27 |
| CVE-2023-31014 | NVIDIA GeForce Now 安全漏洞 — GeForce NOW for Android mobile and TV app | 4.2 | Medium | 2023-09-20 |
| CVE-2022-4903 | Codename One 安全漏洞 — CodenameOne | 5.0 | Medium | 2023-02-10 |
| CVE-2022-36830 | SAMSUNG Mobile devices 安全漏洞 — Charm by Samsung | 6.2 | Medium | 2022-08-05 |
| CVE-2022-36829 | SAMSUNG Mobile devices 安全漏洞 — Charm by Samsung | 6.2 | Medium | 2022-08-05 |
| CVE-2022-33734 | SAMSUNG Mobile devices 安全漏洞 — Charm by Samsung | 6.2 | Medium | 2022-08-05 |
| CVE-2022-33733 | SAMSUNG Mobile devices 安全漏洞 — Charm by Samsung | 6.2 | Medium | 2022-08-05 |
CWE-927 是常见的弱点类别,本平台收录该类弱点关联的 16 条 CVE 漏洞。