forked from prism4time/openvas-golang-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_task.go
366 lines (342 loc) · 9.82 KB
/
cmd_task.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
package omp
import (
"encoding/xml"
)
// Task represent task entity in openvas,
// to use it as an argument in call to create task
// you should init its comment,name,and ID for config target, scanner
type Task struct {
Hosts []string
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Name string `xml:"name,omitempty"`
Comment string `xml:"comment,omitempty"`
CreationTime string `xml:"creation_time,omitempty"`
ModificationTime string `xml:"modification_time,omitempty"`
Writable string `xml:"writable,omitempty"`
InUse string `xml:"in_use,omitempty"`
UserTags *UserTags `xml:"user_tags,omitempty"`
Owner *struct {
Text string `xml:",chardata"`
Name string `xml:"name,omitempty"`
} `xml:"owner,omitempty"`
Observers string `xml:"observers,omitempty"`
Alterable string `xml:"alterable,omitempty"`
Config *Config `xml:"config,omitempty"`
Target *Target `xml:"target,omitempty"`
Scanner *Scanner `xml:"scanner,omitempty"`
Status string `xml:"status,omitempty"`
Progress string `xml:"progress,omitempty"`
ReportCount *struct {
Text string `xml:",chardata"`
Finished string `xml:"finished,omitempty"`
} `xml:"report_count,omitempty"`
Trend string `xml:"trend,omitempty"`
Schedule *struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Name string `xml:"name,omitempty"`
NextTime string `xml:"next_time,omitempty"`
} `xml:"schedule,omitempty"`
FirstReport *struct {
Text string `xml:",chardata"`
Report *struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Timestamp string `xml:"timestamp,omitempty"`
ResultCount *struct {
Text string `xml:",chardata"`
Debug string `xml:"debug,omitempty"`
Hole string `xml:"hole,omitempty"`
Info string `xml:"info,omitempty"`
Log string `xml:"log,omitempty"`
Warning string `xml:"warning,omitempty"`
} `xml:"result_count,omitempty"`
Severity string `xml:"severity,omitempty"`
} `xml:"report,omitempty"`
} `xml:"first_report,omitempty"`
LastReport *struct {
Text string `xml:",chardata"`
Report *struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Timestamp string `xml:"timestamp,omitempty"`
ResultCount *struct {
Text string `xml:",chardata"`
Debug string `xml:"debug,omitempty"`
Hole string `xml:"hole,omitempty"`
Info string `xml:"info,omitempty"`
Log string `xml:"log,omitempty"`
Warning string `xml:"warning,omitempty"`
} `xml:"result_count,omitempty"`
Severity string `xml:"severity,omitempty"`
} `xml:"report,omitempty"`
} `xml:"last_report,omitempty"`
SecondLastReport *struct {
Text string `xml:",chardata"`
Report *struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Timestamp string `xml:"timestamp,omitempty"`
ResultCount *struct {
Text string `xml:",chardata"`
Debug string `xml:"debug,omitempty"`
Hole string `xml:"hole,omitempty"`
Info string `xml:"info,omitempty"`
Log string `xml:"log,omitempty"`
Warning string `xml:"warning,omitempty"`
} `xml:"result_count,omitempty"`
Severity string `xml:"severity,omitempty"`
} `xml:"report,omitempty"`
} `xml:"second_last_report,omitempty"`
Alert *struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Name string `xml:"name,omitempty"`
} `xml:"alert,omitempty"`
Reports *struct {
Text string `xml:",chardata"`
Report []struct {
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
Timestamp string `xml:"timestamp,omitempty"`
ScanRunStatus string `xml:"scan_run_status,omitempty"`
ResultCount *struct {
Text string `xml:",chardata"`
Debug string `xml:"debug,omitempty"`
Hole string `xml:"hole,omitempty"`
Info string `xml:"info,omitempty"`
Log string `xml:"log,omitempty"`
Warning string `xml:"warning,omitempty"`
} `xml:"result_count,omitempty"`
Severity string `xml:"severity,omitempty"`
} `xml:"report,omitempty"`
Preferences *struct {
Text string `xml:",chardata"`
Preference []struct {
Text string `xml:",chardata"`
Name string `xml:"name,omitempty"`
ScannerName string `xml:"scanner_name,omitempty"`
Value string `xml:"value,omitempty"`
} `xml:"preference,omitempty"`
} `xml:"preferences,omitempty"`
} `xml:"reports,omitempty"`
}
// CreateTask .
type CreateTask struct {
XMLName xml.Name `xml:"create_task"`
Text string `xml:",chardata"`
Name string `xml:"name,omitempty"`
Comment string `xml:"comment,omitempty"`
Config *Config `xml:"config,omitempty"`
Target *Target `xml:"target,omitempty"`
Scanner *Scanner `xml:"scanner,omitempty"`
}
// CreateTaskResponse .
type CreateTaskResponse struct {
responseBase
XMLName xml.Name `xml:"create_task_response"`
Text string `xml:",chardata"`
ID string `xml:"id,attr,omitempty"`
}
// DeleteTask .
type DeleteTask struct {
XMLName xml.Name `xml:"delete_task"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
}
// DeleteTaskResponse .
type DeleteTaskResponse struct {
XMLName xml.Name `xml:"delete_task_response"`
Text string `xml:",chardata"`
responseBase
}
// GetTasks .
type GetTasks struct {
requestBase
XMLName xml.Name `xml:"get_tasks"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
Details string `xml:"details,attr,omitempty"`
}
// MoveTask .
type MoveTask struct {
responseBase
XMLName xml.Name `xml:"move_task"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
SlaveID string `xml:"slave_id,attr,omitempty"`
}
// MoveTaskResponse .
type MoveTaskResponse struct {
responseBase
XMLName xml.Name `xml:"move_task_response"`
Text string `xml:",chardata"`
}
// ResumeTask .
type ResumeTask struct {
XMLName xml.Name `xml:"resume_task"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
}
// ResumeTaskResponse .
type ResumeTaskResponse struct {
responseBase
XMLName xml.Name `xml:"resume_task_response"`
Text string `xml:",chardata"`
ReportID string `xml:"report_id,omitempty"`
}
// StartTask .
type StartTask struct {
requestBase
XMLName xml.Name `xml:"start_task"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
}
// StartTaskResponse .
type StartTaskResponse struct {
responseBase
XMLName xml.Name `xml:"start_task_response"`
Text string `xml:",chardata"`
ReportID string `xml:"report_id,omitempty"`
}
// StopTask .
type StopTask struct {
requestBase
XMLName xml.Name `xml:"stop_task"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
}
// StopTaskResponse .
type StopTaskResponse struct {
responseBase
XMLName xml.Name `xml:"stop_task_response"`
Text string `xml:",chardata"`
}
// ModifyTask .
type ModifyTask struct {
requestBase
XMLName xml.Name `xml:"modify_task"`
Name string `xml:"name"`
Scanner *Scanner `xml:"scanner,omitempty"`
Text string `xml:",chardata"`
TaskID string `xml:"task_id,attr,omitempty"`
Comment string `xml:"comment,omitempty"`
}
// ModifyTaskResponse .
type ModifyTaskResponse struct {
responseBase
XMLName xml.Name `xml:"modify_task_response"`
Text string `xml:",chardata"`
}
// GetTasksResponse .
type GetTasksResponse struct {
responseBase
XMLName xml.Name `xml:"get_tasks_response"`
Text string `xml:",chardata"`
ApplyOverrides string `xml:"apply_overrides,omitempty"`
Task []Task `xml:"task,omitempty"`
Filters *Filters `xml:"filters,omitempty"`
Sort *struct {
Text string `xml:",chardata"`
Field *struct {
Text string `xml:",chardata"`
Order string `xml:"order,omitempty"`
} `xml:"field,omitempty"`
} `xml:"sort,omitempty"`
TaskCount *struct {
Text string `xml:",chardata"`
Filtered string `xml:"filtered,omitempty"`
Page string `xml:"page,omitempty"`
} `xml:"task_count,omitempty"`
}
// CreateTask .
func (c *Connector) CreateTask(t *Task) (string, error) {
req := CreateTask{
Name: t.Name,
Comment: t.Comment,
Config: &Config{
ID: t.Config.ID,
},
Target: &Target{
ID: t.Target.ID,
},
Scanner: &Scanner{
ID: t.Scanner.ID,
},
}
resp := &CreateTaskResponse{}
err := c.doRequest(req, resp)
if err != nil {
return "", err
}
return resp.ID, nil
}
// ModifyTask .
func (c *Connector) ModifyTask(t *Task) error {
req := ModifyTask{
TaskID: t.ID,
Scanner: t.Scanner,
Name: t.Name,
Comment: t.Comment,
}
resp := &ModifyTaskResponse{}
err := c.doRequest(req, resp)
if err != nil {
return err
}
return nil
}
// DeleteTask .
func (c *Connector) DeleteTask(id string) error {
req := DeleteTask{
TaskID: id,
}
resp := &DeleteTaskResponse{}
err := c.doRequest(req, resp)
if err != nil {
return err
}
return nil
}
// GetTasks .
func (c *Connector) GetTasks(id string) ([]Task, error) {
res := []Task{}
req := GetTasks{}
if len(id) != 0 {
req.TaskID = id
}
resp := &GetTasksResponse{}
err := c.doRequest(req, resp)
if err != nil {
return res, err
}
for i := range resp.Task {
res = append(res, resp.Task[i])
}
return res, nil
}
// StartTask .
func (c *Connector) StartTask(id string) (string, error) {
req := StartTask{
TaskID: id,
}
resp := &StartTaskResponse{}
err := c.doRequest(req, resp)
if err != nil {
return "", err
}
return resp.ReportID, nil
}
// StopTask .
func (c *Connector) StopTask(t *Task) error {
req := StopTask{
TaskID: t.ID,
}
resp := &StopTaskResponse{}
err := c.doRequest(req, resp)
if err != nil {
return err
}
return nil
}