Execution Flow
1) Explore
[Determine parameters] Determine all user-controllable parameters of the application either by probing or by finding documentation
2) Experiment
[Cause error condition] Inject each parameter with content that causes an error condition to manifest
3) Experiment
[Modify parameters] Modify the content of each parameter according to observed error conditions
4) Exploit
[Follow up attack] Once the above steps have been repeated with enough parameters, the application will be sufficiently mapped out. The adversary can then launch a desired attack (for example, Blind SQL Injection)
Prerequisites
This class of attacks does not strictly require authorized access to the application. As Attackers use this attack process to classify, map, and identify vulnerable aspects of an application, it simply requires hypotheses to be verified, interaction with the application, and time to conduct trial-and-error activities.
Skills Required
Although fuzzing parameters is not difficult, and often possible with automated fuzzers, interpreting the error conditions and modifying the parameters so as to move further in the process of mapping the application requires detailed knowledge of target platform, the languages and packages used as well as software design.
Resources Required
Array
Mitigations
Application designers can construct a 'code book' for error messages. When using a code book, application error messages aren't generated in string or stack trace form, but are cataloged and replaced with a unique (often integer-based) value 'coding' for the error. Such a technique will require helpdesk and hosting personnel to use a 'code book' or similar mapping to decode application errors/logs in order to respond to them normally.
Application designers can wrap application functionality (preferably through the underlying framework) in an output encoding scheme that obscures or cleanses error messages to prevent such attacks. Such a technique is often used in conjunction with the above 'code book' suggestion.
Related Weaknesses
| CWE-ID |
Weakness Name |
|
Generation of Error Message Containing Sensitive Information The product generates an error message that includes sensitive information about its environment, users, or associated data. |
Submission
| Name |
Organization |
Date |
Date release |
| CAPEC Content Team |
The MITRE Corporation |
2014-06-23 +00:00 |
|
Modifications
| Name |
Organization |
Date |
Comment |
| CAPEC Content Team |
The MITRE Corporation |
2015-11-09 +00:00 |
Updated Description Summary |
| CAPEC Content Team |
The MITRE Corporation |
2018-07-31 +00:00 |
Updated References |
| CAPEC Content Team |
The MITRE Corporation |
2019-04-04 +00:00 |
Updated Related_Weaknesses |
| CAPEC Content Team |
The MITRE Corporation |
2019-09-30 +00:00 |
Updated Related_Attack_Patterns |
| CAPEC Content Team |
The MITRE Corporation |
2021-06-24 +00:00 |
Updated Related_Attack_Patterns |
| CAPEC Content Team |
The MITRE Corporation |
2021-10-21 +00:00 |
Updated Execution_Flow, Resources_Required |
| CAPEC Content Team |
The MITRE Corporation |
2022-09-29 +00:00 |
Updated Related_Attack_Patterns |