-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmalware-development-environment.json
26 lines (26 loc) · 1.3 KB
/
malware-development-environment.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"malware-development-environment": {
"title": "MalwareDevelopmentEnvironment",
"type": "object",
"description": "Captures details of the development environment used in developing the malware instance, such as information on any tools that were used.",
"properties": {
"tool_refs": {
"type": "array",
"items": {"type": "string"},
"description": "References the tools used in the development of the malware instance. The Objects referenced MUST be of STIX type software and MUST be specified in the observable_objects property of the Package."
},
"debugging_file_refs": {
"type": "array",
"items": {"type": "string"},
"description": "References debugging files associated with the malware instance, such as PDB files. The Objects referenced MUST be of STIX type file and MUST be specified in the observable_objects property of the Package."
}
},
"anyOf": [
{"required": ["tool_refs"]},
{"required": ["debugging_file_refs"]}
]
}
}
}