CS.SV.TAINTED.CALL.BINOP
Use of Unvalidated Integers in Binary Operations via function calls
Whenever input data is accepted from the user or the outside environment, it should be validated for type, length, format, and range before it is used. Until this data is properly validated, it is said to be tainted. The CS.SV.TAINTED family of checkers looks for the use of tainted data in code.
The CS.SV.TAINTED.BINOP checker flags code that uses tainted data, via a function call, in arithmetic binary operations, such as addition, subtraction, or multiplication.
Vulnerability and risk
- Provide unexpected values and cause a program crash
- Cause excessive resource consumption
- Read confidential data
- Use malicious input to modify data or alter control flow
- Execute arbitrary commands
Mitigation and prevention
- Understand all the potential areas in which untrusted inputs could enter your software: parameters or arguments, cookies, input read from the network, environment variables, reverse DNS lookups, query results, filenames, databases, and any external systems.
- Use a whitelist or 'known good' policy for inputs, rather than relying only on a blacklist or 'known bad' strategy.
- Make sure all relevant properties of the input are validated, including length, type of input, ranges, missing or extra inputs, syntax, and consistency.
- If there are security checks on the client side of an applications, make sure they are duplicated on the server side.
- If the application combines inputs from multiple sources, perform the validation after the sources have been combined.
Vulnerable code example
namespace myNamespace
{
class BinaryOprations
{
public static int Addition(int value1, int value2)
{
value1 = value1+ value2;
}
public static void TrySum()
{
int sum = MIN_VALUE;
int input_value = Console.Read();
sum = Addition(sum, input_value);
}
}
}
Klocwork produces an issue report at line 14 indicating that unvalidated integer 'input_value', received through a call to 'Console.Read()' at line 13, can be used in the binary operation at line 7, via the function call at line 14, leading to potentially uncontrolled integer overflows and undefined behavior. The CS.SV.TAINTED.CALL.BINOP checker warns of this potentially harmful scenario.
Fixed code example
namespace myNamespace
{
class BinaryOprations
{
public static int Addition(int value1, int value2)
{
value1 = value1+ value2;
}
public static void TrySum()
{
int sum = MIN_VALUE;
int input_value = Console.Read();
// Validate input before using it in a memory allocation
if (input_value > 0 && input_value <= MAX_BUFFER_SIZE)
{
sum = Addition(sum, input_value);
}
}
}
}
In this example, the externally controlled data is used only after verification at line 16, and thus the code is no longer vulnerable to the integer overflow attacks.
Related checkers
External guidance
Security training
Application security training materials provided by Secure Code Warrior.