-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathosquery_queries.go
236 lines (192 loc) · 7.27 KB
/
osquery_queries.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package goztl
import (
"context"
"fmt"
"net/http"
)
const oqBasePath = "osquery/queries/"
// OsqueryQueriesService is an interface for interfacing with the Osquery queries
// endpoints of the Zentral API
type OsqueryQueriesService interface {
List(context.Context, *ListOptions) ([]OsqueryQuery, *Response, error)
GetByID(context.Context, int) (*OsqueryQuery, *Response, error)
GetByName(context.Context, string) (*OsqueryQuery, *Response, error)
GetByPackID(context.Context, int) ([]OsqueryQuery, *Response, error)
Create(context.Context, *OsqueryQueryRequest) (*OsqueryQuery, *Response, error)
Update(context.Context, int, *OsqueryQueryRequest) (*OsqueryQuery, *Response, error)
Delete(context.Context, int) (*Response, error)
}
// OsqueryQueriesServiceOp handles communication with the Osquery queries related
// methods of the Zentral API.
type OsqueryQueriesServiceOp struct {
client *Client
}
var _ OsqueryQueriesService = &OsqueryQueriesServiceOp{}
// OsqueryQueryScheduling represents the scheduling information of a Zentral Osquery query
type OsqueryQueryScheduling struct {
PackID int `json:"pack"`
Interval int `json:"interval"`
LogRemovedActions bool `json:"log_removed_actions"`
SnapshotMode bool `json:"snapshot_mode"`
Shard *int `json:"shard"`
CanBeDenyListed bool `json:"can_be_denylisted"`
}
// OsqueryQuery represents a Zentral Osquery query
type OsqueryQuery struct {
ID int `json:"id,omitempty"`
Name string `json:"name"`
SQL string `json:"sql"`
Platforms []string `json:"platforms"`
MinOsqueryVersion *string `json:"minimum_osquery_version"`
Description string `json:"description"`
Value string `json:"value"`
Version int `json:"version"`
ComplianceCheckEnabled bool `json:"compliance_check_enabled"`
TagID *int `json:"tag"`
Scheduling *OsqueryQueryScheduling `json:"scheduling"`
Created Timestamp `json:"created_at"`
Updated Timestamp `json:"updated_at"`
}
func (oq OsqueryQuery) String() string {
return Stringify(oq)
}
// OsqueryQuerySchedulingRequest represents a request to create or update a Osquery pack query scheduling
type OsqueryQuerySchedulingRequest struct {
PackID int `json:"pack"`
Interval int `json:"interval"`
LogRemovedActions bool `json:"log_removed_actions"`
SnapshotMode bool `json:"snapshot_mode"`
Shard *int `json:"shard"`
CanBeDenyListed bool `json:"can_be_denylisted"`
}
// OsqueryQueryRequest represents a request to create or update a Osquery query
type OsqueryQueryRequest struct {
Name string `json:"name"`
SQL string `json:"sql"`
Platforms []string `json:"platforms"`
MinOsqueryVersion *string `json:"minimum_osquery_version"`
Description string `json:"description"`
Value string `json:"value"`
ComplianceCheckEnabled bool `json:"compliance_check_enabled"`
TagID *int `json:"tag"`
Scheduling *OsqueryQuerySchedulingRequest `json:"scheduling"`
}
type listOQOptions struct {
Name string `url:"name,omitempty"`
PackID int `url:"pack_id,omitempty"`
}
// List lists all the Osquery queries.
func (s *OsqueryQueriesServiceOp) List(ctx context.Context, opt *ListOptions) ([]OsqueryQuery, *Response, error) {
return s.list(ctx, opt, nil)
}
// GetByID retrieves a Osquery query by id.
func (s *OsqueryQueriesServiceOp) GetByID(ctx context.Context, oqID int) (*OsqueryQuery, *Response, error) {
if oqID < 1 {
return nil, nil, NewArgError("oqID", "cannot be less than 1")
}
path := fmt.Sprintf("%s%d/", oqBasePath, oqID)
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
oq := new(OsqueryQuery)
resp, err := s.client.Do(ctx, req, oq)
if err != nil {
return nil, resp, err
}
return oq, resp, err
}
// GetByName retrieves a Osquery query by name.
func (s *OsqueryQueriesServiceOp) GetByName(ctx context.Context, name string) (*OsqueryQuery, *Response, error) {
if len(name) < 1 {
return nil, nil, NewArgError("name", "cannot be blank")
}
listOQOpt := &listOQOptions{Name: name}
oqs, resp, err := s.list(ctx, nil, listOQOpt)
if err != nil {
return nil, resp, err
}
if len(oqs) < 1 {
return nil, resp, nil
}
return &oqs[0], resp, err
}
// GetByPackID retrieves Osquery queries by pack ID.
func (s *OsqueryQueriesServiceOp) GetByPackID(ctx context.Context, packID int) ([]OsqueryQuery, *Response, error) {
if packID < 1 {
return nil, nil, NewArgError("packID", "cannot be less than 1")
}
listOQOpt := &listOQOptions{PackID: packID}
return s.list(ctx, nil, listOQOpt)
}
// Create a new Osquery query.
func (s *OsqueryQueriesServiceOp) Create(ctx context.Context, createRequest *OsqueryQueryRequest) (*OsqueryQuery, *Response, error) {
if createRequest == nil {
return nil, nil, NewArgError("createRequest", "cannot be nil")
}
req, err := s.client.NewRequest(ctx, http.MethodPost, oqBasePath, createRequest)
if err != nil {
return nil, nil, err
}
oq := new(OsqueryQuery)
resp, err := s.client.Do(ctx, req, oq)
if err != nil {
return nil, resp, err
}
return oq, resp, err
}
// Update a Osquery query.
func (s *OsqueryQueriesServiceOp) Update(ctx context.Context, oqID int, updateRequest *OsqueryQueryRequest) (*OsqueryQuery, *Response, error) {
if oqID < 1 {
return nil, nil, NewArgError("oqID", "cannot be less than 1")
}
if updateRequest == nil {
return nil, nil, NewArgError("updateRequest", "cannot be nil")
}
path := fmt.Sprintf("%s%d/", oqBasePath, oqID)
req, err := s.client.NewRequest(ctx, http.MethodPut, path, updateRequest)
if err != nil {
return nil, nil, err
}
oq := new(OsqueryQuery)
resp, err := s.client.Do(ctx, req, oq)
if err != nil {
return nil, resp, err
}
return oq, resp, err
}
// Delete a Osquery query.
func (s *OsqueryQueriesServiceOp) Delete(ctx context.Context, oqID int) (*Response, error) {
if oqID < 1 {
return nil, NewArgError("oqID", "cannot be less than 1")
}
path := fmt.Sprintf("%s%d/", oqBasePath, oqID)
req, err := s.client.NewRequest(ctx, http.MethodDelete, path, nil)
if err != nil {
return nil, err
}
resp, err := s.client.Do(ctx, req, nil)
return resp, err
}
// Helper method for listing Osquery queries.
func (s *OsqueryQueriesServiceOp) list(ctx context.Context, opt *ListOptions, oqOpt *listOQOptions) ([]OsqueryQuery, *Response, error) {
path := oqBasePath
path, err := addOptions(path, opt)
if err != nil {
return nil, nil, err
}
path, err = addOptions(path, oqOpt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
var oqs []OsqueryQuery
resp, err := s.client.Do(ctx, req, &oqs)
if err != nil {
return nil, resp, err
}
return oqs, resp, err
}