forked from c3rb3ru5d3d53c/binlex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.js
162 lines (153 loc) · 3.82 KB
/
schema.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
var trait_schema = {
bsonType: "object",
required: [
"_id",
"type",
"architecture",
"blocks",
"edges",
"instructions",
"invalid_instructions",
"bytes",
"bytes_sha256",
"bytes_entropy",
"trait",
"trait_sha256",
"trait_entropy",
"size",
"average_instructions_per_block",
"cyclomatic_complexity",
],
properties: {
_id: {
bsonType: "objectId",
},
type: {
bsonType: "string",
description: "Trait Type"
},
architecture: {
bsonType: "string",
description: "Code Architecture"
},
blocks: {
bsonType: "int",
description: "Number of Blocks"
},
edges: {
bsonType: "int",
description: "Number of Edges"
},
instructions: {
bsonType: "int",
description: "Number of Instructions"
},
invalid_instructions: {
bsonType: "int",
description: "Number of Invalid Instructions"
},
bytes: {
bsonType: "string",
description: "Hexadecimal Byte String"
},
bytes_sha256: {
bsonType: "string",
description: "Byte String SHA256"
},
bytes_entropy: {
bsonType: "double",
description: "Byte String Entropy"
},
trait: {
bsonType: "string",
description: "Wildcarded Trait String"
},
trait_sha256: {
bsonType: "string",
description: "Trait String SHA256"
},
trait_entropy: {
bsonType: "double",
description: "Trait String Entropy"
},
size: {
bsonType: "int",
description: "Size in Bytes"
},
average_instructions_per_block: {
bsonType: "int",
description: "Average Instructions per Block"
},
cyclomatic_complexity: {
bsonType: "int",
description: "Cyclomatic Complexity"
}
},
additionalProperties: false
};
var files_schema = {
bsonType: "object",
required: [
"_id",
"collection",
"corpus",
"mode",
"sha256",
"trait_id",
"offset",
],
properties: {
_id: {
bsonType: "objectId",
},
collection: {
bsonType: "string",
description: "Collection Trait is Stored"
},
corpus: {
bsonType: "string",
description: "Corpus Name"
},
mode: {
bsonType: "string",
description: "Mode <file-type>:<architecture>"
},
sha256: {
bsonType: "string",
description: "SHA256 Hash of File"
},
trait_id: {
bsonType: "objectId",
description: "Trait ID"
},
offset: {
bsonType: "int",
description: "Trait File Offset"
}
},
additionalProperties: false
};
db.createCollection('files', {
validator: {
$jsonSchema: files_schema
}
});
db.files.createIndex({collection: 1, mode: 1, sha256: 1, trait_id: 1}, {unique: true});
db.createCollection('default', {
validator: {
$jsonSchema: trait_schema
}
});
db.default.createIndex({bytes_sha256: 1, architecture: 1}, {unique: true});
db.createCollection('malware', {
validator: {
$jsonSchema: trait_schema
}
});
db.malware.createIndex({bytes_sha256: 1, architecture: 1}, {unique: true});
db.createCollection('goodware', {
validator: {
$jsonSchema: trait_schema
}
});
db.goodware.createIndex({bytes_sha256: 1, architecture: 1}, {unique: true});