-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathScopedValueFlowTest.java
More file actions
44 lines (37 loc) · 1.52 KB
/
ScopedValueFlowTest.java
File metadata and controls
44 lines (37 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.lang.ScopedValue;
public class ScopedValueFlowTest {
private static final ScopedValue<String> USER_CONTEXT = ScopedValue.newInstance();
private static final ScopedValue<String> SESSION_ID = ScopedValue.newInstance();
public static String source(String label) {
return "tainted";
}
public static void sink(String value) {}
public static void main(String[] args) {
String userInput = source("");
// Test 1: Basic scoped value binding and retrieval
ScopedValue.where(USER_CONTEXT, userInput)
.run(() -> {
String value = USER_CONTEXT.get();
sink(value); // $ hasTaintFlow
});
// Test 2: Multiple scoped value bindings with chaining
ScopedValue.where(USER_CONTEXT, userInput)
.where(SESSION_ID, "safe-one")
.run(() -> {
String user = USER_CONTEXT.get();
String session = SESSION_ID.get();
sink(user); // $ hasTaintFlow
sink(session); // safe - should NOT have taint flow
});
ScopedValue.where(USER_CONTEXT, userInput)
.run(() -> {
String outer = USER_CONTEXT.get();
ScopedValue.where(USER_CONTEXT, "safe-two")
.run(() -> {
String inner = USER_CONTEXT.get();
sink(inner); // $ SPURIOUS: hasTaintFlow
});
sink(outer); // $ hasTaintFlow
});
}
}