forked from LO3Energy/ansible-graylog-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
406 lines (365 loc) · 12.7 KB
/
main.yml
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
---
- name: Testing Graylog modules
hosts: localhost
tasks:
- name: Create Graylog role
graylog_roles:
action: create
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
name: "ansible_role"
description: "Ansible test role"
permissions:
- "dashboards:read"
read_only: "true"
- name: Update Graylog role
graylog_roles:
action: update
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
name: "ansible_role"
description: "Ansible test role update"
permissions:
- "dashboards:read"
read_only: "true"
- name: List Graylog roles
graylog_roles:
action: list
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
register: graylog_roles
- name: Print roles
debug:
msg: "{{ graylog_roles }}"
- name: Create Graylog user
graylog_users:
action: create
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
username: "ansible_user"
full_name: "Ansible User"
password: "{{ password }}"
email: "[email protected]"
roles:
- "ansible_role"
- name: Update Graylog user
graylog_users:
action: update
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
username: "ansible_user"
email: "[email protected]"
- name: List Graylog users
graylog_users:
action: list
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
register: graylog_users
- name: Print users
debug:
msg: "{{ graylog_users }}"
- name: Remove user
graylog_users:
action: delete
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
username: "ansible_user"
- name: Remove role
graylog_roles:
action: delete
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
name: "ansible_role"
- name: List streams
graylog_streams:
action: list
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
- name: Create stream
graylog_streams:
action: create
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
title: "test_stream"
description: "Windows and IIS logs"
matching_type: "AND"
remove_matches_from_default_stream: False
rules:
- {"field":"message","type":1,"value":"test_stream rule","inverted": false,"description":"test_stream rule"}
- name: Get stream from stream name query
graylog_streams:
action: query_streams
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_name: "test_stream"
register: stream
- name: List single stream by ID
graylog_streams:
action: list
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
- name: Update stream
graylog_streams:
action: update
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
remove_matches_from_default_stream: True
- name: Create stream rule
graylog_streams:
action: create_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
description: "Windows Security Logs"
field: "winlogbeat_log_name"
type: "1"
value: "Security"
inverted: False
register: rule
- name: Update stream rule
graylog_streams:
action: update_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
rule_id: "{{ rule.json.streamrule_id }}"
description: "Windows Security and Application Logs"
- name: Delete stream rule
graylog_streams:
action: delete_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
rule_id: "{{ rule.json.streamrule_id }}"
- name: Validate pipeline rule
graylog_pipelines:
action: parse_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
source: |
rule "test_rule_domain_threat_intel"
when
has_field("dns_query")
then
let dns_query_intel = threat_intel_lookup_domain(to_string($message.dns_query), "dns_query");
set_fields(dns_query_intel);
end
register: validate_rule
- name: Create pipeline rule
graylog_pipelines:
action: create_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
title: "test_rule"
description: "test"
source: |
rule "test_rule_domain_threat_intel"
when
has_field("dns_query")
then
let dns_query_intel = threat_intel_lookup_domain(to_string($message.dns_query), "dns_query");
set_fields(dns_query_intel);
end
register: pipeline_rule
when: validate_rule.status == 200
- name: Create pipeline
graylog_pipelines:
action: create
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
title: "test_pipeline"
source: |
pipeline "test_pipeline"
stage 0 match either
end
description: "test_pipeline description"
- name: Get pipeline from pipeline name query_pipelines
graylog_pipelines:
action: query_pipelines
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
pipeline_name: "test_pipeline"
register: pipeline
- name: Validate pipeline
graylog_pipelines:
action: parse_pipeline
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
source: |
pipeline "test_pipeline"
stage 0 match either
rule "test_rule_domain_threat_intel"
end
register: validate_pipeline
- name: Update pipeline with rule
graylog_pipelines:
action: update
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
pipeline_id: "{{ pipeline.json.id }}"
source: |
pipeline "test_pipeline"
stage 0 match either
rule "test_rule_domain_threat_intel"
end
when: validate_pipeline.status == 200
- name: Create Stream connection to processing pipeline
graylog_pipelines:
action: create_connection
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
pipeline_id: "{{ pipeline.json.id }}"
stream_ids:
- "{{ stream.json.id }}"
- name: Delete pipeline
graylog_pipelines:
action: delete
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
pipeline_id: "{{ pipeline.json.id }}"
- name: Delete pipeline rule
graylog_pipelines:
action: delete_rule
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
rule_id: "{{ pipeline_rule.json.id }}"
- name: Get all index sets
graylog_index_sets:
action: list
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
register: index_sets
- name: Create index set
graylog_index_sets:
action: create
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
title: "test_index_set"
index_prefix: "test_index_"
description: "test index set"
- name: Get index set by name
graylog_index_sets:
action: query_index_sets
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
title: "test_index_set"
register: index_set
- name: Update stream with index set
graylog_streams:
action: update
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
index_set_id: "{{ index_set.json.id }}"
- name: Delete stream
graylog_streams:
action: delete_stream
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
stream_id: "{{ stream.json.id }}"
- name: Delete new index set
graylog_index_sets:
action: delete
endpoint: "{{ endpoint }}"
graylog_user: "{{ graylog_user }}"
graylog_password: "{{ graylog_password }}"
index_set_id: "{{ index_set.json.id }}"
- name: Setup Active Directory authentication without SSL and set "Reader" as default role
graylog_ldap:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
enabled: "true"
active_directory: "true"
ldap_uri: "ldap://domaincontroller.mydomain.com:389"
system_password_set: "true"
system_username: "[email protected]"
system_password: "bindPassw0rd"
search_base: "cn=users,dc=mydomain,dc=com"
search_pattern: "(&(objectClass=user)(sAMAccountName={0}))"
display_name_attribute: "displayName"
group_search_base: "cn=groups,dc=mydomain,dc=com"
group_search_pattern: "(&(objectClass=group)(cn=graylog*))"
group_id_attribute: "cn"
- name: Remove current LDAP authentication configuration
graylog_ldap:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "delete"
- name: Get current LDAP authentication configuration
graylog_ldap:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "get"
register: currentConfiguration
- name: Print current LDAP authentication configuration
debug:
msg: "{{ currentConfiguration }}"
- name: Test LDAP bind
graylog_ldap:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "test"
active_directory: "true"
ldap_uri: "ldap://domaincontroller.mydomain.com:389"
system_password_set: "true"
system_username: "[email protected]"
system_password: "bindPassw0rd"
- name: Get all LDAP groups
graylog_ldap_groups:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "list"
- name: Get the LDAP group to Graylog role mapping
graylog_ldap_groups:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "list_mapping"
- name: Update the LDAP group to Graylog role mapping
graylog_ldap_groups:
endpoint: "graylog.mydomain.com"
graylog_user: "username"
graylog_password: "password"
action: "update"
group: "{{ item.group }}"
role: "{{ item.role }}"
with_items:
- { group : "ldap-group-admins", role : "Admin" }
- { group : "ldap-group-read", role : "Reader" }