forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definition.json
57 lines (57 loc) · 1.3 KB
/
definition.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
{
"requiredOneOf": [
"text",
"name",
"entrypoint-address"
],
"attributes": {
"entrypoint-address": {
"description": "Address of the entry point",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "text"
},
"type": {
"description": "Type of Mach-O",
"sane_default": [
"BUNDLE",
"CORE",
"DSYM",
"DYLIB",
"DYLIB_STUB",
"DYLINKER",
"EXECUTE",
"FVMLIB",
"KEXT_BUNDLE",
"OBJECT",
"PRELOAD"
],
"ui-priority": 0,
"misp-attribute": "text"
},
"number-sections": {
"description": "Number of sections",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "counter"
},
"name": {
"description": "Binary's name",
"disable_correlation": false,
"ui-priority": 1,
"misp-attribute": "text"
},
"text": {
"description": "Free text value to attach to the Mach-O file",
"disable_correlation": true,
"ui-priority": 1,
"misp-attribute": "text",
"recommended": false
}
},
"version": 2,
"description": "Object describing a file in Mach-O format.",
"meta-category": "file",
"uuid": "23fb8371-c7e3-45fe-b897-fdf074f95267",
"name": "macho"
}