-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathSplitting.cs
More file actions
54 lines (48 loc) · 1.03 KB
/
Splitting.cs
File metadata and controls
54 lines (48 loc) · 1.03 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
45
46
47
48
49
50
51
52
53
54
class Splitting
{
void M1(bool b, string tainted)
{
if (b)
if (tainted == null)
return;
var x = Return(tainted);
Check(x);
if (b)
Check(x);
}
static void Check<T>(T x) { }
static T Return<T>(T x) => x;
string this[string s]
{
get { return Return(s); }
set { Check(Return(value)); }
}
void M2(bool b, string tainted)
{
if (b)
if (tainted == null)
return;
dynamic d = this;
d[""] = tainted;
var x = d[tainted];
Check(x);
if (b)
Check(x);
}
void M3(bool b)
{
var s = b ? "taint source" : "not tainted";
if (b)
Check(s); // flow
else
Check(s); // no flow
}
void M4(bool b)
{
var s = b switch { true => "taint source", false => "not tainted" };
if (b)
Check(s); // flow
else
Check(s); // no flow [FALSE POSITIVE]
}
}