-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvectors.js
82 lines (79 loc) · 1.58 KB
/
vectors.js
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
const mil = (n) => n * 1000000
//tti = time to identify (days)
//ttc = time to contain (days)
/** Potential attack vectors */
const vectors = {
destruction:{
label:'Destructive attack',
impact:mil(5.12),
tti:233,
ttc:91
},
ransom:{
label:'Ransomware',
impact:mil(4.54),
tti:237,
ttc:89
},
email:{
label:'Business email compromise',
impact:mil(4.89),
tti:234,
ttc:84
},
phishing:{
label:'Phishing',
impact:mil(4.91),
tti:219,
ttc:76
},
vulnerability:{
label:'Vulnerability in third-party software',
impact:mil(4.55),
tti:214,
ttc:70
},
credentials:{
label:'Stolen or compromised credentials',
impact:mil(4.50),
tti:243,
ttc:84
},
inside:{
label:'Malicious insider',
impact:mil(4.18),
tti:216,
ttc:68
},
social:{
label:'Social engineering',
impact:mil(4.10),
tti:201,
ttc:69
},
physical:{
label:'Physical security compromise',
impact:mil(3.96),
tti:217,
ttc:63
},
cloud:{
label:'Cloud misconfiguration',
impact:mil(4.14),
tti:183,
ttc:61
},
accident:{
label:'Accidental data loss or lost device',
impact:mil(3.94),
tti:189,
ttc:69
},
error:{
label:'System error',
impact:mil(3.82),
tti:149,
ttc:67
}
}
module.exports = vectors