-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathzeek_tests.yaml
More file actions
1606 lines (1606 loc) · 57.7 KB
/
Copy pathzeek_tests.yaml
File metadata and controls
1606 lines (1606 loc) · 57.7 KB
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# bypass-global-timestamp-format-in-sample-checks
id: "zeek"
tests:
-
sample: "<134>Dec 26 01:35:11 machine-name {\"_path\":\"capture_loss\",\"_write_ts\":\"2023-12-12T05:52:50.756358Z\",\"ts\":\"2023-12-12T05:52:32.763303Z\",\"ts_delta\":15.235642194747925,\"peer\":\"zeek\",\"gaps\":3,\"acks\":316,\"percent_lost\":0.9493670886075949}"
service: "corelight"
result:
custom:
_path: "capture_loss"
_write_ts: "2023-12-12T05:52:50.756358Z"
acks: 316
gaps: 3
peer: "zeek"
ts: "2023-12-12T05:52:32.763303Z"
ts_delta: 15.235642194747925
zeek:
percent_lost: 0.9493670886075949
message: "<134>Dec 26 01:35:11 machine-name {\"_path\":\"capture_loss\",\"_write_ts\":\"2023-12-12T05:52:50.756358Z\",\"ts\":\"2023-12-12T05:52:32.763303Z\",\"ts_delta\":15.235642194747925,\"peer\":\"zeek\",\"gaps\":3,\"acks\":316,\"percent_lost\":0.9493670886075949}"
service: "capture_loss"
tags:
- "source:LOGS_SOURCE"
timestamp: 1702360352763
-
sample: |-
{
"resp_pkts" : 0,
"resp_ip_bytes" : 0,
"orig_bytes" : 234,
"local_orig" : true,
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"orig_ip_bytes" : 318,
"orig_pkts" : 3,
"_path" : "conn",
"missed_bytes" : 0,
"duration" : 3.0111899375915527,
"local_resp" : true,
"uid" : "CcdWSj20NUmxZowq93",
"resp_bytes" : 0,
"conn_state" : "OTH",
"proto" : "icmp",
"id" : {
"orig_p" : 3,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 10
},
"ts" : "2023-12-12T05:52:32.763303Z"
}
result:
custom:
_path: "conn"
_write_ts: "2023-12-12T05:52:50.756358Z"
conn_state: "OTH"
connection_state: "No SYN seen - just midstream traffic"
duration: 3.0111899375915527
id:
orig_h: 185.64.148.0
orig_p: 3
resp_h: 185.64.148.0
resp_p: 10
local_orig: true
local_resp: true
missed_bytes: 0
network:
bytes_read: 234
bytes_written: 0
client:
ip: "185.64.148.0"
port: 3
destination:
ip: "185.64.148.0"
port: 10
ocsf:
activity_id: 6
activity_name: Traffic
category_name: Network Activity
category_uid: 4
class_name: Network Activity
class_uid: 4001
connection_info:
boundary: Localhost
boundary_id: 1
direction: Lateral
direction_id: 3
protocol_name: icmp
uid: CcdWSj20NUmxZowq93
dst_endpoint:
ip: 185.64.148.0
port: 10
duration: 3011
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: CcdWSj20NUmxZowq93
version: 1.5.0
severity: Informational
severity_id: 1
src_endpoint:
ip: 185.64.148.0
port: 3
status: Success
status_detail: OTH
status_id: 1
time: 1702360352763
traffic:
bytes: 234
bytes_in: 0
bytes_missed: 0
bytes_out: 234
packets: 3
packets_in: 0
packets_out: 3
orig_bytes: 234
orig_ip_bytes: 318
orig_pkts: 3
proto: icmp
resp_bytes: 0
resp_ip_bytes: 0
resp_pkts: 0
ts: "2023-12-12T05:52:32.763303Z"
uid: "CcdWSj20NUmxZowq93"
zeek:
duration_sec: 3.0111899375915527
missed_bytes: 0
proto: "icmp"
message: |-
{
"resp_pkts" : 0,
"resp_ip_bytes" : 0,
"orig_bytes" : 234,
"local_orig" : true,
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"orig_ip_bytes" : 318,
"orig_pkts" : 3,
"_path" : "conn",
"missed_bytes" : 0,
"duration" : 3.0111899375915527,
"local_resp" : true,
"uid" : "CcdWSj20NUmxZowq93",
"resp_bytes" : 0,
"conn_state" : "OTH",
"proto" : "icmp",
"id" : {
"orig_p" : 3,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 10
},
"ts" : "2023-12-12T05:52:32.763303Z"
}
service: "conn"
tags:
- "source:LOGS_SOURCE"
timestamp: 1702360352763
-
sample: |-
{
"status_code" : 200,
"method" : "POST",
"request_body_len" : 83,
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"_path" : "http",
"orig_mime_types" : [ "application/ocsp-request" ],
"uri" : "/rootr3",
"version" : "1.1",
"uid" : "CBQBvs1hob384mp2lb",
"resp_mime_types" : [ "application/ocsp-response" ],
"trans_depth" : 1,
"orig_fuids" : [ "FKhxp22QnZua8NWY2" ],
"host" : "host.com",
"status_msg" : "OK",
"id" : {
"orig_p" : 47210,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 80
},
"response_body_len" : 1434,
"user_agent" : "LIBCURL",
"ts" : "2023-12-12T05:52:32.763303Z",
"resp_fuids" : [ "F9Zqr71YzMZPVZ4dbe" ]
}
result:
custom:
_path: "http"
_write_ts: "2023-12-12T05:52:50.756358Z"
host: host.com
http:
method: "POST"
status_code: 200
url_details:
host: "host.com"
path: "/rootr3"
useragent: "LIBCURL"
version: "1.1"
http_url: "http://host.com/rootr3"
id:
orig_h: 185.64.148.0
orig_p: 47210
resp_h: 185.64.148.0
resp_p: 80
method: POST
network:
bytes_read: 83
bytes_written: 1434
client:
ip: "185.64.148.0"
port: 47210
destination:
ip: "185.64.148.0"
port: 80
ocsf:
activity_id: 6
activity_name: Post
category_name: Network Activity
category_uid: 4
class_name: HTTP Activity
class_uid: 4002
connection_info:
direction: Unknown
direction_id: 0
uid: CBQBvs1hob384mp2lb
dst_endpoint:
ip: 185.64.148.0
port: 80
http_request:
body_length: 83
http_method: POST
uid: CBQBvs1hob384mp2lb
url:
hostname: host.com
path: /rootr3
port: 80
url_string: http://host.com/rootr3
user_agent: LIBCURL
version: '1.1'
http_response:
body_length: 1434
code: 200
message: OK
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: CBQBvs1hob384mp2lb
version: 1.5.0
severity: Informational
severity_id: 1
src_endpoint:
ip: 185.64.148.0
port: 47210
status: Success
status_detail: OK
status_id: 1
time: 1702360352763
orig_fuids:
- "FKhxp22QnZua8NWY2"
orig_mime_types:
- "application/ocsp-request"
request_body_len: 83
resp_fuids:
- "F9Zqr71YzMZPVZ4dbe"
resp_mime_types:
- "application/ocsp-response"
response_body_len: 1434
status_code: 200
status_msg: "OK"
trans_depth: 1
ts: "2023-12-12T05:52:32.763303Z"
uid: "CBQBvs1hob384mp2lb"
uri: /rootr3
user_agent: LIBCURL
version: '1.1'
message: |-
{
"status_code" : 200,
"method" : "POST",
"request_body_len" : 83,
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"_path" : "http",
"orig_mime_types" : [ "application/ocsp-request" ],
"uri" : "/rootr3",
"version" : "1.1",
"uid" : "CBQBvs1hob384mp2lb",
"resp_mime_types" : [ "application/ocsp-response" ],
"trans_depth" : 1,
"orig_fuids" : [ "FKhxp22QnZua8NWY2" ],
"host" : "host.com",
"status_msg" : "OK",
"id" : {
"orig_p" : 47210,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 80
},
"response_body_len" : 1434,
"user_agent" : "LIBCURL",
"ts" : "2023-12-12T05:52:32.763303Z",
"resp_fuids" : [ "F9Zqr71YzMZPVZ4dbe" ]
}
service: "http"
tags:
- "source:LOGS_SOURCE"
timestamp: 1702360352763
-
sample: |-
{
"AA" : false,
"TTLs" : [ 30.0 ],
"rejected" : false,
"query" : "win2k16-1-159",
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"answers" : [ "185.64.148.0", "8.8.8.8" ],
"trans_id" : 38706,
"rcode" : 0,
"_path" : "dns",
"rcode_name" : "NOERROR",
"TC" : false,
"RA" : false,
"uid" : "CsOSdHqRMu62rNs31",
"RD" : false,
"proto" : "udp",
"Z" : 0,
"id" : {
"orig_p" : 58013,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 5355
},
"ts" : "2023-12-12T05:52:32.763303Z"
}
result:
custom:
AA: false
RA: false
RD: false
TC: false
TTLs:
- 30
Z: 0
_path: "dns"
_write_ts: "2023-12-12T05:52:50.756358Z"
answers:
- 185.64.148.0
- 8.8.8.8
dns:
answer:
name:
- 185.64.148.0
- 8.8.8.8
flags:
rcode: "NOERROR"
id: 38706
question:
name: "win2k16-1-159"
id:
orig_h: 185.64.148.0
orig_p: 58013
resp_h: 185.64.148.0
resp_p: 5355
network:
client:
geoip:
city:
name: "Paris"
continent:
code: "EU"
name: "Europe"
country:
iso_code: "FR"
name: "France"
ipAddress: "185.64.148.0"
location:
latitude: 48.90654
longitude: 2.33339
subdivision:
iso_code: "FR-IDF"
name: "Île-de-France"
timezone: "Europe/Paris"
ip: "185.64.148.0"
port: 58013
destination:
ip: "185.64.148.0"
port: 5355
ocsf:
activity_id: 2
activity_name: Response
answers:
- rdata: 185.64.148.0
- rdata: 8.8.8.8
category_name: Network Activity
category_uid: 4
class_name: DNS Activity
class_uid: 4003
connection_info:
direction: Unknown
direction_id: 0
protocol_name: udp
uid: CsOSdHqRMu62rNs31
dst_endpoint:
ip: 185.64.148.0
port: 5355
message: win2k16-1-159
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: CsOSdHqRMu62rNs31
version: 1.5.0
query:
hostname: win2k16-1-159
rcode: NoError
rcode_id: 0
severity: Informational
severity_id: 1
src_endpoint:
ip: 185.64.148.0
port: 58013
uid: 185.64.148.0
status: Success
status_detail: NOERROR
status_id: 1
time: 1702360352763
proto: udp
query: win2k16-1-159
rcode: 0
rcode_name: NOERROR
rejected: false
trans_id: 38706
ts: "2023-12-12T05:52:32.763303Z"
uid: "CsOSdHqRMu62rNs31"
zeek:
proto: "udp"
message: |-
{
"AA" : false,
"TTLs" : [ 30.0 ],
"rejected" : false,
"query" : "win2k16-1-159",
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"answers" : [ "185.64.148.0", "8.8.8.8" ],
"trans_id" : 38706,
"rcode" : 0,
"_path" : "dns",
"rcode_name" : "NOERROR",
"TC" : false,
"RA" : false,
"uid" : "CsOSdHqRMu62rNs31",
"RD" : false,
"proto" : "udp",
"Z" : 0,
"id" : {
"orig_p" : 58013,
"resp_h" : "185.64.148.0",
"orig_h" : "185.64.148.0",
"resp_p" : 5355
},
"ts" : "2023-12-12T05:52:32.763303Z"
}
service: "dns"
tags:
- "source:LOGS_SOURCE"
timestamp: 1702360352763
-
sample: |-
{
"level" : "Reporter::INFO",
"_write_ts" : "2023-12-12T05:52:50.756358Z",
"location" : "",
"_path" : "reporter",
"message" : "18294 packets received on interface xyz, 0 (0.00%) dropped, 8 (0.04%) not processed",
"ts" : "2023-12-12T05:52:32.763303Z"
}
result:
custom:
_path: "reporter"
_write_ts: "2023-12-12T05:52:50.756358Z"
level: "Reporter::INFO"
location: ""
severity: "INFO"
ts: "2023-12-12T05:52:32.763303Z"
message: "18294 packets received on interface xyz, 0 (0.00%) dropped, 8 (0.04%) not processed"
service: "reporter"
status: "info"
tags:
- "source:LOGS_SOURCE"
timestamp: 1702360352763
-
sample: "<134>Jan 12 18:13:46 machine-name {\"_path\":\"datared\",\"_write_ts\":\"2024-01-13T00:13:42.817478Z\",\"ts\":\"2024-01-13T00:13:42.817478Z\",\"conn_red\":1310,\"conn_total\":18460,\"dns_red\":1141,\"dns_total\":1604,\"files_red\":313,\"files_total\":796,\"http_red\":140,\"http_total\":140,\"ssl_red\":215,\"ssl_total\":227,\"weird_red\":20,\"weird_total\":20}"
service: "corelight"
result:
custom:
_path: "datared"
_write_ts: "2024-01-13T00:13:42.817478Z"
ts: "2024-01-13T00:13:42.817478Z"
zeek:
conn_red: 1310
conn_total: 18460
dns_red: 1141
dns_total: 1604
files_red: 313
files_total: 796
http_red: 140
http_total: 140
ssl_red: 215
ssl_total: 227
weird_red: 20
weird_total: 20
message: "<134>Jan 12 18:13:46 machine-name {\"_path\":\"datared\",\"_write_ts\":\"2024-01-13T00:13:42.817478Z\",\"ts\":\"2024-01-13T00:13:42.817478Z\",\"conn_red\":1310,\"conn_total\":18460,\"dns_red\":1141,\"dns_total\":1604,\"files_red\":313,\"files_total\":796,\"http_red\":140,\"http_total\":140,\"ssl_red\":215,\"ssl_total\":227,\"weird_red\":20,\"weird_total\":20}"
service: "datared"
tags:
- "source:LOGS_SOURCE"
timestamp: 1705104822817
-
sample: "<134>Mar 6 22:39:30 machine-name {\"_path\":\"dns_red\",\"_write_ts\":\"2024-03-07T04:39:28.580374Z\",\"ts\":\"2024-03-07T04:38:40.085451Z\",\"uid\":\"CyArTY2KEgcygwMLi1\",\"id.orig_h\":\"10.10.10.10\",\"id.orig_p\":123,\"id.resp_h\":\"20.20.20.20\",\"id.resp_p\":321,\"query\":\"time.missouri.edu\",\"qtype_name\":\"A\",\"num\":4}"
service: "corelight"
result:
custom:
_path: "dns_red"
_write_ts: "2024-03-07T04:39:28.580374Z"
dns:
question:
name: "time.missouri.edu"
type: "A"
id:
orig_h: 10.10.10.10
orig_p: 123
resp_h: 20.20.20.20
resp_p: 321
network:
client:
geoip: {}
ip: "10.10.10.10"
port: 123
destination:
ip: "20.20.20.20"
port: 321
num: 4
ocsf:
activity_id: 1
activity_name: Query
category_name: Network Activity
category_uid: 4
class_name: DNS Activity
class_uid: 4003
connection_info:
direction: Unknown
direction_id: 0
uid: CyArTY2KEgcygwMLi1
dst_endpoint:
ip: 20.20.20.20
port: 321
message: time.missouri.edu
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: CyArTY2KEgcygwMLi1
version: 1.5.0
query:
hostname: time.missouri.edu
type: A
severity: Informational
severity_id: 1
src_endpoint:
ip: 10.10.10.10
port: 123
uid: 10.10.10.10
status: Unknown
status_id: 0
time: 1709786320085
qtype_name: A
query: time.missouri.edu
ts: "2024-03-07T04:38:40.085451Z"
uid: "CyArTY2KEgcygwMLi1"
message: "<134>Mar 6 22:39:30 machine-name {\"_path\":\"dns_red\",\"_write_ts\":\"2024-03-07T04:39:28.580374Z\",\"ts\":\"2024-03-07T04:38:40.085451Z\",\"uid\":\"CyArTY2KEgcygwMLi1\",\"id.orig_h\":\"10.10.10.10\",\"id.orig_p\":123,\"id.resp_h\":\"20.20.20.20\",\"id.resp_p\":321,\"query\":\"time.missouri.edu\",\"qtype_name\":\"A\",\"num\":4}"
service: "dns_red"
tags:
- "source:LOGS_SOURCE"
timestamp: 1709786320085
-
sample: "<134>Nov 19 22:36:37 machine-name {\"_path\":\"etc_viz\",\"_system_name\":\"machine-name\",\"_write_ts\":\"2024-03-28T00:01:04.742415Z\",\"c2s_viz.clr_frac\":0.0,\"c2s_viz.enc_dev\":0.30151134457776363,\"c2s_viz.enc_frac\":1.0,\"c2s_viz.pdu1_enc\":true,\"c2s_viz.size\":198,\"err\":null,\"s2c_viz.clr_frac\":0.0,\"s2c_viz.enc_dev\":0.6957566520492713,\"s2c_viz.enc_frac\":1.0,\"s2c_viz.pdu1_enc\":true,\"s2c_viz.size\":818,\"server_a\":\"10.10.10.10\",\"server_p\":443,\"service\":[],\"ts\":\"2024-03-28T00:00:52.656388Z\",\"uid\":\"CV79JD7onkfdf7WDa\",\"viz_stat\":\"Ee!!\"}"
service: "corelight"
result:
custom:
_path: "etc_viz"
_system_name: "machine-name"
_write_ts: "2024-03-28T00:01:04.742415Z"
c2s_viz:
clr_frac: 0
enc_dev: 0.30151134457776363
enc_frac: 1
pdu1_enc: true
size: 198
network:
client:
ip: "10.10.10.10"
port: 443
s2c_viz:
clr_frac: 0
enc_dev: 0.6957566520492713
enc_frac: 1
pdu1_enc: true
size: 818
server_p: 443
ts: "2024-03-28T00:00:52.656388Z"
uid: "CV79JD7onkfdf7WDa"
viz_stat: "Ee!!"
message: "<134>Nov 19 22:36:37 machine-name {\"_path\":\"etc_viz\",\"_system_name\":\"machine-name\",\"_write_ts\":\"2024-03-28T00:01:04.742415Z\",\"c2s_viz.clr_frac\":0.0,\"c2s_viz.enc_dev\":0.30151134457776363,\"c2s_viz.enc_frac\":1.0,\"c2s_viz.pdu1_enc\":true,\"c2s_viz.size\":198,\"err\":null,\"s2c_viz.clr_frac\":0.0,\"s2c_viz.enc_dev\":0.6957566520492713,\"s2c_viz.enc_frac\":1.0,\"s2c_viz.pdu1_enc\":true,\"s2c_viz.size\":818,\"server_a\":\"10.10.10.10\",\"server_p\":443,\"service\":[],\"ts\":\"2024-03-28T00:00:52.656388Z\",\"uid\":\"CV79JD7onkfdf7WDa\",\"viz_stat\":\"Ee!!\"}"
service: "etc_viz"
tags:
- "source:LOGS_SOURCE"
timestamp: 1711584052656
-
sample: "<134>May 11 18:47:07 test-system {\"_path\":\"conn\",\"_system_name\":\"test-system\",\"_write_ts\":\"2026-05-11T18:47:07.850764Z\",\"ts\":\"2026-05-11T18:47:02.848960Z\",\"uid\":\"12345678901234567890\",\"id.orig_h\":\"10.10.50.1\",\"id.orig_p\":60704,\"id.resp_h\":\"10.10.60.6\",\"id.resp_p\":88,\"proto\":\"tcp\",\"service\":\"krb_tcp\",\"orig_bytes\":227,\"resp_bytes\":195,\"conn_state\":\"RSTR\",\"local_orig\":true,\"local_resp\":true,\"missed_bytes\":0,\"history\":\"ShADTdFar\",\"orig_pkts\":5,\"resp_pkts\":7,\"orig_ip_bytes\":666,\"resp_ip_bytes\":499,\"community_id\":\"1:abc123\",\"tunnel_parents\":[\"test\",\"test2\"],\"orig_l2_addr\":\"00:50:56:a1:b2:c3\",\"resp_l2_addr\":\"00:50:56:d4:e5:f6\"}"
service: "corelight"
result:
custom:
_path: "conn"
_system_name: "test-system"
_write_ts: "2026-05-11T18:47:07.850764Z"
community_id: "1:abc123"
conn_state: "RSTR"
connection_state: "Responder sent a RST"
history: "ShADTdFar"
id:
orig_h: "10.10.50.1"
orig_p: 60704
resp_h: "10.10.60.6"
resp_p: 88
local_orig: true
local_resp: true
missed_bytes: 0
network:
bytes_read: 227
bytes_written: 195
client:
ip: "10.10.50.1"
port: 60704
destination:
ip: "10.10.60.6"
port: 88
ocsf:
activity_id: 2
activity_name: "Close"
category_name: "Network Activity"
category_uid: 4
class_name: "Network Activity"
class_uid: 4001
connection_info:
boundary: "Localhost"
boundary_id: 1
community_uid: "1:abc123"
direction: "Lateral"
direction_id: 3
flag_history: "ShADTdFar"
protocol_name: "tcp"
uid: "12345678901234567890"
dst_endpoint:
ip: "10.10.60.6"
mac: "00:50:56:d4:e5:f6"
port: 88
metadata:
product:
name: "Zeek"
vendor_name: "Corelight"
uid: "12345678901234567890"
version: "1.5.0"
severity: "Informational"
severity_id: 1
src_endpoint:
ip: "10.10.50.1"
mac: "00:50:56:a1:b2:c3"
port: 60704
status: "Failure"
status_detail: "RSTR"
status_id: 2
time: 1778525222848
traffic:
bytes: 422
bytes_in: 195
bytes_missed: 0
bytes_out: 227
packets: 12
packets_in: 7
packets_out: 5
orig_bytes: 227
orig_ip_bytes: 666
orig_l2_addr: "00:50:56:a1:b2:c3"
orig_pkts: 5
proto: "tcp"
resp_bytes: 195
resp_ip_bytes: 499
resp_l2_addr: "00:50:56:d4:e5:f6"
resp_pkts: 7
service: "krb_tcp"
ts: "2026-05-11T18:47:02.848960Z"
tunnel_parents:
- "test"
- "test2"
uid: "12345678901234567890"
zeek:
missed_bytes: 0
proto: "tcp"
message: '<134>May 11 18:47:07 test-system {"_path":"conn","_system_name":"test-system","_write_ts":"2026-05-11T18:47:07.850764Z","ts":"2026-05-11T18:47:02.848960Z","uid":"12345678901234567890","id.orig_h":"10.10.50.1","id.orig_p":60704,"id.resp_h":"10.10.60.6","id.resp_p":88,"proto":"tcp","service":"krb_tcp","orig_bytes":227,"resp_bytes":195,"conn_state":"RSTR","local_orig":true,"local_resp":true,"missed_bytes":0,"history":"ShADTdFar","orig_pkts":5,"resp_pkts":7,"orig_ip_bytes":666,"resp_ip_bytes":499,"community_id":"1:abc123","tunnel_parents":["test","test2"],"orig_l2_addr":"00:50:56:a1:b2:c3","resp_l2_addr":"00:50:56:d4:e5:f6"}'
service: "conn"
tags:
- "source:LOGS_SOURCE"
timestamp: 1778525222848
-
sample: "<134>May 11 18:47:07 test-system {\"_path\":\"conn\",\"_system_name\":\"test-system\",\"_write_ts\":\"2026-05-11T18:47:07.850764Z\",\"ts\":\"2026-05-11T18:47:02.848960Z\",\"uid\":\"C1234567890abcdef1\",\"id.orig_h\":\"10.250.7.2\",\"id.orig_h_name\":{\"src\":\"DNS_PTR\",\"vals\":[\"workstation-1.corp.example.com\"]},\"id.orig_p\":60099,\"id.resp_h\":\"10.252.75.69\",\"id.resp_h_name\":{\"src\":\"DNS_PTR\",\"vals\":[\"server-1.corp.example.com\"]},\"id.resp_p\":8651,\"id.vlan\":1039,\"proto\":\"tcp\",\"service\":\"http\",\"orig_bytes\":1024,\"resp_bytes\":4096,\"conn_state\":\"SF\",\"local_orig\":true,\"local_resp\":true,\"missed_bytes\":0,\"history\":\"ShADadtT\",\"orig_pkts\":8,\"resp_pkts\":12,\"orig_ip_bytes\":1320,\"resp_ip_bytes\":4488,\"community_id\":\"1:xyz789\",\"orig_l2_addr\":\"aa:bb:cc:11:22:33\",\"resp_l2_addr\":\"aa:bb:cc:44:55:66\"}"
service: "corelight"
result:
custom:
_path: "conn"
_system_name: "test-system"
_write_ts: "2026-05-11T18:47:07.850764Z"
community_id: "1:xyz789"
conn_state: "SF"
connection_state: "Normal establishment and termination"
history: "ShADadtT"
id:
orig_h: "10.250.7.2"
orig_h_name:
src: "DNS_PTR"
vals:
- "workstation-1.corp.example.com"
orig_p: 60099
resp_h: "10.252.75.69"
resp_h_name:
src: "DNS_PTR"
vals:
- "server-1.corp.example.com"
resp_p: 8651
vlan: 1039
local_orig: true
local_resp: true
missed_bytes: 0
network:
bytes_read: 1024
bytes_written: 4096
client:
ip: "10.250.7.2"
port: 60099
destination:
ip: "10.252.75.69"
port: 8651
ocsf:
activity_id: 2
activity_name: "Close"
category_name: "Network Activity"
category_uid: 4
class_name: "Network Activity"
class_uid: 4001
connection_info:
boundary: "Localhost"
boundary_id: 1
community_uid: "1:xyz789"
direction: "Lateral"
direction_id: 3
flag_history: "ShADadtT"
protocol_name: "tcp"
uid: "C1234567890abcdef1"
dst_endpoint:
hostname: "server-1.corp.example.com"
ip: "10.252.75.69"
mac: "aa:bb:cc:44:55:66"
port: 8651
metadata:
product:
name: "Zeek"
vendor_name: "Corelight"
uid: "C1234567890abcdef1"
version: "1.5.0"
severity: "Informational"
severity_id: 1
src_endpoint:
hostname: "workstation-1.corp.example.com"
ip: "10.250.7.2"
mac: "aa:bb:cc:11:22:33"
port: 60099
status: "Success"
status_detail: "SF"
status_id: 1
time: 1778525222848
traffic:
bytes: 5120
bytes_in: 4096
bytes_missed: 0
bytes_out: 1024
packets: 20
packets_in: 12
packets_out: 8
orig_bytes: 1024
orig_ip_bytes: 1320
orig_l2_addr: "aa:bb:cc:11:22:33"
orig_pkts: 8
proto: "tcp"
resp_bytes: 4096
resp_ip_bytes: 4488
resp_l2_addr: "aa:bb:cc:44:55:66"
resp_pkts: 12
service: "http"
ts: "2026-05-11T18:47:02.848960Z"
uid: "C1234567890abcdef1"
zeek:
missed_bytes: 0
proto: "tcp"
message: '<134>May 11 18:47:07 test-system {"_path":"conn","_system_name":"test-system","_write_ts":"2026-05-11T18:47:07.850764Z","ts":"2026-05-11T18:47:02.848960Z","uid":"C1234567890abcdef1","id.orig_h":"10.250.7.2","id.orig_h_name":{"src":"DNS_PTR","vals":["workstation-1.corp.example.com"]},"id.orig_p":60099,"id.resp_h":"10.252.75.69","id.resp_h_name":{"src":"DNS_PTR","vals":["server-1.corp.example.com"]},"id.resp_p":8651,"id.vlan":1039,"proto":"tcp","service":"http","orig_bytes":1024,"resp_bytes":4096,"conn_state":"SF","local_orig":true,"local_resp":true,"missed_bytes":0,"history":"ShADadtT","orig_pkts":8,"resp_pkts":12,"orig_ip_bytes":1320,"resp_ip_bytes":4488,"community_id":"1:xyz789","orig_l2_addr":"aa:bb:cc:11:22:33","resp_l2_addr":"aa:bb:cc:44:55:66"}'
service: "conn"
tags:
- "source:LOGS_SOURCE"
timestamp: 1778525222848
-
sample: "<134>May 11 18:46:03 ndr-pvg3-1 {\"_path\":\"conn_long\",\"_system_name\":\"ndr-pvg3-1\",\"_write_ts\":\"2026-05-11T18:46:03.887017Z\",\"ts\":\"2026-05-11T18:36:03.886935Z\",\"uid\":\"12345678901234568\",\"id.orig_h\":\"10.250.5.75\",\"id.orig_p\":63231,\"id.resp_h\":\"172.64.5.1\",\"id.resp_p\":443,\"id.vlan\":1000,\"proto\":\"tcp\",\"service\":\"ssl\",\"duration\":600.0000820159912,\"orig_bytes\":7071,\"resp_bytes\":18980,\"conn_state\":\"S1\",\"local_orig\":true,\"local_resp\":false,\"missed_bytes\":0,\"history\":\"ShADadtT\",\"orig_pkts\":32,\"resp_pkts\":37,\"orig_ip_bytes\":8380,\"resp_ip_bytes\":20532,\"community_id\":\"1:def456\",\"corelight_shunted\":false}"
service: "corelight"
result:
custom:
_path: conn_long
_system_name: ndr-pvg3-1
_write_ts: '2026-05-11T18:46:03.887017Z'
community_id: 1:def456
conn_state: S1
connection_state: Connection established - not terminated
corelight_shunted: false
duration: 600.0000820159912
history: ShADadtT
id:
orig_h: 10.250.5.75
orig_p: 63231
resp_h: 172.64.5.1
resp_p: 443
vlan: 1000
local_orig: true
local_resp: false
missed_bytes: 0
network:
bytes_read: 7071
bytes_written: 18980
client:
ip: 10.250.5.75
port: 63231
destination:
ip: 172.64.5.1
port: 443
ocsf:
activity_id: 6
activity_name: Traffic
category_name: Network Activity
category_uid: 4
class_name: Network Activity
class_uid: 4001
connection_info:
boundary: External
boundary_id: 3
community_uid: 1:def456
direction: Outbound
direction_id: 2
flag_history: ShADadtT
protocol_name: tcp
uid: '12345678901234568'
dst_endpoint:
ip: 172.64.5.1
port: 443
duration: 600000
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: '12345678901234568'
version: 1.5.0
severity: Informational
severity_id: 1
src_endpoint:
ip: 10.250.5.75
port: 63231
status: Success
status_detail: S1
status_id: 1
time: 1778524563886
traffic:
bytes: 26051
bytes_in: 18980
bytes_missed: 0
bytes_out: 7071
packets: 69
packets_in: 37
packets_out: 32
orig_bytes: 7071
orig_ip_bytes: 8380
orig_pkts: 32
proto: tcp
resp_bytes: 18980
resp_ip_bytes: 20532
resp_pkts: 37
service: ssl
ts: '2026-05-11T18:36:03.886935Z'
uid: '12345678901234568'
zeek:
duration_sec: 600.0000820159912
missed_bytes: 0
proto: tcp
message: <134>May 11 18:46:03 ndr-pvg3-1 {"_path":"conn_long","_system_name":"ndr-pvg3-1","_write_ts":"2026-05-11T18:46:03.887017Z","ts":"2026-05-11T18:36:03.886935Z","uid":"12345678901234568","id.orig_h":"10.250.5.75","id.orig_p":63231,"id.resp_h":"172.64.5.1","id.resp_p":443,"id.vlan":1000,"proto":"tcp","service":"ssl","duration":600.0000820159912,"orig_bytes":7071,"resp_bytes":18980,"conn_state":"S1","local_orig":true,"local_resp":false,"missed_bytes":0,"history":"ShADadtT","orig_pkts":32,"resp_pkts":37,"orig_ip_bytes":8380,"resp_ip_bytes":20532,"community_id":"1:def456","corelight_shunted":false}
service: conn_long
tags:
- source:LOGS_SOURCE
timestamp: 1778524563886
-
sample: "<134>Dec 12 05:52:50 machine-name {\"_path\":\"http\",\"_write_ts\":\"2023-12-12T05:52:50.756358Z\",\"ts\":\"2023-12-12T05:52:32.763303Z\",\"uid\":\"CBQBvs1hob384mp2lb\",\"id.orig_h\":\"185.64.148.0\",\"id.orig_p\":47210,\"id.resp_h\":\"185.64.148.0\",\"id.resp_p\":80,\"method\":\"POST\",\"host\":\"host.com\",\"uri\":\"/rootr3\",\"version\":\"1.1\",\"user_agent\":\"LIBCURL\",\"request_body_len\":83,\"response_body_len\":1434,\"status_code\":200,\"status_msg\":\"OK\",\"trans_depth\":1,\"orig_mime_types\":[\"application/ocsp-request\"],\"resp_mime_types\":[\"application/ocsp-response\"],\"orig_fuids\":[\"FKhxp22QnZua8NWY2\"],\"resp_fuids\":[\"F9Zqr71YzMZPVZ4dbe\"]}"
service: "corelight"
result:
custom:
_path: http
_write_ts: '2023-12-12T05:52:50.756358Z'
host: host.com
http:
method: POST
status_code: 200
url_details:
host: host.com
path: /rootr3
useragent: LIBCURL
version: '1.1'
http_url: http://host.com/rootr3
id:
orig_h: 185.64.148.0
orig_p: 47210
resp_h: 185.64.148.0
resp_p: 80
method: POST
network:
bytes_read: 83
bytes_written: 1434
client:
ip: 185.64.148.0
port: 47210
destination:
ip: 185.64.148.0
port: 80
ocsf:
activity_id: 6
activity_name: Post
category_name: Network Activity
category_uid: 4
class_name: HTTP Activity
class_uid: 4002
connection_info:
direction: Unknown
direction_id: 0
uid: CBQBvs1hob384mp2lb
dst_endpoint:
ip: 185.64.148.0
port: 80
http_request:
body_length: 83
http_method: POST
uid: CBQBvs1hob384mp2lb
url:
hostname: host.com
path: /rootr3
port: 80
url_string: http://host.com/rootr3
user_agent: LIBCURL
version: '1.1'
http_response:
body_length: 1434
code: 200
message: OK
metadata:
product:
name: Zeek
vendor_name: Corelight
uid: CBQBvs1hob384mp2lb
version: 1.5.0
severity: Informational
severity_id: 1
src_endpoint:
ip: 185.64.148.0
port: 47210
status: Success
status_detail: OK
status_id: 1
time: 1702360352763
orig_fuids:
- FKhxp22QnZua8NWY2
orig_mime_types:
- application/ocsp-request
request_body_len: 83
resp_fuids:
- F9Zqr71YzMZPVZ4dbe
resp_mime_types:
- application/ocsp-response
response_body_len: 1434
status_code: 200
status_msg: OK
trans_depth: 1
ts: '2023-12-12T05:52:32.763303Z'
uid: CBQBvs1hob384mp2lb
uri: /rootr3