用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill t1616-call-control命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | T1616_call-control |
| description | Adversaries may make, forward, or block phone calls without user authorization. |
| category | information-gathering |
| version | 18.1 |
| author | cyberstrike-official |
| tags | ["mitre-attack","mobile","t1616","collection","impact","command-and-control","android"] |
| technique_id | T1616 |
| tactic | collection |
| all_tactics | ["collection","impact","command-and-control"] |
| platforms | ["Android"] |
| mitre_url | https://attack.mitre.org/techniques/T1616 |
| tech_stack | ["android"] |
| cwe_ids | ["CWE-200"] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Adversaries may make, forward, or block phone calls without user authorization. This could be used for adversary goals such as audio surveillance, blocking or forwarding calls from the device owner, or C2 communication.
Several permissions may be used to programmatically control phone calls, including:
ANSWER_PHONE_CALLS - Allows the application to answer incoming phone callsCALL_PHONE - Allows the application to initiate a phone call without going through the Dialer interfacePROCESS_OUTGOING_CALLS - Allows the application to see the number being dialed during an outgoing call with the option to redirect the call to a different number or abort the call altogetherMANAGE_OWN_CALLS - Allows a calling application which manages its own calls through the self-managed ConnectionService APIsBIND_TELECOM_CONNECTION_SERVICE - Required permission when using a ConnectionServiceWRITE_CALL_LOG - Allows an application to write to the device call log, potentially to hide malicious phone callsWhen granted some of these permissions, an application can make a phone call without opening the dialer first. However, if an application desires to simply redirect the user to the dialer with a phone number filled in, it can launch an Intent using Intent.ACTION_DIAL, which requires no specific permissions. This then requires the user to explicitly initiate the call or use some form of Input Injection to programmatically initiate it.
Platforms: Android
Determine if the target mobile environment is susceptible to Call Control by examining the target platforms (Android).
Review whether mitigations for T1616 are in place. If defenses are absent or misconfigured, this technique may be exploitable.
Users should be encouraged to be very careful with what applications they grant phone call-based permissions to. Further, users should not change their default call handler to applications they do not recognize.
| Finding | Severity | Impact |
|---|---|---|
| Call Control technique applicable | High | Collection |
| CWE ID | Title |
|---|---|
| CWE-200 | Exposure of Sensitive Information |