CWE-925 类弱点 3 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-925 属于意图验证不当漏洞,指 Android 应用中的广播接收器未正确验证传入 Intent 的来源合法性。攻击者通常通过构造恶意 Intent 伪装成系统或授权应用,触发接收器执行非预期操作,从而引发权限提升或数据泄露。开发者应严格校验 Intent 的发送者签名或权限,仅处理可信来源的广播,并避免注册接收仅由系统发出的隐式 Intent,以阻断非法调用路径。
<manifest package="com.example.vulnerableApplication"> <application> ... <receiver android:name=".ShutdownReceiver"> <intent-filter> <action android:name="android.intent.action.ACTION_SHUTDOWN" /> </intent-filter> </receiver> ... </application> </manifest>... IntentFilter filter = new IntentFilter(Intent.ACTION_SHUTDOWN); BroadcastReceiver sReceiver = new ShutDownReceiver(); registerReceiver(sReceiver, filter); ... public class ShutdownReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, final Intent intent) { mainActivity.saveLocalData(); mainActivity.stopActivity(); } }| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2026-33173 | Rails 安全漏洞 — activestorage | 8.1 | - | 2026-03-23 |
| CVE-2024-10576 | Transsion Holdings Infinix Mobile devices 安全漏洞 — com.transsion.agingfunction | - | - | 2024-12-04 |
| CVE-2023-44126 | LG Mobile 安全漏洞 — LG V60 Thin Q 5G(LMV600VM) | 3.6 | Low | 2023-09-27 |
CWE-925 是常见的弱点类别,本平台收录该类弱点关联的 3 条 CVE 漏洞。