@@ -10,23 +10,15 @@ import (
10
10
"k8s.io/apiserver/pkg/authentication/user"
11
11
)
12
12
13
- type Process struct {
14
- PID uint32 `json:"pid,omitempty" bson:"pid,omitempty"`
15
- Cmdline string `json:"cmdline,omitempty" bson:"cmdline,omitempty"`
16
- Comm string `json:"comm,omitempty" bson:"comm,omitempty"`
17
- PPID uint32 `json:"ppid,omitempty" bson:"ppid,omitempty"`
18
- Pcomm string `json:"pcomm,omitempty" bson:"pcomm,omitempty"`
19
- Hardlink string `json:"hardlink,omitempty" bson:"hardlink,omitempty"`
20
- Uid * uint32 `json:"uid,omitempty" bson:"uid,omitempty"`
21
- Gid * uint32 `json:"gid,omitempty" bson:"gid,omitempty"`
22
- UserName string `json:"userName,omitempty" bson:"userName,omitempty"`
23
- GroupName string `json:"groupName,omitempty" bson:"groupName,omitempty"`
24
- StartTime time.Time `json:"startTime,omitempty" bson:"startTime,omitempty"`
25
- UpperLayer * bool `json:"upperLayer,omitempty" bson:"upperLayer,omitempty"`
26
- Cwd string `json:"cwd,omitempty" bson:"cwd,omitempty"`
27
- Path string `json:"path,omitempty" bson:"path,omitempty"`
28
- Children []Process `json:"children,omitempty" bson:"children,omitempty"`
29
- }
13
+ type AlertType int
14
+
15
+ const (
16
+ AlertTypeRule AlertType = iota
17
+ AlertTypeMalware
18
+ AlertTypeAdmission
19
+ AlertTypeCdr
20
+ AlertTypeHttpRule
21
+ )
30
22
31
23
type CloudMetadata struct {
32
24
// Provider is the cloud provider name (e.g. aws, gcp, azure).
@@ -42,16 +34,6 @@ type CloudMetadata struct {
42
34
Services []string `json:"services,omitempty" bson:"services,omitempty"`
43
35
}
44
36
45
- type AlertType int
46
-
47
- const (
48
- AlertTypeRule AlertType = iota
49
- AlertTypeMalware
50
- AlertTypeAdmission
51
- AlertTypeCdr
52
- AlertTypeHttpRule
53
- )
54
-
55
37
type StackFrame struct {
56
38
// Frame ID
57
39
FrameID string `json:"frameId,omitempty" bson:"frameId,omitempty"`
@@ -66,7 +48,7 @@ type StackFrame struct {
66
48
// Arguments
67
49
Arguments []string `json:"arguments,omitempty" bson:"arguments,omitempty"`
68
50
// User/Kernel space
69
- UserSpace bool `json:"userSpace" bson:"userSpace"`
51
+ UserSpace bool `json:"userSpace,omitempty " bson:"userSpace,omitempty "`
70
52
// Native/Source code
71
53
NativeCode * bool `json:"nativeCode,omitempty" bson:"nativeCode,omitempty"`
72
54
}
@@ -126,7 +108,13 @@ type RuleAlert struct {
126
108
}
127
109
128
110
type MalwareAlert struct {
129
- MalwareDescription string `json:"malwareDescription,omitempty" bson:"malwareDescription,omitempty"`
111
+ MalwareFile File `json:"malwareFile,omitempty" bson:"malwareFile,omitempty"`
112
+ Aliases []string `json:"aliases,omitempty" bson:"aliases,omitempty"`
113
+ Family string `json:"family,omitempty" bson:"family,omitempty"`
114
+ Action string `json:"action,omitempty" bson:"action,omitempty"`
115
+ DetectionMethod string `json:"detectionMethod,omitempty" bson:"detectionMethod,omitempty"`
116
+ MalwareDescription string `json:"malwareDescription,omitempty" bson:"malwareDescription,omitempty"`
117
+ ProcessTree ProcessTree `json:"processTree,omitempty" bson:"processTree,omitempty"`
130
118
}
131
119
132
120
type HttpRuleAlert struct {
@@ -165,7 +153,7 @@ type AdmissionAlert struct {
165
153
}
166
154
167
155
type RuntimeAlertK8sDetails struct {
168
- ClusterName string `json:"clusterName" bson:"clusterName"`
156
+ ClusterName string `json:"clusterName,omitempty " bson:"clusterName,omitempty "`
169
157
ContainerName string `json:"containerName,omitempty" bson:"containerName,omitempty"`
170
158
HostNetwork * bool `json:"hostNetwork,omitempty" bson:"hostNetwork,omitempty"`
171
159
OldImage string `json:"oldImage,omitempty" bson:"oldImage,omitempty"`
@@ -177,9 +165,9 @@ type RuntimeAlertK8sDetails struct {
177
165
PodName string `json:"podName,omitempty" bson:"podName,omitempty"`
178
166
PodNamespace string `json:"podNamespace,omitempty" bson:"podNamespace,omitempty"`
179
167
PodLabels map [string ]string `json:"podLabels,omitempty" bson:"podLabels,omitempty"`
180
- WorkloadName string `json:"workloadName" bson:"workloadName"`
168
+ WorkloadName string `json:"workloadName,omitempty " bson:"workloadName,omitempty "`
181
169
WorkloadNamespace string `json:"workloadNamespace,omitempty" bson:"workloadNamespace,omitempty"`
182
- WorkloadKind string `json:"workloadKind" bson:"workloadKind"`
170
+ WorkloadKind string `json:"workloadKind,omitempty " bson:"workloadKind,omitempty "`
183
171
}
184
172
185
173
type RuntimeAlert struct {
@@ -188,7 +176,7 @@ type RuntimeAlert struct {
188
176
MalwareAlert `json:",inline" bson:"inline"`
189
177
AdmissionAlert `json:",inline" bson:"inline"`
190
178
RuntimeAlertK8sDetails `json:",inline" bson:"inline"`
191
- cdr.CdrAlert `json:"cdrevent" bson:"cdrevent"`
179
+ cdr.CdrAlert `json:"cdrevent,omitempty " bson:"cdrevent"`
192
180
HttpRuleAlert `json:",inline" bson:"inline"`
193
181
AlertType AlertType `json:"alertType" bson:"alertType"`
194
182
// Rule ID
@@ -200,8 +188,8 @@ type RuntimeAlert struct {
200
188
201
189
type ProcessTree struct {
202
190
ProcessTree Process `json:"processTree" bson:"processTree"`
203
- UniqueID uint32 `json:"uniqueID" bson:"uniqueID"`
204
- ContainerID string `json:"containerID" bson:"containerID"`
191
+ UniqueID uint32 `json:"uniqueID,omitempty " bson:"uniqueID,omitempty "`
192
+ ContainerID string `json:"containerID,omitempty " bson:"containerID,omitempty "`
205
193
}
206
194
207
195
type KDRMonitoredEntitiesCounters struct {
0 commit comments