You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
550 B
27 lines
550 B
6 years ago
|
/*
|
||
|
* Copyright (c) 2018-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
extern int __infer_taint_source();
|
||
|
|
||
|
void basic_bad() {
|
||
|
int arr[10];
|
||
|
int source = __infer_taint_source();
|
||
|
arr[source] = 2;
|
||
|
}
|
||
|
|
||
|
int multi_level_source_bad() { return __infer_taint_source(); }
|
||
|
|
||
|
void multi_level_sink_bad(int i) {
|
||
|
int arr[10];
|
||
|
if (i > 0)
|
||
|
arr[i] = 2;
|
||
|
}
|
||
|
|
||
|
void multi_level_bad() {
|
||
|
int i = multi_level_source_bad();
|
||
|
multi_level_sink_bad(i);
|
||
|
}
|