-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcsrf-attack-matrix.json
More file actions
104 lines (103 loc) · 2.27 KB
/
csrf-attack-matrix.json
File metadata and controls
104 lines (103 loc) · 2.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[
{
"id": "C1",
"group": "normal",
"title": "신뢰 Origin + 쿠키로 재발급",
"gt_attack": false,
"endpoint": "reissue",
"origin": "trusted",
"referer": "none",
"send_cookie": true
},
{
"id": "C2",
"group": "normal",
"title": "신뢰 Referer + 쿠키로 재발급",
"gt_attack": false,
"endpoint": "reissue",
"origin": "none",
"referer": "trusted",
"send_cookie": true
},
{
"id": "C3",
"group": "normal",
"title": "신뢰 Origin + 쿠키로 로그아웃",
"gt_attack": false,
"endpoint": "logout",
"origin": "trusted",
"referer": "trusted",
"send_cookie": true
},
{
"id": "C4",
"group": "normal",
"title": "쿠키 없는 재발급 요청(필터 스킵 경로)",
"gt_attack": false,
"endpoint": "reissue",
"origin": "trusted",
"referer": "trusted",
"send_cookie": false,
"measurable": false
},
{
"id": "A1",
"group": "attack",
"title": "악성 Origin 단독 + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "malicious",
"referer": "none",
"send_cookie": true
},
{
"id": "A2",
"group": "attack",
"title": "악성 Origin + 악성 Referer + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "malicious",
"referer": "malicious",
"send_cookie": true
},
{
"id": "A3",
"group": "attack",
"title": "Origin/Referer 모두 없음 + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "none",
"referer": "none",
"send_cookie": true
},
{
"id": "A4",
"group": "attack",
"title": "악성 Referer 단독 + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "none",
"referer": "malicious",
"send_cookie": true
},
{
"id": "A5",
"group": "attack",
"title": "악성 Origin + 신뢰 Referer 혼합 + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "malicious",
"referer": "trusted",
"send_cookie": true
},
{
"id": "A6",
"group": "attack",
"title": "유사 도메인 Origin(syncly-io.com.evil.com) + 쿠키",
"gt_attack": true,
"endpoint": "reissue",
"origin": "lookalike",
"referer": "none",
"send_cookie": true
}
]