Filter Failure through Buffer Overflow |
Attack Pattern ID: 24 (Detailed Attack Pattern Completeness: Complete) | Typical Severity: High | Status: Draft |
Summary
In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. lets the user input into the system unfiltered).
Attack Execution Flow
Survey:
The attacker surveys the target application, possibly as a valid and authenticated user
Attack Step Techniques
ID Attack Step Technique Description Environments 1 Spidering web sites for inputs that involve potential filtering
env-Web2 Brute force guessing of filtered inputs
env-AllIndicators
ID type Indicator Description Environments 1 Positive Software messages (e.g., "the following characters are not allowed...") indicate that filtered inputs are present in the software. (
env-Web env-ClientServer2 Positive Application uses predefined inputs (e.g., drop-down lists, radio buttons, selection lists, etc.)
env-Web env-ClientServer env-Local env-Embedded3 Negative Managed code (e.g., .NET, Java) is likely, based on URLs.
env-Web4 Negative Managed code (e.g., .NET, Java) is likely, based on files found in software.
env-ClientServer env-Local env-Embedded env-Peer2Peer env-CommProtocol5 Negative Java code is likely, based on standard disclaimers (e.g., "This software contains Java from Sun...."). Such declarations are frequent on commercial software that is based on Java.
env-Embedded env-Local env-ClientServer6 Inconclusive Java code is likely, based on one of the other indicators, but it could contain Java Native Interface (JNI) code. This is indicated by the inclusion of DLLs or equivalent binary object code with Java code.
env-Embedded env-Local env-ClientServer
Attempt injections:
Try to feed overly long data to the system. This can be done manually or a dynamic tool (black box) can be used to automate this. An attacker can also use a custom script for that purpose.
Attack Step Techniques
ID Attack Step Technique Description Environments 1 Brute force attack through black box penetration test tool.
env-Web env-ClientServer env-CommProtocol env-Peer2Peer2 Fuzzing of communications protocols
env-CommProtocol env-Peer2Peer env-ClientServer3 Manual testing of possible inputs with attack data.
env-AllOutcomes
ID type Outcome Description 1 Success Unexpected output from the application.2 Failure No unexpected output from the application.Security Controls
ID type Security Control Description 1 Detective Monitor and analyze logs for failures that exceed common usage sizes. For example, if typical transactions, even normal failed transactions, rarely exceed 250 characters, monitor logs for all attempts that contain 250 or more characters. In the event of successful exploitation, there may actually be no useful log. But an attacker's experiments will likely show up, giving clues to the ultimate attack.2 Corrective Disconnect or block connections from systems or users that exceed acceptable heuristics for normal transaction sizes.Monitor responses:
Watch for any indication of failure occurring. Carefully watch to see what happened when filter failure occurred. Did the data get in?
Attack Step Techniques
ID Attack Step Technique Description Environments 1 Boron tagging. Choose clear attack inputs that are easy to notice in output. In binary this is often 0xa5a5a5a5 (alternating 1s and 0s). Another obvious tag value is all zeroes, but it is not always obvious what goes wrong if the null values get into the data.
env-All2 Check Log files. An attacker with access to log files can look at the outcome of bad input.
env-Local env-EmbeddedSecurity Controls
ID type Security Control Description 1 Preventative Prevent access to log files that contain error output.2 Preventative Prevent access to and/or sanitize all error output.
Abuse the system through filter failure:
An attacker writes a script to consistently induce the filter failure.
Attack Step Techniques
ID Attack Step Technique Description Environments 1 DoS through filter failure. The attacker causes the system to crash or stay down because of its failure to filter properly.
env-All2 Malicious code execution. An attacker introduces a malicious payload and executes arbitrary code on the target system.
env-All3 An attacker can use the filter failure to introduce malicious data into the system and leverage a subsequent SQL injection, Cross Site Scripting, Command Injection or similar weakness if it exists.
env-AllIndicators
ID type Indicator Description Environments 1 Positive Failure mode of the software (perhaps as a safety mechanism) includes exiting or ceasing to respond.
env-All2 Negative Failures do not involve stopping services, rejecting inputs or connections, and do not affect other simultaneous users of the software.
env-AllOutcomes
ID type Outcome Description 1 Success Attacker-supplied code is executed on the target system.2 Success The software stops responding for at least two orders of magnitude longer than the input takes to send. (e.g., 0.1s to send input induces at least a 10 second period non-responsiveness).3 Success Non-response by an attacker's input has an impact on the quality of service of other simultaneous users of the software.Security Controls
ID type Security Control Description 1 Detective Monitor software response time regularly, and react to unexpected variations.2 Preventative Execute filtering modules with minimal privileges.3 Preventative Execute filtering modules in operating system "sandboxes" or similar containers.
Description
Sending in arguments that are too long to cause the filter to fail open is one instantiation of the filter failure attack. The Taylor UUCP daemon is designed to remove hostile arguments before they can be executed. If the arguments are too long, however, the daemon fails to remove them. This leaves the door open for attack.
Description
A filter is used by a web application to filter out characters that may allow the input to jump from the data plane to the control plane when data is used in a SQL statement (chaining this attack with the SQL injection attack). Leveraging a buffer overflow the attacker makes the filter fail insecurely and the tainted data is permitted to enter unfiltered into the system, subsequently causing a SQL injection.
Description
Audit Truncation and Filters with Buffer Overflow. Sometimes very large transactions can be used to destroy a log file or cause partial logging failures. In this kind of attack, log processing code might be examining a transaction in real-time processing, but the oversized transaction causes a logic branch or an exception of some kind that is trapped. In other words, the transaction is still executed, but the logging or filtering mechanism still fails. This has two consequences, the first being that you can run transactions that are not logged in any way (or perhaps the log entry is completely corrupted). The second consequence is that you might slip through an active filter that otherwise would stop your attack.
Skill or Knowledge Level: Low
An attacker can simply overflow a buffer by inserting a long string into an attacker-modifiable injection vector. The result can be a DoS.
High : Exploiting a buffer overflow to inject malicious code into the stack of a software system or even the heap can require a higher skill level.
Try to feed very long data as input to the program and watch for any indication that a failure has occurred. Then see if input has been admitted into the system.
Some dynamic analysis tools may be helpful here to determine whether failure can be induced by feeding overly long inputs strings into the system.
Many exceptions are thrown by the application's filter modules in a short period of time. Check the logs. See if the probes are coming from the same IP address.
An attacker may temporally space out their probes.
An attacker may perform probes from different IP addresses.
Make sure that ANY failure occurring in the filtering or input validation routine is properly handled and that offending input is NOT allowed to go through. Basically make sure that the vault is closed when failure occurs.
Pre-design: Use a language or compiler that performs automatic bounds checking.
Pre-design through Build: Compiler-based canary mechanisms such as StackGuard, ProPolice and the Microsoft Visual Studio /GS flag. Unless this provides automatic bounds checking, it is not a complete solution.
Operational: Use OS-level preventative functionality. Not a complete solution.
Design: Use an abstraction library to abstract away risky APIs. Not a complete solution.
Since the input enters the system effectively unfiltered, it may be dangerous if used in a SQL statement (i.e. SQL injection), as part of the command executed on the target system (i.e. command injection), as part of the reflection API (i.e. reflection injection), placed in logs (i.e. log injection), or perhaps to overflow another buffer in the system and give the attacker ability to execute arbitrary code. A subsequent buffer overflow may not even be required for that as the original one may be leveraged if the attacker gets lucky, that is the payload is activated in the filter itself, which also becomes the activation zone.
Since no input validation is effectively performed in this situation, the impact of the attack may be a complete compromise of confidentiality, integrity, accountability and availability services.
CWE-ID | Weakness Name | Weakness Relationship Type |
---|---|---|
120 | Buffer Copy without Checking Size of Input ('Classic Buffer Overflow') | Targeted |
119 | Failure to Constrain Operations within the Bounds of a Memory Buffer | Targeted |
118 | Improper Access of Indexable Resource ('Range Error') | Targeted |
74 | Failure to Sanitize Data into a Different Plane ('Injection') | Targeted |
20 | Improper Input Validation | Targeted |
680 | Integer Overflow to Buffer Overflow | Targeted |
733 | Compiler Optimization Removal or Modification of Security-critical Code | Secondary |
697 | Insufficient Comparison | Targeted |
Nature | Type | ID | Name | Description | View(s) this relationship pertains to![]() |
---|---|---|---|---|---|
CanFollow | ![]() | 100 | Overflow Buffers | Mechanism of Attack1000 | |
ChildOf | ![]() | 100 | Overflow Buffers | Mechanism of Attack (primary)1000 | |
CanFollow | ![]() | 100 | Overflow Buffers | Mechanism of Attack1000 |
Input validation and filtering logic should fail securely (vault doors are closed)
All input should be treated as rejected by default, unless explicitly allowed by the filter. Thus if the filter fails before "blessing" the data, it will be rejected.
CWE - Buffer Errors
Submissions | ||||
---|---|---|---|---|
Submitter | Organization | Date | ||
G. Hoglund and G. McGraw. Exploiting Software: How to Break Code. Addison-Wesley, February 2004. | Cigital, Inc | 2007-03-01 |
Modifications | |||||
---|---|---|---|---|---|
Modifier | Organization | Date | Comments | ||
Eugene Lebanidze | Cigital, Inc | 2007-02-26 | Fleshed out content to CAPEC schema from the original descriptions in "Exploiting Software" | ||
Sean Barnum | Cigital, Inc | 2007-03-05 | Review and revise | ||
Paco Hope | Cigital, Inc. | 2007-10-20 | Added extended Attack Execution Flow |