SV.TAINTED.CALL.INDEX_ACCESSUnvalidated input used in array indexing by function callWhenever input is accepted from the user or the outside environment, it should be validated for type, length, format, and range before it is used. Until properly validated, the data is said to be tainted. The SV.TAINTED family of checkers looks for the use of tainted data in code. The SV.TAINTED.CALL.INDEX_ACCESS checker flags code that passes tainted data to functions that will use it to access an array. Vulnerability and riskWhen input to code isn't validated properly, an attacker can craft the input in a form that isn't expected by the application. The receipt of unintended input can result in altered control flow, arbitrary resource control, and arbitrary code execution. With this sort of opportunity, an attacker could
Using values supplied by the user as an array index can lead to index out-of-bounds vulnerabilities. If the vulnerable function allows for the reading from or writing to arbitrary memory, it could lead to application instability or, with a carefully constructed attack, data disclosure vulnerabilities or code injection. Mitigation and preventionTo avoid tainted input errors:
Vulnerable code example1 void setSize(int index, int size) { 2 sizes[index] = size; 3 } 4 5 void getSize() { 6 unsigned num, size; 7 int i; 8 scanf("%u %u", &num, &size); 9 setSize(num, size); 10 } Klocwork produces an issue report at line 9 indicating that unvalidated integer 'num' received through a call to 'scanf' at line 8 can be used to access an array through a call to 'setSize' at line 9. In this case, the SV.TAINTED.CALL.INDEX_ACCESS checker has found code that passes potentially tainted data to a function that will use it as an array index. Fixed code example1 void setSize(int index, int size) { 2 sizes[index] = size; 3 } 4 5 void getSize() { 6 unsigned num, size; 7 int i; 8 scanf("%u %u", &num, &size); // validate that num is a valid index for sizes 9 if (num < num_sizes) 10 { 11 setSize(num, size); 12 } 13 } The Klocwork checker no longer produces an issue report because the integer value 'num' is validated before it's passed to the 'setSize' function and used as an array index. Related checkersExternal guidance
|