CAPEC-206: Signing Malicious Code

Detailed Draft 严重程度: Very High

CAPEC版本: 3.9

更新日期: 2023-01-24

攻击模式描述

The adversary extracts credentials used for code signing from a production environment and then uses these credentials to sign malicious content with the developer's key. Many developers use signing keys to sign code or hashes of code. When users or applications verify the signatures are accurate they are led to believe that the code came from the owner of the signing key and that the code has not been modified since the signature was applied. If the adversary has extracted the signing credentials then they can use those credentials to sign their own code bundles. Users or tools that verify the signatures attached to the code will likely assume the code came from the legitimate developer and install or run the code, effectively allowing the adversary to execute arbitrary code on the victim's computer. This differs from CAPEC-673, because the adversary is performing the code signing.

执行流程

步骤 1 Explore

The adversary first attempts to obtain a digital certificate in order to sign their malware or tools. This certificate could be stolen, created by the adversary, or acquired normally through a certificate authority.

步骤 2 Explore

Based on the type of certificate obtained, the adversary will create a goal for their attack. This is either a broad or targeted attack. If an adversary was able to steal a certificate from a targeted organization, they could target this organization by pretending to have legitimate code signed by them. In other cases, the adversary would simply sign their malware and pose as legitimate software such that any user might trust it. This is the more broad approach

步骤 3 Experiment

The adversary creates their malware and signs it with the obtained digital certificate. The adversary then checks if the code that they signed is valid either through downloading from the targeted source or testing locally.

步骤 4 Exploit

Once the malware has been signed, it is then deployed to the desired location. They wait for a trusting user to run their malware, thinking that it is legitimate software. This malware could do a variety of things based on the motivation of the adversary.

前提条件

  • The targeted developer must use a signing key to sign code bundles. (Note that not doing this is not a defense - it only means that the adversary does not need to steal the signing key before forging code bundles in the developer's name.)

所需资源

  • None: No specialized resources are required to execute this type of attack.

缓解措施

Ensure digital certificates are protected and inaccessible by unauthorized uses.

If a digital certificate has been compromised it should be revoked and regenerated.

Even if a piece of software has a valid and trusted digital signature, it should be assessed for any weaknesses and vulnerabilities.

分类映射

分类名称 条目ID 条目名称
ATTACK 1553.002 Subvert Trust Controls:Code Signing
关键信息

CAPEC ID: CAPEC-206

抽象级别: Detailed

状态: Draft

典型严重程度: Very High

相关攻击模式
相关CWE弱点