-
Notifications
You must be signed in to change notification settings - Fork 2
/
regkey.go
186 lines (171 loc) · 6.46 KB
/
regkey.go
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Copyright 2020 Joakim Kennedy. All rights reserved. Use of
// this source code is governed by the included BSD license.
package stix2
import (
"fmt"
"strings"
)
// RegistryKey object represents the properties of a Windows registry key. As
// all properties of this object are optional, at least one of the properties
// defined below MUST be included when using this object.
type RegistryKey struct {
STIXCyberObservableObject
// Key specifies the full registry key including the hive. The value of the
// key, including the hive portion, SHOULD be case-preserved. The hive
// portion of the key MUST be fully expanded and not truncated; e.g.,
// HKEY_LOCAL_MACHINE must be used instead of HKLM.
Key string `json:"key,omitempty"`
// Values specifies the values found under the registry key.
Values []*RegistryValue `json:"values,omitempty"`
// ModifiedTime specifies the last date/time that the registry key was
// modified.
ModifiedTime *Timestamp `json:"modified_time,omitempty"`
// CreatorUser specifies a reference to the user account that created the
// registry key.
CreatorUser Identifier `json:"creator_user_ref,omitempty"`
// NumberOfSubkeys specifies the number of subkeys contained under the
// registry key.
NumberOfSubkeys int64 `json:"number_of_subkeys,omitempty"`
}
func (o *RegistryKey) MarshalJSON() ([]byte, error) {
return marshalToJSONHelper(o)
}
// NewRegistryKey creates a new RegistryKey object.
func NewRegistryKey(opts ...STIXOption) (*RegistryKey, error) {
if len(opts) == 0 {
return nil, ErrPropertyMissing
}
base := newSTIXCyberObservableObject(TypeRegistryKey)
obj := &RegistryKey{
STIXCyberObservableObject: base,
}
err := applyOptions(obj, opts)
idContri := make([]string, 0, 2)
if obj.Key != "" {
idContri = append(idContri, fmt.Sprintf(`"%s"`, obj.Key))
}
if len(obj.Values) > 0 {
a := make([]string, 0, len(obj.Values))
for _, v := range obj.Values {
a = append(a, v.getIDContrib())
}
idContri = append(idContri, strings.Join(a, ","))
}
obj.ID = NewObservableIdentifier(fmt.Sprintf("[%s]", strings.Join(idContri, ",")), TypeRegistryKey)
return obj, err
}
// RegistryValue captures the properties of a Windows Registry Key Value. As
// all properties of this type are optional, at least one of the properties
// defined below MUST be included when using this type.
type RegistryValue struct {
// Name specifies the name of the registry value. For specifying the
// default value in a registry key, an empty string MUST be used.
Name string `json:"name,omitempty"`
// Data specifies the data contained in the registry value.
Data string `json:"data,omitempty"`
// DataType specifies the registry (REG_*) data type used in the registry
// value.
DataType RegistryDataType `json:"data_type,omitempty"`
}
func (r *RegistryValue) getIDContrib() string {
a := make([]string, 0, 3)
if r.Data != "" {
a = append(a, fmt.Sprintf(`"data":"%s"`, r.Data))
}
if r.DataType != RegUnknownValue {
a = append(a, fmt.Sprintf(`"data_type":"%s"`, r.DataType.String()))
}
if r.Name != "" {
a = append(a, fmt.Sprintf(`"name":"%s"`, r.Name))
}
return "{" + strings.Join(a, ",") + "}"
}
// RegistryDataType is a type of registry data type.
type RegistryDataType byte
// String returns the string representation of the type.
func (r RegistryDataType) String() string {
return regDataTypeMap[r]
}
// MarshalJSON serializes the value to JSON.
func (r RegistryDataType) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, r.String())), nil
}
// UnmarshalJSON deserializes the type from the json data.
func (r *RegistryDataType) UnmarshalJSON(b []byte) error {
if len(b) < 3 {
*r = RegUnknownValue
return nil
}
t := string(b[1 : len(b)-1])
for k, v := range regDataTypeMap {
if v == t {
*r = k
return nil
}
}
*r = RegUnknownValue
return nil
}
const (
// RegUnknownValue is used for unknown type values.
RegUnknownValue RegistryDataType = iota
// RegNone is a no defined value type.
RegNone
// RegSz is a null-terminated string. This will be either a Unicode or an
// ANSI string, depending on whether you use the Unicode or ANSI functions.
RegSz
// RegExpandSz is a null-terminated string that contains unexpanded
// references to environment variables (for example, "%PATH%"). It will be
// a Unicode or ANSI string depending on whether you use the Unicode or
// ANSI functions.
RegExpandSz
// RegBinary is binary data in any form.
RegBinary
// RegDword is a 32-bit number.
RegDword
// RegDwordBigEndian is a 32-bit number in big-endian format.
RegDwordBigEndian
// RegDwordLittleEndian is a 32-bit number in little-endian format.
RegDwordLittleEndian
// RegLink is a null-terminated Unicode string that contains the target
// path of a symbolic link.
RegLink
// RegMultiSz is a sequence of null-terminated strings, terminated by an
// empty string (\0).
RegMultiSz
// RegResourceList is a series of nested lists designed to store a resource
// list used by a hardware device driver or one of the physical devices it
// controls. This data is detected and written into the ResourceMap tree by
// the system and is displayed in Registry Editor in hexadecimal format as
// a Binary Value.
RegResourceList
// RegFullResourceDescription is a series of nested lists designed to store
// a resource list used by a physical hardware device. This data is
// detected and written into the HardwareDescription tree by the system and
// is displayed in Registry Editor in hexadecimal format as a Binary Value.
RegFullResourceDescription
// RegResourceRequirementsList is a device driver list of hardware resource
// requirements in Resource Map tree.
RegResourceRequirementsList
// RegQword is a 64-bit number.
RegQword
// RegInvalidType specifies an invalid key.
RegInvalidType
)
var regDataTypeMap = map[RegistryDataType]string{
RegUnknownValue: "",
RegNone: "REG_NONE",
RegSz: "REG_SZ",
RegExpandSz: "REG_EXPAND_SZ",
RegBinary: "REG_BINARY",
RegDword: "REG_DWORD",
RegDwordBigEndian: "REG_DWORD_BIG_ENDIAN",
RegDwordLittleEndian: "REG_DWORD_LITTLE_ENDIAN",
RegLink: "REG_LINK",
RegMultiSz: "REG_MULTI_SZ",
RegResourceList: "REG_RESOURCE_LIST",
RegFullResourceDescription: "REG_FULL_RESOURCE_DESCRIPTION",
RegResourceRequirementsList: "REG_RESOURCE_REQUIREMENTS_LIST",
RegQword: "REG_QWORD",
RegInvalidType: "REG_INVALID_TYPE",
}