-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathattack.json
70 lines (68 loc) · 1.49 KB
/
attack.json
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
{
"@context": {
"schema": "http://schema.org/",
"kairos": "https://tac.nist.gov/kairos/",
"version": "kairos:version",
"parent": "kairos:parent",
"value": "kairos:value",
"argname": "kairos:argname",
"pattern": "kairos:pattern",
"rolesBlock": "kairos:rolesBlock",
"roles": "kairos:roles",
"sbu": "http://www.stonybrook.edu/kairos/",
"resultsBlock": "sbu:resultsBlock",
"results": "sbu:results",
"arguments": "sbu:arguments",
"required": "sbu:required",
"arg": "sbu:Schema/Attack/Argument/",
"CausesHarmTo": "sbu:Schema/Attack/Results/CausesHarmTo",
"role": "sbu:Schema/Attack/Role/"
},
"@id": "sbu:Schemas/475b59a03ea03e6388c8f34eee6a9d08",
"@type": "sbu:Schema/Attack",
"version": "0.3",
"arguments": [
{
"@id": "arg:attacker",
"argname": "party1"
},
{
"@id": "arg:victim",
"argname": "party2"
}
],
"rolesBlock": {
"context": {},
"roles": [
{
"@id": "role:Attacker",
"pattern": "?a",
"required": true,
"argname": "party1"
},
{
"@id": "role:Victim",
"pattern": "?v",
"required": true,
"argname": "party2"
}
]
},
"resultsBlock": {
"context": {},
"results": {
"@list": [
{
"CausesHarmTo": [
{
"@type": "role:Attacker"
},
{
"@type": "role:Victim"
}
]
}
]
}
}
}