Skip to content

Commit b071368

Browse files
authored
Wiki article and example YAML/scripts for custom Zeek/Suricata/NetFlow (#72)
1 parent 97df0e9 commit b071368

12 files changed

+661
-4
lines changed

cli/analyzecli/suricata.zed

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
type port=uint16;
12
type alert = {
23
timestamp: time,
34
event_type: bstring,
45
src_ip: ip,
5-
src_port: port=(uint16),
6+
src_port: port,
67
dest_ip: ip,
7-
dest_port: port=(uint16),
8+
dest_port: port,
89
vlan: [uint16],
910
proto: bstring,
1011
app_proto: bstring,
@@ -36,9 +37,9 @@ type alert = {
3637
icmp_type: uint64,
3738
tunnel: {
3839
src_ip: ip,
39-
src_port: port=(uint16),
40+
src_port: port,
4041
dest_ip: ip,
41-
dest_port: port=(uint16),
42+
dest_port: port,
4243
proto: bstring,
4344
depth: uint64
4445
},

docs/Custom-Brimcap-Config.md

+526
Large diffs are not rendered by default.

docs/Home.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ your effective use of Brimcap.
66
## Support Resources
77

88
- [[Troubleshooting]]
9+
10+
## User Documentation
11+
12+
- [[Custom Brimcap Config]]

docs/_Sidebar.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
**Support Resources**
22

33
- [[Troubleshooting]]
4+
5+
**User Documentation**
6+
7+
- [[Custom Brimcap Config]]
24.8 KB
Loading
329 KB
Loading

docs/media/NetFlow-Pool.png

238 KB
Loading

examples/nfdump-wrapper.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
export LD_LIBRARY_PATH="/usr/local/lib"
3+
TMPFILE=$(mktemp)
4+
cat - > "$TMPFILE"
5+
/usr/local/bin/nfpcapd -r "$TMPFILE" -l .
6+
rm "$TMPFILE"
7+
for file in nfcapd.*
8+
do
9+
/usr/local/bin/nfdump -r $file -o csv | head -n -3 | /opt/Brim/resources/app.asar.unpacked/zdeps/zq -i csv - > ${file}.zng
10+
done

examples/nfdump.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
analyzers:
2+
- cmd: /usr/local/bin/nfdump-wrapper.sh
3+
globs: ["*.zng"]
4+
shaper: |
5+
type netflow = {
6+
ts: time,
7+
te: time,
8+
td: duration,
9+
sa: ip,
10+
da: ip,
11+
sp: uint16,
12+
dp: uint16,
13+
pr: string,
14+
flg: string,
15+
fwd: bytes,
16+
stos: bytes,
17+
ipkt: uint64,
18+
ibyt: uint64,
19+
opkt: uint64,
20+
obyt: uint64,
21+
\in: uint64,
22+
out: uint64,
23+
sas: uint64,
24+
das: uint64,
25+
smk: uint8,
26+
dmk: uint8,
27+
dtos: bytes,
28+
dir: uint8,
29+
nh: ip,
30+
nhb: ip,
31+
svln: uint16,
32+
dvln: uint16,
33+
ismc: string,
34+
odmc: string,
35+
idmc: string,
36+
osmc: string,
37+
mpls1: string,
38+
mpls2: string,
39+
mpls3: string,
40+
mpls4: string,
41+
mpls5: string,
42+
mpls6: string,
43+
mpls7: string,
44+
mpls8: string,
45+
mpls9: string,
46+
mpls10: string,
47+
cl: float64,
48+
sl: float64,
49+
al: float64,
50+
ra: ip,
51+
eng: string,
52+
exid: bytes,
53+
tr: time
54+
}
55+
put this := shape(netflow)

examples/suricata-wrapper.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash -e
2+
exec /usr/bin/suricata -r /dev/stdin

examples/zeek-suricata.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
analyzers:
2+
- cmd: /usr/local/bin/zeek-wrapper.sh
3+
- cmd: /usr/local/bin/suricata-wrapper.sh
4+
globs: ["eve.json"]
5+
shaper: |
6+
type port=uint16;
7+
type alert = {
8+
timestamp: time,
9+
event_type: bstring,
10+
src_ip: ip,
11+
src_port: port,
12+
dest_ip: ip,
13+
dest_port: port,
14+
vlan: [uint16],
15+
proto: bstring,
16+
app_proto: bstring,
17+
alert: {
18+
severity: uint16,
19+
signature: bstring,
20+
category: bstring,
21+
action: bstring,
22+
signature_id: uint64,
23+
gid: uint64,
24+
rev: uint64,
25+
metadata: {
26+
signature_severity: [bstring],
27+
former_category: [bstring],
28+
attack_target: [bstring],
29+
deployment: [bstring],
30+
affected_product: [bstring],
31+
created_at: [bstring],
32+
performance_impact: [bstring],
33+
updated_at: [bstring],
34+
malware_family: [bstring],
35+
tag: [bstring]
36+
}
37+
},
38+
flow_id: uint64,
39+
pcap_cnt: uint64,
40+
tx_id: uint64,
41+
icmp_code: uint64,
42+
icmp_type: uint64,
43+
tunnel: {
44+
src_ip: ip,
45+
src_port: port,
46+
dest_ip: ip,
47+
dest_port: port,
48+
proto: bstring,
49+
depth: uint64
50+
},
51+
community_id: bstring
52+
}
53+
filter event_type=="alert" | put this := shape(alert) | rename ts := timestamp

examples/zeek-wrapper.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
exec /opt/zeek/bin/zeek -C -r - --exec "event zeek_init() { Log::disable_stream(PacketFilter::LOG); Log::disable_stream(LoadedScripts::LOG); }" local

0 commit comments

Comments
 (0)