CAPEC-229: Serialized Data Parameter Blowup |
Description This attack exploits certain serialized data parsers (e.g., XML, YAML, etc.) which manage data in an inefficient manner. The attacker crafts an serialized data file with multiple configuration parameters in the same dataset. In a vulnerable parser, this results in a denial of service condition where CPU resources are exhausted because of the parsing algorithm. The weakness being exploited is tied to parser implementation and not language specific. Likelihood Of Attack Typical Severity Execution Flow Explore Survey the target: Using a browser or an automated tool, an attacker records all instances of web services to process requests using serialized data. | Techniques |
|---|
| Use an automated tool to record all instances of URLs to process requests from serialized data. | | Use a browser to manually explore the website and analyze how the application processes requests using serialized data. |
Exploit Launch a Blowup attack: The attacker crafts malicious messages that contain multiple configuration parameters in the same dataset. | Techniques |
|---|
| Send the malicious crafted message containing the multiple configuration parameters to the target URL, causing a denial of service. |
Prerequisites
| The server accepts input in the form of serialized data and is using a parser with a runtime longer than O(n) for the insertion of a new configuration parameter in the data container.(examples are .NET framework 1.0 and 1.1) |
Mitigations
| This attack may be mitigated completely by using a parser that is not using a vulnerable container. |
| Mitigation may limit the number of configuration parameters per dataset. |
Example Instances
In this example, assume that the victim is running a vulnerable parser such as .NET framework 1.0. This results in a quadratic runtime of O(n^2). <?xml version="1.0"?> <foo aaa="" ZZZ="" ... 999="" /> A document with n attributes results in (n^2)/2 operations to be performed. If an operation takes 100 nanoseconds then a document with 100,000 operations would take 500s to process. In this fashion a small message of less than 1MB causes a denial of service condition on the CPU resources. |
A YAML bomb leverages references within a YAML file to create exponential growth in memory requirements. By creating a chain of keys whose values are a list of multiple references to the next key in the chain, the amount of memory and processing required to handle the data grows exponentially. This may lead to denial of service or instability resulting from excessive resource consumption. |
Taxonomy Mappings Relevant to the WASC taxonomy mapping | Entry ID | Entry Name |
|---|
| 41 | XML Attribute Blowup |
Content History | Submissions |
|---|
| Submission Date | Submitter | Organization |
|---|
| 2014-06-23 (Version 2.6) | CAPEC Content Team | The MITRE Corporation | | | Modifications |
|---|
| Modification Date | Modifier | Organization |
|---|
| 2017-08-04 (Version 2.11) | CAPEC Content Team | The MITRE Corporation | | Updated Activation_Zone, Attack_Phases, Description, Description Summary, Examples-Instances, Injection_Vector, Methods_of_Attack, Payload, Related_Attack_Patterns, Typical_Likelihood_of_Exploit, Typical_Severity | | 2020-07-30 (Version 3.3) | CAPEC Content Team | The MITRE Corporation | | Updated @Name, Description, Example_Instances, Execution_Flow, Mitigations, Prerequisites | | 2020-12-17 (Version 3.4) | CAPEC Content Team | The MITRE Corporation | | Updated Taxonomy_Mappings | | 2022-09-29 (Version 3.8) | CAPEC Content Team | The MITRE Corporation | | Updated Example_Instances | | Previous Entry Names |
|---|
| Change Date | Previous Entry Name |
|---|
| 2020-07-30 (Version 3.3) | XML Attribute Blowup | |
More information is available — Please select a different filter.
|