File tree 12 files changed +661
-4
lines changed
12 files changed +661
-4
lines changed Original file line number Diff line number Diff line change
1
+ type port=uint16;
1
2
type alert = {
2
3
timestamp: time,
3
4
event_type: bstring,
4
5
src_ip: ip,
5
- src_port: port=(uint16) ,
6
+ src_port: port,
6
7
dest_ip: ip,
7
- dest_port: port=(uint16) ,
8
+ dest_port: port,
8
9
vlan: [uint16],
9
10
proto: bstring,
10
11
app_proto: bstring,
@@ -36,9 +37,9 @@ type alert = {
36
37
icmp_type: uint64,
37
38
tunnel: {
38
39
src_ip: ip,
39
- src_port: port=(uint16) ,
40
+ src_port: port,
40
41
dest_ip: ip,
41
- dest_port: port=(uint16) ,
42
+ dest_port: port,
42
43
proto: bstring,
43
44
depth: uint64
44
45
},
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ your effective use of Brimcap.
6
6
## Support Resources
7
7
8
8
- [[ Troubleshooting]]
9
+
10
+ ## User Documentation
11
+
12
+ - [[ Custom Brimcap Config]]
Original file line number Diff line number Diff line change 1
1
** Support Resources**
2
2
3
3
- [[ Troubleshooting]]
4
+
5
+ ** User Documentation**
6
+
7
+ - [[ Custom Brimcap Config]]
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -e
2
+ exec /usr/bin/suricata -r /dev/stdin
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments