CAPEC-660: Root/Jailbreak Detection Evasion via Hooking

Detailed Stable 严重程度: Very High 攻击可能性: Medium

CAPEC版本: 3.9

更新日期: 2023-01-24

攻击模式描述

An adversary forces a non-restricted mobile application to load arbitrary code or code files, via Hooking, with the goal of evading Root/Jailbreak detection. Mobile device users often Root/Jailbreak their devices in order to gain administrative control over the mobile operating system and/or to install third-party mobile applications that are not provided by authorized application stores (e.g. Google Play Store and Apple App Store). Adversaries may further leverage these capabilities to escalate privileges or bypass access control on legitimate applications. Although many mobile applications check if a mobile device is Rooted/Jailbroken prior to authorized use of the application, adversaries may be able to "hook" code in order to circumvent these checks. Successfully evading Root/Jailbreak detection allows an adversary to execute administrative commands, obtain confidential data, impersonate legitimate users of the application, and more.

执行流程

步骤 1 Explore

[Identify application with attack potential] The adversary searches for and identifies a mobile application that could be exploited for malicious purposes (e.g. banking, voting, or medical applications).

技术:
  • Search application stores for mobile applications worth exploiting
步骤 2 Experiment

[Develop code to be hooked into chosen target application] The adversary develops code or leverages existing code that will be hooked into the target application in order to evade Root/Jailbreak detection methods.

技术:
  • Develop code or leverage existing code to bypass Root/Jailbreak detection methods.
  • Test the code to see if it works.
  • Iteratively develop the code until Root/Jailbreak detection methods are evaded.
步骤 3 Exploit

[Execute code hooking to evade Root/Jailbreak detection methods] Once hooking code has been developed or obtained, execute the code against the target application to evade Root/Jailbreak detection methods.

技术:
  • Hook code into the target application.

前提条件

  • The targeted application must be non-restricted to allow code hooking.

所需技能

High Knowledge about Root/Jailbreak detection and evasion techniques.
Medium Knowledge about code hooking.

所需资源

  • The adversary must have a Rooted/Jailbroken mobile device.
  • The adversary needs to have enough access to the target application to control the included code or file.

后果影响

影响范围: Integrity Authorization

技术影响: Execute Unauthorized Commands

说明: Through Root/Jailbreak Detection Evasion via Hooking, the adversary compromises the integrity of the application.

影响范围: Confidentiality Access Control Authorization

技术影响: Gain Privileges

影响范围: Confidentiality Access Control

技术影响: Read Data

说明: An adversary may leverage Root/Jailbreak Detection Evasion via Hooking in order to obtain sensitive information.

缓解措施

Ensure mobile applications are signed appropriately to avoid code inclusion via hooking.

Inspect the application's memory for suspicious artifacts, such as shared objects/JARs or dylibs, after other Root/Jailbreak detection methods.

Inspect the application's stack trace for suspicious method calls.

Allow legitimate native methods, and check for non-allowed native methods during Root/Jailbreak detection methods.

For iOS applications, ensure application methods do not originate from outside of Apple's SDK.

示例实例

An adversary targets a non-restricted iOS banking application in an attempt to compromise sensitive user data. The adversary creates Objective-C runtime code that always returns "false" when checking for the existence of the Cydia application. The malicious code is then dynamically loaded into the application via the DYLD_INSERT_LIBRARIES environment variable. When the banking applications checks for Cydia, the hooked code returns "false", so the application assumes the device is stock (i.e. not Jailbroken) and allows it to access the application. However, the adversary has just evaded Jailbreak detection and is now able to glean user credentials and/or transaction details.

An adversary targets a mobile voting application on an Android device with the goal of committing voter fraud. Leveraging the Xposed framework, the adversary is able to create and hook Java code into the application that bypasses Root detection methods. When the voting application attempts to detect a Rooted device by checking for commonly known installed packages associated with Rooting, the hooked code removes the suspicious packages before returning to the application. As a result, the application believes the device is stock (i.e. not Rooted) when in actuality this is not the case. Having evading Root detection, the adversary is now able to cast votes for the candidate of their choosing as a variety of different users.

分类映射

分类名称 条目ID 条目名称
ATTACK 1055 Process Injection
关键信息

CAPEC ID: CAPEC-660

抽象级别: Detailed

状态: Stable

典型严重程度: Very High

攻击可能性: Medium

相关攻击模式
相关CWE弱点