-
Notifications
You must be signed in to change notification settings - Fork 16
/
binary-obfuscation.json
41 lines (41 loc) · 2.27 KB
/
binary-obfuscation.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"binary-obfuscation": {
"title": "BinaryObfuscation",
"type": "object",
"description": "Extension that captures metadata on the methods that a binary may be obfuscated with, such as executable packers or XOR encryption. This includes obfuscation of the entire binary as well as its constituent pieces, such as strings.",
"properties": {
"method": {
"type": "string",
"description": "Captures the method used in obfuscating the binary. The value for this property SHOULD come from the obfuscation-method-ov vocabulary."
},
"layer_order": {
"type": "integer",
"description": "Captures the ordering of the obfuscation method with respect to other obfuscation methods (if known), as a positive integer. For example, if a binary was packed and then XOR encrypted, the packing layer would have an ordering of \"1\" and the XOR encryption layer would have an ordering of \"2\"."
},
"encryption_algorithm": {
"type": "string",
"description": "Captures the name of the encryption algorithm used by the obfuscation method (if applicable). The values for this property SHOULD come from the STIX encryption-algo-ov vocabulary."
},
"packer_name": {
"type": "string",
"description": "Specifies the name of the packer (if applicable)."
},
"packer_version": {
"type": "string",
"description": "Specifies the version of the packer (if applicable)."
},
"packer_entry_point": {
"type": "string",
"description": "Specifies the entry point address of the packer (if applicable); in hexadecimal."
},
"packer_signature": {
"type": "string",
"description": "Specifies the matching signature detected for the packer (if applicable)."
}
},
"required": ["method"]
}
}
}