forked from HASecuritySolutions/Logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nxlog.conf
272 lines (258 loc) · 7.12 KB
/
nxlog.conf
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
## This is a sample configuration file. See the nxlog reference manual about the
## configuration options. It should be installed locally under
## /usr/share/doc/nxlog-ce/ and is also available online at
## http://nxlog.org/docs
########################################
# Global directives #
########################################
User nxlog
Group nxlog
LogFile /var/log/nxlog/nxlog.log
LogLevel INFO
########################################
# Modules #
########################################
<Extension _syslog>
Module xm_syslog
</Extension>
<Extension _charconv>
Module xm_charconv
AutodetectCharsets iso8859-2, utf-8, utf-16, utf-32
</Extension>
<Extension _json>
Module xm_json
</Extension>
<Extension _exec>
Module xm_exec
</Extension>
########################################
# Routes #
########################################
<Input suricata>
Module im_file
File "/nsm/sensor_data/ELKHunter-eth1/eve.json"
Exec $message = $raw_event;
Exec $type = "suricata";
</Input>
<Output suricata_out>
Module om_tcp
Host 127.0.0.1
Port 6051
Exec to_json();
</Output>
<Route suricata_route>
Path suricata => suricata_out
</Route>
<Input bro_conn>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/conn.log"
Exec $message = $raw_event;
Exec $type = "bro_conn";
ReadFromLast TRUE
</Input>
<Input bro_dhcp>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/dhcp.log"
Exec $message = $raw_event;
Exec $type = "bro_dhcp";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_dns>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/dns.log"
Exec $message = $raw_event;
Exec $type = "bro_dns";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_dpd>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/dpd.log"
Exec $message = $raw_event;
Exec $type = "bro_dpd";
#ReadFromLast FALSE
ReadFromLast TRUE
</Input>
<Input bro_files>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/files.log"
Exec $message = $raw_event;
Exec $type = "bro_files";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_ftp>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/ftp.log"
Exec $message = $raw_event;
Exec $type = "bro_ftp";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_http>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/http*.log"
Exec $message = $raw_event;
Exec $type = "bro_http";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_irc>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/irc.log"
Exec $message = $raw_event;
Exec $type = "bro_irc";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_kerberos>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/kerberos.log"
Exec $message = $raw_event;
Exec $type = "bro_kerberos";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_mysql>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/mysql.log"
Exec $message = $raw_event;
Exec $type = "bro_mysql";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_notice>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/notice.log"
Exec $message = $raw_event;
Exec $type = "bro_notice";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_rdp>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/rdp.log"
Exec $message = $raw_event;
Exec $type = "bro_rdp";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_signatures>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/signatures.log"
Exec $message = $raw_event;
Exec $type = "bro_signatures";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_smtp>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/smtp.log"
Exec $message = $raw_event;
Exec $type = "bro_smtp";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_snmp>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/snmp.log"
Exec $message = $raw_event;
Exec $type = "bro_snmp";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
#<Input bro_socks>
# Module im_file
#InputType w3cinput
# File "/nsm/bro/logs/current/socks.log"
# Exec $message = $raw_event;
# Exec $type = "bro_socks";
#ReadFromLast FALSE
#</Input>
<Input bro_software>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/software.log"
Exec $message = $raw_event;
Exec $type = "bro_software";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_ssh>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/ssh.log"
Exec $message = $raw_event;
Exec $type = "bro_ssh";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_ssl>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/ssl.log"
Exec $message = $raw_event;
Exec $type = "bro_ssl";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_tunnel>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/tunnel.log"
Exec $message = $raw_event;
Exec $type = "bro_tunnel";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_weird>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/weird.log"
Exec $message = $raw_event;
Exec $type = "bro_weird";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Input bro_x509>
Module im_file
#InputType w3cinput
File "/nsm/bro/logs/current/x509.log"
Exec $message = $raw_event;
Exec $type = "bro_x509";
ReadFromLast TRUE
#ReadFromLast FALSE
</Input>
<Processor buffer>
Module pm_buffer
# 1Mb buffer
MaxSize 102400
Type Mem
# warn at 512k
WarnLimit 51200
</Processor>
<Output bro_out>
Module om_tcp
Host 127.0.0.1
Port 6050
Exec to_json();
</Output>
<Route bro_route>
Path bro_conn,bro_dhcp,bro_dns,bro_dpd,bro_files,bro_ftp,bro_http,bro_irc,bro_kerberos,bro_mysql,bro_notice,bro_rdp,bro_signatures,bro_smtp,bro_snmp,bro_software,bro_ssh,bro_ssl,bro_tunnel,bro_weird,bro_x509 => buffer => bro_out
</Route>