-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-DIST.yml
313 lines (279 loc) · 7.04 KB
/
config-DIST.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
name: arcane-otx
version: 1.0.0
license: BSD-2-Clause
author:
name: Conor Quigley
url: https://konundrum.org/
genopts:
dotstorm: true
# Defines required role permissions.
perms:
- perm: [otx, user]
desc: Controls user access to Arcane OTX pkg.
gate: cortex
docs:
- content: |
This package provides Alienvault OTX API support for Synapse.
This pkg is in development and is not stable.
title: Arcane Observatory Synapse OTX Package.
modules:
- name: arcane.otx.setup
- name: arcane.otx.ingest
modconf:
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# FOR THE LOVE OF ALL THAT IS HOLY, SET THIS
# vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
source: <GUID>
ioc_limit: &ioc_limit 200
- name: arcane.otx.api
asroot:perms:
- [otx, user]
modconf:
api_url: https://otx.alienvault.com/api/v1
commands:
- name: otx.setup.apikey
descr: Setup Arcane Observatory OTX API Key
# Do not allow to run as root.
asroot: False
# User perms required to acces this command?
perms:
- [otx, user]
cmdargs:
- - apikey
- type: str
help: Alienvault OTX Key.
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
- name: otx.sync
descr: Sync OTX subscribed pulses
# Do not allow to run as root.
asroot: False
# User perms required to acces this command?
perms:
- [otx, user]
cmdargs:
- - --since
- type: str
default: "-1 days"
help: |
Specify a modified since value. E.g.: "-1 days" "2022-03-01T00:00:00Z"
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
forms:
output:
- media:news
- name: otx.pulse
descr: Retrieve a specific pulse.
# Do not allow to run as root.
asroot: False
# User perms required to acces this command?
perms:
- [otx, user]
cmdargs:
- - pulseid
- type: str
help: OTX Pulse ID
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
- - --iocs
- default: false
action: store_true
# https://otx.alienvault.com/pulse/62637949a39428085f129938
help: Retrieve indicators? Some pulses are huge and not worth pulling in 60,000 IPs.
type: bool
- - --ioc_limit
- default: *ioc_limit
type: int
# https://otx.alienvault.com/pulse/62637949a39428085f129938
help: Set pulse IOCs size limit. Ignore pulses with indicators largers than this total.
forms:
output:
- media:news
- name: otx.domain
descr: Enrich an FQDN from Alienvault OTX Domain API Endpoint.
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- inet:fqdn
output:
- inet:fqdn
- name: otx.ip
descr: Enrich an IP address from Alienvault OTX Domain API Endpoint.
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- inet:ipv4
- inet:ipv6
output:
- inet:ipv4
- inet:ipv6
- name: otx.pdns
descr: Passive DNS data from OTX. Supports inet:fqdn, inet:ipv4 and inet:ipv6
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- inet:fqdn
- inet:ipv4
- inet:ipv6
output:
- inet:fqdn
- inet:ipv4
- inet:ipv6
- name: otx.file.pulses
descr: Retrieve any pulses that refernce the suplied hash.
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- hash:md5
- hash:sha1
- hash:sha256
- file:bytes
output:
- hash:md5
- hash:sha1
- hash:sha256
- file:bytes
- media:news
- name: otx.file.analysis
descr: Retrieve OTX file analysis for supplied hash.
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- hash:md5
- hash:sha1
- hash:sha256
- file:bytes
output:
- hash:md5
- hash:sha1
- hash:sha256
- file:bytes
- name: otx.pdns
descr: Passive DNS data from OTX. Supports inet:fqdn, inet:ipv4 and inet:ipv6
asroot: False
cmdargs:
- - --debug
- default: false
action: store_true
help: Show verbose debug output.
type: bool
- - --yield
- default: false
action: store_true
help: Yield the newly created nodes.
- - --timeout
- default: 0
type: int
help: Specify a timeout in seconds.
perms:
- [otx, user]
forms:
input:
- inet:fqdn
- inet:ipv4
- inet:ipv6
output:
- inet:fqdn
- inet:ipv4
- inet:ipv6