CAPEC-228: DTD Injection

Detailed Draft 严重程度: Medium

CAPEC版本: 3.9

更新日期: 2023-01-24

攻击模式描述

An attacker injects malicious content into an application's DTD in an attempt to produce a negative technical impact. DTDs are used to describe how XML documents are processed. Certain malformed DTDs (for example, those with excessive entity expansion as described in CAPEC 197) can cause the XML parsers that process the DTDs to consume excessive resources resulting in resource depletion.

执行流程

步骤 1 Explore

[Survey the target] Using a browser or an automated tool, an attacker records all instances of web services to process XML requests.

技术:
  • Use an automated tool to record all instances of URLs to process XML requests.
  • Use a browser to manually explore the website and analyze how the application processes XML requests.
步骤 2 Explore

[Determine use of XML with DTDs] Examine application input to identify XML input that leverage the use of one or more DTDs.

技术:
  • Examine any available documentation for the application that discusses expected XML input.
  • Exercise the application using XML input with and without a DTD specified. Failure without DTD likely indicates use of DTD.
步骤 3 Exploit

[Craft and inject XML containg malicious DTD payload]

技术:
  • Inject XML expansion attack that creates a Denial of Service impact on the targeted server using its DTD.
  • Inject XML External Entity (XEE) attack that can cause the disclosure of confidential information, execute abitrary code, create a Denial of Service of the targeted server, or several other malicious impacts.

前提条件

  • The target must be running an XML based application that leverages DTDs.

缓解措施

Design: Sanitize incoming DTDs to prevent excessive expansion or other actions that could result in impacts like resource depletion.

Implementation: Disallow the inclusion of DTDs as part of incoming messages.

Implementation: Use XML parsing tools that protect against DTD attacks.

关键信息

CAPEC ID: CAPEC-228

抽象级别: Detailed

状态: Draft

典型严重程度: Medium

相关攻击模式
相关CWE弱点