This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Difference between revisions of "Format string attack"
Deleted user (talk | contribs) |
|||
Line 1: | Line 1: | ||
+ | http://www.textractarelli.com | ||
{{Template:Attack}} | {{Template:Attack}} | ||
Line 10: | Line 11: | ||
The Format String exploit occurs when the submitted data of an input string is evaluated as a command by the application. In this way, the attacker could execute code, read the stack, or cause a segmentation fault in the running application, causing new behaviors that could compromise the security or the stability of the system. | The Format String exploit occurs when the submitted data of an input string is evaluated as a command by the application. In this way, the attacker could execute code, read the stack, or cause a segmentation fault in the running application, causing new behaviors that could compromise the security or the stability of the system. | ||
− | To understand the attack, | + | To understand the attack, itâs necessary to understand the components that constitute it. |
− | + | â¢The '''Format Function''' is an ANSI C conversion function, like '''printf, fprintf''', which converts a primitive variable of the programming language into a human-readable string representation. | |
− | + | â¢The '''Format String''' is the argument of the Format Function and is an ASCII Z string which contains text and format parameters, like: '''printf ("The magic number is: %d\n", 1911)'''; | |
− | + | â¢The '''Format String Parameter''', like '''%x %s''' defines the type of conversion of the format function. | |
− | The attack could be executed when the application | + | The attack could be executed when the application doesnât properly validate the submitted input. In this case, if a Format String parameter, like %x, is inserted into the posted data, the string is parsed by the Format Function, and the conversion specified in the parameters is executed. However, the Format Function is expecting more arguments as input, and if these arguments are not supplied, the function could read or write the stack. |
In this way, it is possible to define a well-crafted input that could change the behavior of the format function, permitting the attacker to cause denial of service or to execute arbitrary commands. | In this way, it is possible to define a well-crafted input that could change the behavior of the format function, permitting the attacker to cause denial of service or to execute arbitrary commands. | ||
Line 63: | Line 64: | ||
Below are some format parameters which can be used and their consequences: | Below are some format parameters which can be used and their consequences: | ||
− | + | â¢"%x" Read data from the stack | |
− | + | â¢"%s" Read character strings from the process' memory | |
− | + | â¢"%n" Write an integer to locations in the process' memory | |
Line 135: | Line 136: | ||
snprintf ( buf, sizeof buf, argv [1] ) ; | snprintf ( buf, sizeof buf, argv [1] ) ; | ||
buf [ sizeof buf -1 ] = 0 | buf [ sizeof buf -1 ] = 0 | ||
− | printf ( | + | printf ( âBuffer size is: (%d) \nData input: %s \nâ , strlen (buf) , buf ) ; |
− | printf ( | + | printf ( âX equals: %d/ in hex: %#x\nMemory address for x: (%p) \nâ , x, x, &x) ; |
return 0 ; | return 0 ; | ||
} | } | ||
− | Next is the output that the program supplies when running with expected inputs. In this case the program received the string | + | Next is the output that the program supplies when running with expected inputs. In this case the program received the string âBobâ as input and returned it in the output. |
− | ./formattest | + | ./formattest âBobâ |
Buffer size is (16) | Buffer size is (16) | ||
Line 150: | Line 151: | ||
Memory address for x (0xbffff73c) | Memory address for x (0xbffff73c) | ||
− | Now the format string vulnerability will be explored. If the format string parameter | + | Now the format string vulnerability will be explored. If the format string parameter â%x %xâ is inserted in the input string, when the format function parses the argument, the output will display the name Bob, but instead of showing the %x string, the application will show the contents of a memory address. |
− | ./formattest | + | ./formattest âBob %x %xâ |
Buffer size is (27) | Buffer size is (27) | ||
Line 161: | Line 162: | ||
The inputs Bob and the format strings parameters will be attributed to the variable buf inside the code which should take the place of the %s in the Data input. So now the printf argument looks like: | The inputs Bob and the format strings parameters will be attributed to the variable buf inside the code which should take the place of the %s in the Data input. So now the printf argument looks like: | ||
− | printf ( | + | printf ( âBuffer size is: (%d) \n Data input: Bob %x %x \nâ , strlen (buf) , buf ) ; |
When the application prints the results, the format function will interpret the format string inputs, showing the content of a memory address. | When the application prints the results, the format function will interpret the format string inputs, showing the content of a memory address. |
Revision as of 20:45, 22 May 2009
- This is an Attack. To view all attacks, please see the Attack Category page.
Last revision: 05/22/2009
Description
The Format String exploit occurs when the submitted data of an input string is evaluated as a command by the application. In this way, the attacker could execute code, read the stack, or cause a segmentation fault in the running application, causing new behaviors that could compromise the security or the stability of the system.
To understand the attack, itâs necessary to understand the components that constitute it.
â¢The Format Function is an ANSI C conversion function, like printf, fprintf, which converts a primitive variable of the programming language into a human-readable string representation.
â¢The Format String is the argument of the Format Function and is an ASCII Z string which contains text and format parameters, like: printf ("The magic number is: %d\n", 1911);
â¢The Format String Parameter, like %x %s defines the type of conversion of the format function.
The attack could be executed when the application doesnât properly validate the submitted input. In this case, if a Format String parameter, like %x, is inserted into the posted data, the string is parsed by the Format Function, and the conversion specified in the parameters is executed. However, the Format Function is expecting more arguments as input, and if these arguments are not supplied, the function could read or write the stack.
In this way, it is possible to define a well-crafted input that could change the behavior of the format function, permitting the attacker to cause denial of service or to execute arbitrary commands.
If the application uses Format Functions in the source-code, which is able to interpret formatting characters, the attacker could explore the vulnerability by inserting formatting characters in a form of the website. For example, if the printf function is used to print the username inserted in some fields of the page, the website could be vulnerable to this kind of attack, as showed below:
printf (userName);
Following are some examples of Format Functions, which if not treated, can expose the application to the Format String Attack.
Table 1. Format Functions
Format function | Description |
---|---|
fprint | Writes the printf to a file |
printf | Output a formatted string |
sprintf | Prints into a string |
snprintf | Prints into a string checking the length |
vfprintf | Prints the a va_arg structure to a file |
vprintf | Prints the va_arg structure to stdout |
vsprintf | Prints the va_arg to a string |
vsnprintf | Prints the va_arg to a string checking the length |
Below are some format parameters which can be used and their consequences:
â¢"%x" Read data from the stack
â¢"%s" Read character strings from the process' memory
â¢"%n" Write an integer to locations in the process' memory
To discover whether the application is vulnerable to this type of attack, it's necessary to verify if the format function accepts and parses the format string parameters shown in table 2.
Table 2. Common parameters used in a Format String Attack.
Parameters | Output | Passed as |
---|---|---|
%% | % character (literal) | Reference |
%p | External representation of a pointer to void | Reference |
%d | Decimal | Value |
%c | Character | |
%u | Unsigned decimal | Value |
%x | Hexadecimal | Value |
%s | String | Reference |
%n | Writes the number of characters into a pointer | Reference |
Risk Factors
TBD
Examples
Example1
This example demonstrates how the application can behave when the format function does not receive the necessary treatments for validation in the input of format string.
First is the application operating with normal behavior and normal inputs, then, the application operating when the attacker inputs the format string and the resulting behavior.
Below is the source-code used for the example.
#include <stdio.h> #include <string.h> #include <stlib.h> int main (int argc, char **argv) { char buf [100] int x = 1 snprintf ( buf, sizeof buf, argv [1] ) ; buf [ sizeof buf -1 ] = 0 printf ( âBuffer size is: (%d) \nData input: %s \nâ , strlen (buf) , buf ) ; printf ( âX equals: %d/ in hex: %#x\nMemory address for x: (%p) \nâ , x, x, &x) ; return 0 ; }
Next is the output that the program supplies when running with expected inputs. In this case the program received the string âBobâ as input and returned it in the output.
./formattest âBobâ
Buffer size is (16) Data input : Bob X equals: 1/ in hex: 0x1 Memory address for x (0xbffff73c)
Now the format string vulnerability will be explored. If the format string parameter â%x %xâ is inserted in the input string, when the format function parses the argument, the output will display the name Bob, but instead of showing the %x string, the application will show the contents of a memory address.
./formattest âBob %x %xâ
Buffer size is (27) Data input : Bob bffff 8740 X equals: 1/ in hex: 0x1 Memory address for x (0xbffff73c)
The inputs Bob and the format strings parameters will be attributed to the variable buf inside the code which should take the place of the %s in the Data input. So now the printf argument looks like:
printf ( âBuffer size is: (%d) \n Data input: Bob %x %x \nâ , strlen (buf) , buf ) ;
When the application prints the results, the format function will interpret the format string inputs, showing the content of a memory address.
Example 2
Denial of Service
In this case, when an invalid memory address is requested, normally the program is terminated.
printf (userName);
The attacker could insert a sequence of format strings, making the program show the memory address where a lot of other data are stored, then, the attacker increases the possibility that the program will read an illegal address, crashing the program and causing its non-availability.
printf (%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s);