forked from zeek/packages
-
Notifications
You must be signed in to change notification settings - Fork 2
/
aggregate.meta
2086 lines (1864 loc) · 75 KB
/
aggregate.meta
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
[0xl3x1/zeek-EternalSafety]
description = EternalSafety is a Zeek package for detecting potentially-dangerous SMBv1 protocol violations that encapsulate bugs exploited by the infamous Eternal* family of Windows exploits. It is capable of detecting EternalBlue, EternalSynergy/EternalRomance, EternalChampion, and the DoublePulsar backdoor. However, rather than identifying these exploits via simple signature-matching, *EternalSafety* instead implements a set of SMBv1 protocol invariants that encapsulate techniques used by each Eternal* exploit to trigger bugs in unpatched Windows systems. EternalSafety accurately and reliably identifies the EternalBlue, EternalSynergy and EternalRomance exploits, and the DoublePulsar backdoor implant. Due to limitations in Zeek's SMBv1 support, it has limited support for detecting EternalChampion via signature-matching. EternalSafety also identifies a range of other protocol violations, such as the use of unimplemented/unused SMBv1 commands, server-initiated changes in values that may only be set by an SMBv1 client, and incorrect interleaving of transaction types.
script_dir = scripts
tags = SMB, Windows, attack, notice, Eternal, SMBv1, EternalBlue
test_command = cd tests && make test
version = master
url = https://github.com/0xl3x1/zeek-EternalSafety
[0xxon/cve-2020-0601]
depends =
zkg >=2.0
zeek >=4.0.0
description = "Test script for CVE-2020-0601. Please read Readme."
script_dir = scripts
test_command = cd testing && btest -d
url = https://github.com/0xxon/cve-2020-0601
version = v0.4
[0xxon/cve-2020-0601-plugin]
build_command = ( ./configure && make )
description = "Test script for CVE-2020-0601. Binary package, requires OpenSSL 1.1.x"
script_dir = scripts
test_command = cd testing && btest -d
url = https://github.com/0xxon/cve-2020-0601-plugin
version = master
[0xxon/cve-2020-13777]
depends =
zkg >=2.0
zeek >=4.0.0
description = "Test script for CVE-2020-13777. Please read Readme."
script_dir = scripts
test_command = cd testing && btest -d
url = https://github.com/0xxon/cve-2020-13777
version = main
[0xxon/zeek-network-statistics]
description = Perform regular network measurements and report results.
script_dir = scripts
tags = topk, sumstats
test_command = cd tests && make
version = main
url = https://github.com/0xxon/zeek-network-statistics
[0xxon/zeek-plugin-roca]
build_command = ( ./configure --bro-dist=%(bro_dist)s && make )
description = Identify certificates potentially affected by CVE-2017-15361
plugin_dir = build/Johanna_ROCA.tgz
tags = certificates, CVE-2017-15361
test_command = cd tests && btest -d
url = https://github.com/0xxon/zeek-plugin-roca
version = 0.0.1
[0xxon/zeek-postgresql]
build_command = ( ./configure --with-postgresql-inc=`pg_config --includedir` --with-postgresql-server-inc=`pg_config --includedir-server` --with-postgresql-lib=`pg_config --libdir` && make )
description = A PostgreSQL reader and writer for Zeek.
plugin_dir = build
tags = zeek plugin, PostgreSQL, reader, writer, input
test_command = cd tests && btest -d
version = 0.0.7
url = https://github.com/0xxon/zeek-postgresql
[0xxon/zeek-sumstats-counttable]
description = Two-dimensional buckets for sumstats (count occurences per $str).
tags = sumstats, summary statistics
test_command = cd tests && btest -d
url = https://github.com/0xxon/zeek-sumstats-counttable
version = 0.0.4
[0xxon/zeek-tls-log-alternative]
description = "This package generates a file called tls.log. The difference from ssl.log is that it is much more focused on logging all kinds of protocol features. This can be interesting for academic purposes - or if one is just interested in more information about specific features used in local TLS traffic."
script_dir = scripts
tags = TLS, SSL, X509, Certificates, PKI
test_command = cd tests && make
version = main
url = https://github.com/0xxon/zeek-tls-log-alternative
[0xxon/zeek-os-package-tracking]
url = https://github.com/0xxon/zeek-os-package-tracking
version = main
[AmazingPP/zeek-capwap]
build_command = ./configure && cd build && make
depends =
zkg >=2.0
zeek >=4.2.0
script_dir = plugin/scripts
summary = A Zeek CAPWAP packet analyzer
tags = capwap, zeek, packet analyzer
test_command = cd testing && btest -c btest.cfg -D
url = https://github.com/AmazingPP/zeek-capwap
version = v0.1.0
[activecm/bro-mongodb.git]
build_command = (./configure --bro-dist=%(bro_dist)s && make)
description = Bro IDS/ MongoDB connector.
tags = bro plugin, MongoDB, writer, security, conn, logging, rita
version = master
url = https://github.com/activecm/bro-mongodb.git
[activecm/bro-rita.git]
build_command = (./configure --bro-dist=%(bro_dist)s && make)
description = RITA, Bro IDS connector.
tags = bro plugin, MongoDB, writer, security, conn, logging, rita
version = master
url = https://github.com/activecm/bro-rita.git
[activecm/zeek-open-connections]
aliases = zeek-open-connections bro-open-connections
depends = zkg >=2.0.7
description = Find and log open, long-lived connections into a "conn_long" log.
script_dir = scripts
tags = conn
version = v1.1.0
url = https://github.com/activecm/zeek-open-connections
[amarokinc/bad-asn]
credits = Michael Portera @mportatoes, Hudson Carr
description = Adds ASN reputation data of external IP addresses to notice.log if the ASN crosses a predetermined threshold as defined by circl.lu
script_dir = zeek
tags = asn, geoip, conn, remote
version = master
url = https://github.com/amarokinc/bad-asn
[amarokinc/remote_asn_geoip_conn]
credits = Michael Portera @mportatoes
description = Adds ASN and GeoIP data directly to conn.log for the REMOTE connection. The script checks the orig and resp host fields to determine which one is not defined as part of the local IP ranges and subsequently performs a lookup on the MaxMind ASN and GeoIP databases.
script_dir = zeek
tags = asn, geoip, conn, remote
version = master
url = https://github.com/amarokinc/remote_asn_geoip_conn
[amzn/zeek-plugin-bacnet]
build_command = ./configure && make
depends =
zkg >=2.0
zeek >=3.0.0
description = Plugin that enables parsing of the BACnet standard building controls protocol
script_dir = scripts/BACnet
tags = zeek plugin, protocol analyzer, log writer, ics, bacnet
url = https://github.com/amzn/zeek-plugin-bacnet
version = 1.0.0
[amzn/zeek-plugin-enip]
build_command = ./configure && make
depends =
zkg >=2.0
zeek >=3.0.0
description = Plugin that enables parsing of the Ethernet/IP and Common Industrial Protocol standards
script_dir = scripts/ENIP
tags = zeek plugin, protocol analyzer, log writer, ics, enip, cip
url = https://github.com/amzn/zeek-plugin-enip
version = 1.1.0
[amzn/zeek-plugin-profinet]
build_command = ./configure && make
depends =
zkg >=2.0
zeek >=3.0.0
description = Plugin that enables parsing of the Profinet protocol
script_dir = scripts/PROFINET
tags = zeek plugin, protocol analyzer, log writer, ics, profinet
url = https://github.com/amzn/zeek-plugin-profinet
version = 1.1.0
[amzn/zeek-plugin-s7comm]
build_command = ./configure && make
depends =
zkg >=2.0
zeek >=3.0.0
description = Plugin that enables parsing of the S7 protocol
script_dir = scripts/S7comm
tags = zeek plugin, protocol analyzer, log writer, ics, s7
url = https://github.com/amzn/zeek-plugin-s7comm
version = 1.0.0
[amzn/zeek-plugin-tds]
build_command = ./configure && make
depends =
zkg >=2.0
zeek >=3.0.0
description = Plugin that enables parsing of the Tabular Data Stream (TDS) protocol
script_dir = scripts/TDS
tags = zeek plugin, protocol analyzer, log writer, tds
url = https://github.com/amzn/zeek-plugin-tds
version = 1.1.0
[anthonykasza/indicator-rules]
depemds =
bro >= 2.6
description = An extension to the Intel Framework. This package faciliates the creation of rules which Zeek can monitor for.
script_dir = scripts
tags = intel, signature, indicators, pure-script
version = master
url = https://github.com/anthonykasza/indicator-rules
[anthonykasza/common-encodings]
description = A Zeek package which provides common encodings and operations.
script_dir = scripts
tags = rc4, base64, bitshift, encoding, xor
version = 1.0.1
url = https://github.com/anthonykasza/common-encodings/
[apache/metron-bro-plugin-kafka]
build_command = ./configure --bro-dist=%(bro_dist)s --with-librdkafka=%(LIBRDKAFKA_ROOT)s && make
depends =
bro >=2.5.0
bro-pkg >=1.2
description = A Bro log writer plugin that sends logging output to Kafka.
external_depends =
librdkafka ~0.11.5
plugin_dir = build
script_dir = build/scripts/Apache/Kafka
tags = log writer, bro plugin, kafka
test_command = ( cd tests && btest -d )
user_vars =
LIBRDKAFKA_ROOT [/usr/local/lib] "Path to librdkafka installation tree"
version = 0.3
url = https://github.com/apache/metron-bro-plugin-kafka
[bricata/flow_labels]
description = Provides mechanisms for managing and using institutional knowledge about a monitored environment to make informed observations of normal and abnormal network activity.
tags = input, labels
url = https://github.com/bricata/flow_labels
version = master
[brimsec/geoip-conn]
description = Adds additional fields to the conn.log for the data obtained via Zeek's GeoLocation feature (https://docs.zeek.org/en/current/frameworks/geoip.html).
script_dir = zeek
tags = conn, geolocation, logging
version = master
url = https://github.com/brimsec/geoip-conn
[captainGeech42/zeek-bogon]
author = Zander Work (@captainGeech42)
description = Label bogon IPs in conn.log
script_dir = scripts/
tags = bogon, conn
test_command = (cd tests && btest -d)
url = https://github.com/captainGeech42/zeek-bogon
version = v1.0.0
[captainGeech42/zeek-intel-path]
author = Zander Work (@captainGeech42)
description = Extend Intel framework to alert on URL paths
script_dir = scripts/
tags = http, intel, path, url-path, uri
test_command = (cd tests && btest -d)
url = https://github.com/captainGeech42/zeek-intel-path
version = main
[cisagov/icsnpp-bacnet]
build_command = ./configure && make
build_dir = build/ICSNPP_Bacnet.tgz
credits = Stephen Kleinheider <stephen.kleinheider@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = BACnet plugin for parsing and logging of the BACnet (building automation and control) protocol - CISA ICSNPP
script_dir = build/scripts/icsnpp/bacnet
tags = bacnet, BACnet, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-bacnet
version = main
[cisagov/icsnpp-bsap]
build_command = ./configure && make
build_dir = build/ICSNPP_Bsap.tgz
credits = Devin Vollmer <devin.vollmer@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = BSAP over IP plugin for parsing and logging of the BSAP protocol - CISA ICSNPP
script_dir = build/scripts/icsnpp/bsap
tags = bsap, BSAP, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-bsap
version = main
[cisagov/icsnpp-dnp3]
credits = Stephen Kleinheider <stephen.kleinheider@inl.gov>
depends =
zkg >=2.0
zeek >=3.0.0
description = DNP3 script for detailed logging of the DNP3 protocol - CISA ICSNPP
script_dir = scripts
tags = dnp3, DNP3, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek scripting, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-dnp3
version = main
[cisagov/icsnpp-enip]
build_command = ./configure && make
build_dir = build/ICSNPP_Enip.tgz
credits = Stephen Kleinheider <stephen.kleinheider@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = Ethernet/IP and CIP plugin for parsing and logging of the Ethernet/IP and CIP protocols - CISA ICSNPP
script_dir = build/scripts/icsnpp/enip
tags = enip, ENIP, cip, CIP, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-enip
version = main
[cisagov/icsnpp-ethercat]
build_command = ./configure && make
build_dir = build/ICSNPP_Ethercat.tgz
credits = Devin Vollmer <devin.vollmer@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = Ethercat plugin for parsing and logging of the Ethercat protocol - CISA ICSNPP
script_dir = build/scripts/icsnpp/ethercat
tags = ecat, ECAT, ethercat, Ethercat, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, packet analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-ethercat
version = main
[cisagov/icsnpp-genisys]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
credits = Seth Grover <seth.grover@inl.gov>
description = Genisys is a protocol defined by Union Switch & Signal for communicating with
SCADA field devices, commonly used in the railway industry.
It is similar in purpose to Modbus. Genisys was designed for use over serial
connections, but is commonly transported over TCP as well.
The protocol enables one client to communicate with one or more server devices
over the same connection. The servers are identified by a one-octet server address.
"Genisys" is a trademark of Union Switch & Signal.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = Genisys is a protocol defined by Union Switch & Signal for communicating with SCADA field devices, commonly used in the railway industry.
tags = genisys, railway, SCADA, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/cisagov/icsnpp-genisys
version = main
[cisagov/icsnpp-modbus]
credits = Brett Rasmussen <brett.rasmussen@inl.gov> & Stephen Kleinheider <stephen.kleinheider@inl.gov>
depends =
zkg >=2.0
zeek >=3.0.0
description = Modbus script for detailed logging of the Modbus protocol - CISA ICSNPP
script_dir = scripts
tags = modbus, Modbus, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek scripting, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-modbus
version = main
[cisagov/icsnpp-opcua-binary]
build_command = ./configure && make
build_dir = build/ICSNPP_OPCUA_Binary.tgz
credits = Kent Kvarfordt <kent.kvarfordt@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = OPC Unified Architecture Binary plugin for parsing and logging of the OPC UA Binary protocol - CISA ICSNPP
script_dir = build/scripts/icsnpp/opcua-binary
tags = opcua, opcua_binary, opc, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-opcua-binary
version = main
[cisagov/icsnpp-s7comm]
build_command = ./configure && make
build_dir = build/ICSNPP_S7comm.tgz
credits = Stephen Kleinheider <stephen.kleinheider@inl.gov>
depends =
zkg >=2.0
zeek >=4.0.0
description = S7Comm & S7Comm Plus plugin for parsing and logging of the S7Comm, S7Comm Plus and COTP protocols - CISA ICSNPP
script_dir = build/scripts/icsnpp/s7comm
tags = s7comm, s7comm-plus, s7plus, S7comm, S7Comm, S7CommPlus, Siemens, siemens, s7, S7, cotp, COTP, iso_cotp, ISO_COTP, ics, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && btest -c btest.cfg
url = https://github.com/cisagov/icsnpp-s7comm
version = main
[cisagov/icsnpp-synchrophasor]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
credits = Seth Grover <seth.grover@inl.gov>
description = Synchrophasor (as defined in C37.118.2-2011 IEEE Standard for Synchrophasor
Data Transfer for Power Systems) defines a simple and direct method of data
transmission and accretion within a phasor measurement system.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = Synchrophasor Data Transfer for Power Systems is a communication protocol for real-time communication between phasor measurement units (PMU), phasor data concentrators (PDC), and other applications
tags = synchrophasor, power, SCADA, ICS, CISA, INL, ICSNPP, icsnpp, zeek plugin, log writer, protocol analyzer
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/cisagov/icsnpp-synchrophasor
version = main
[corelight/bro-drwatson]
depends =
https://github.com/corelight/bro-hardware *
description = Discover and log information discovered in Microsoft DrWatson messages.
script_dir = scripts
tags = drwatson, http, windows
test_command = ( cd tests && btest -d )
url = https://github.com/corelight/bro-drwatson
version = master
[corelight/bro-hardware]
description = Scripts for cases where hardware device identifiers are discovered.
script_dir = scripts
tags = hardware
version = master
url = https://github.com/corelight/bro-hardware
[corelight/bro-shellshock]
description = Discover successful ShellShock attacks.
script_dir = scripts
tags = shellshock, detect, scripts
test_command = ( cd tests && btest -d )
url = https://github.com/corelight/bro-shellshock
version = master
[corelight/callstranger-detector]
description = Detects CallStranger (CVE) Exploitation Attempts
script_dir = scripts
tags = CallStranger, UPnP
version = master
url = https://github.com/corelight/callstranger-detector
[corelight/conn-burst]
description = Identify bursty connections (large and fast)
script_dir = scripts
tags = conn, burst
url = https://github.com/corelight/conn-burst
version = master
[corelight/CVE-2020-16898]
description = A network detection package for CVE-2020-16898 (Windows TCP/IP Remote Code Execution Vulnerability) AKA BadNeighbor
script_dir = scripts
tags = CVE-2020-16898, BadNeighbor
version = master
url = https://github.com/corelight/CVE-2020-16898
[corelight/CVE-2020-5902-F5BigIP]
description = A network detection package for CVE-2020-5902, a CVE10.0 vulnerability affecting F5 Networks, Inc BIG-IP devices.
script_dir = scripts
tags = BIGIP, F5, firewall, RCE, CVE10.0, CVE10, CorelightResponse
version = master
url = https://github.com/corelight/CVE-2020-5902-F5BigIP
[corelight/CVE-2021-38647]
aliases = omigod
description = A Zeek package which detects CVE-2021-38647 (AKA OMIGOD) exploit attempts
script_dir = scripts
tags = HTTP, OMI, WMI, Windows, CVE, CVE-2021-38647, exploit, RCE, RapidResponse
test_command = cd testing && btest -c btest.cfg
version = v0.1.2
url = https://github.com/corelight/CVE-2021-38647
[corelight/cve-2021-44228]
description = A Zeek package which raises notices for RCE in Log4J (CVE-2021-44228).
script_dir = scripts
summary = A Zeek package which raises notices for RCE in Log4J (CVE-2021-44228).
tags = HTTP, Apache, CVE, CVE-2021-44228, encoding, rapidresponse, Java, logging
version = v0.6.0
url = https://github.com/corelight/cve-2021-44228
[corelight/cve-2022-21907]
depends =
zeek >=3.0.0
description = A package to detect CVE-2022-21907
script_dir = scripts
summary = A package to detect CVE-2022-21907
url = https://github.com/corelight/cve-2022-21907
version = v0.1.2
[corelight/detect-ransomware-filenames]
description = Watch SMB transactions for files whose filename matches patterns known to be used by ransomware
script_dir = scripts
url = https://github.com/corelight/detect-ransomware-filenames
version = master
[corelight/got_zoom]
depends =
bro >=2.5.5
ja3 *
description = Detect Zoom traffic
script_dir = scripts
tags = TLS, SSL, JA3, Video conferencing, Video, Videoconferencing, Remote working, Zoom
version = master
url = https://github.com/corelight/got_zoom
[corelight/http-stalling-detector]
description = Detect HTTP stalling attacks like slowloris.
script_dir = scripts
tags = http, DoS, attack, notice
url = https://github.com/corelight/http-stalling-detector
version = master
[corelight/icannTLD]
description = A Zeek script using Input Framework to get icann_tld, icann_domain, icann_host_subdomain, and is_trusted_domain from a DNS query. The field icann_host_subdomain contains the remaining query nodes after the domain is removed. The is_trusted_domain is populated from a separate Input Framework set.
script_dir = scripts
tags = domain, dns, tld, input
version = v24.0.0
url = https://github.com/corelight/icannTLD
[corelight/json-streaming-logs]
description = JSON streaming logs
script_dir = scripts
tags = logs, json, streaming, stream, filebeat, splunk_forwarder, logstash
url = https://github.com/corelight/json-streaming-logs
version = v3.0.0
[corelight/log-add-http-post-bodies]
description = Add a POST body excerpt into the HTTP log
script_dir = scripts
tags = http log extend
version = master
url = https://github.com/corelight/log-add-http-post-bodies
[corelight/log-add-vlan-everywhere]
description = Add VLAN to all logs.
script_dir = scripts
tags = log extend vlan
url = https://github.com/corelight/log-add-vlan-everywhere
version = v1.0.3
[corelight/my_stats]
description = This package dumps stats for troubleshooting.
script_dir = scripts
tags = stats
url = https://github.com/corelight/my_stats
version = v0.0.3
[corelight/pingback]
description = A Zeek package which detects ICMP ping tunnels created by the Pingback tool
script_dir = scripts
tags = C2, ICMP, RAT, Windows, Malware
version = v0.1.2
url = https://github.com/corelight/pingback
[corelight/top-dns]
depends =
zeek/sethhall/domain-tld *
description = Log the top DNS queries being requested.
script_dir = scripts
tags = dns, sumstats, log, measurement, top
url = https://github.com/corelight/top-dns
version = master
[corelight/zeek-community-id]
build_command = ./configure && cd build && make
depends =
zeek >=3.2.0
description = "Community ID" flow hash support in conn.log
script_dir = scripts/Corelight/CommunityID
tags = zeek plugin, conn, logging, community id, flow hashing, flow id, sha1, corelight
test_command = cd tests && btest -c btest.cfg -d communityid
url = https://github.com/corelight/zeek-community-id
version = 3.2.2
[corelight/zeek-elf]
build_command = ./configure --enable-debug && make
description = This package provides some basic analysis for ELF files.
script_dir = scripts/Zeek/ELF
tags = intel, files, elf
test_command = cd tests && btest
url = https://github.com/corelight/zeek-elf
version = v0.1.3
[corelight/zeek-globload]
build_command = ./configure && cd build && make
description = This plugin adds support for shell-style glob
patterns when loading Zeek scripts. For example, saying
"@load startup.d/*.zeek" will load any Zeek scripts
with a .zeek suffix from the startup.d folder.
summary = Support file globbing in @load directives
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/zeek-globload
version = 1.0.0
[corelight/zeek-jpeg]
build_command = ./configure --enable-debug && make
description = This package provides some basic analysis for JPEG files.
script_dir = scripts/Zeek/JPEG
tags = intel, files, jpeg, jpg
test_command = cd tests && btest
url = https://github.com/corelight/zeek-jpeg
version = v0.1.3
[corelight/zeek-long-connections]
aliases = zeek-long-connections bro-long-connections
depends = zkg >=2.0.7
description = Find and log long-lived connections into a "conn_long" log.
script_dir = scripts
tags = conn
test_command = cd testing && btest -c btest.cfg
version = v1.3.1
url = https://github.com/corelight/zeek-long-connections
[corelight/zeek-macho]
build_command = ./configure --enable-debug --zeek-dist=%(zeek_dist)s && make
description = This package provides some basic analysis for Mach-o files.
script_dir = scripts/Zeek/MACHO
tags = intel, files, mach-o, macho
test_command = cd tests && btest
url = https://github.com/corelight/zeek-macho
version = v0.1.1
[corelight/zeek-notice-telegram]
description = Package that extends the Notice Framework to include
`ACTION_TELEGRAM` for sending messages on notices over Telegram.
script_dir = scripts
summary = Send Notices over Telegram
url = https://github.com/corelight/zeek-notice-telegram
version = master
[corelight/zeek-openvpn]
build_command = ./configure --zeek-dist=%(zeek_dist)s && make
description = A Zeek OpenVPN Protocol Analyzer
script_dir = scripts/zeek/openvpn
test_command = cd tests && btest
url = https://github.com/corelight/zeek-openvpn
version = v0.0.14
[corelight/zeek-quic]
aliases = zeek-quic bro-quic
build_command = ./configure && make
depends =
zeek >=4.0.0
description = Detects the Google QUIC (GQUIC) protocol and adds "gquic"
to conn.log's "service" field.
plugin_dir = build/Corelight_GQUIC.tgz
script_dir = build/scripts/Corelight/GQUIC
tags = plugin, analyzer, gquic, quic
url = https://github.com/corelight/zeek-quic
version = v0.7.0
[corelight/zeek-xor-exe-plugin]
build_command = ( ./configure && make )
description = A plugin to find Windows executables that have been XOR encoded.
plugin_dir = build
tags = plugin, pe, executable, malware
test_command = ( cd tests && btest -d )
url = https://github.com/corelight/zeek-xor-exe-plugin
version = 3.0
[corelight/zeekjs]
build_command = ./configure --with-nodejs=%(nodejs_root_dir)s && cd build && make
depends =
zeek >=4.2.0
description = Experimental JavaScript support for Zeek.
external_depends =
libnode-dev
nodejs-devel
name = ZeekJS
plugin_dir = build
tags = javascript, js, plugin
test_command = cd tests && btest -d -c btest.cfg -g smoke
user_vars =
nodejs_root_dir [] "Root directory of Node.js installation (leave blank for defaults)"
url = https://github.com/corelight/zeekjs
version = v0.5.0
[corelight/zerologon]
corelight_name = Zerologon
description = Detects Zerologon (CVE-2020-1472) attempts and exploits.
script_dir = scripts
summary = Detects Zerologon (CVE-2020-1472) attempts and exploits.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/zerologon
version = master
[corelight/ztest]
credits = Ryan Victory <ryan.victory@corelight.com>
description = A Zeek Unit Testing Framework
script_dir = scripts
tags = library, unit-testing, testing
test_command = make -C tests
url = https://github.com/corelight/ztest
version = master
[corelight/CVE-2021-42292]
depends =
zeek >=3.0.0
description = A package to detect CVE-2021-42292, a Microsoft Excel priviledge exploit.
script_dir = scripts
summary = A package to detect CVE-2021-42292, a Microsoft Excel priviledge exploit.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2021-42292
version = v0.1.0
[corelight/zeek-spicy-facefish]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = A Facefish rootkit detector, based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = A Facefish rootkit detector, based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-facefish
version = v0.1.1
[corelight/zeek-spicy-stun]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = A Zeek STUN protocol analyzer based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = A Zeek STUN protocol analyzer based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-stun
version = v0.2.9
[corelight/zeek-spicy-ipsec]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = An IPSec Zeek protocol analyzer based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = An IPSec Zeek protocol analyzer based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-ipsec
version = v0.2.17
[corelight/zeek-spicy-ospf]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = A Zeek OSPF packet analyzer, based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = A Zeek OSPF packet analyzer, based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-ospf
version = v0.1.4
[corelight/zeek-spicy-openvpn]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = A Zeek OpenVPN protocol analyzer, based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = A Zeek OpenVPN protocol analyzer, based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-openvpn
version = v0.1.6
[corelight/zeek-spicy-wireguard]
build_command = mkdir -p build && cd build && SPICYZ=$(command -v spicyz || echo %(package_base)s/spicy-plugin/build/bin/spicyz) cmake .. && cmake --build .
description = A Wireguard VPN protocol analyzer, based on Spicy.
plugin_dir = build/spicy-modules
script_dir = analyzer
summary = A Wireguard VPN protocol analyzer, based on Spicy.
test_command = cd tests && PATH=$(zkg config plugin_dir)/packages/spicy-plugin/bin:$PATH btest -d -j $(nproc)
url = https://github.com/corelight/zeek-spicy-wireguard
version = v0.1.3
[corelight/CVE-2022-24491]
depends =
zeek >=4.0.0
description = A CVE-2022-24491 detector.
script_dir = scripts
summary = A CVE-2022-24491 detector.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2022-24491
version = v0.1.2
[corelight/CVE-2022-24497]
depends =
zeek >=4.0.0
description = A CVE-2022-24497 detector.
script_dir = scripts
summary = A CVE-2022-24497 detector.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2022-24497
version = v0.1.1
[corelight/cve-2022-26809]
depends =
zeek >=4.0.0
description = CVE-2022-26809 is a DCE/RPC RCE exploit.
This package detects both attempts and successful exploits.
script_dir = scripts
summary = Detects attempts and exploits of CVE-2022-26809
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/cve-2022-26809
version = v0.1.0
[corelight/cve-2022-22954]
depends =
zeek >=4.0.0
description = Detect CVE-2022-22954 attempts and exploits.
Also logs what data was returned to the attacker.
script_dir = scripts
summary = Detect CVE-2022-22954 attempts and exploits.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/cve-2022-22954
version = v0.1.0
[corelight/CVE-2022-23270-PPTP]
depends =
zeek >=4.0.0
description = A package to detect CVE-2022-23270.
script_dir = scripts
summary = A package to detect CVE-2022-23270.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2022-23270-PPTP
version = master
[corelight/CVE-2022-26937]
depends =
zeek >=4.0.0
description = A Zeek package to detect CVE-2022-26937, a Windows NFS vulnerabilty.
script_dir = scripts
summary = A Zeek package to detect CVE-2022-26937, a Windows NFS vulnerabilty.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2022-26937
version = master
[corelight/CVE-2022-3602]
description = CVE-2022-3602 exploit Detection
script_dir = scripts
summary = Detection for CVE-2022-3602 - OpenSSL RCE/DOC v3.0.0 - v3.0.6
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/CVE-2022-3602
version = v0.1.0
[corelight/boa-detector]
depends =
zeek >=4.0.0
description = A vulnerable Boa web server detector.
script_dir = scripts
summary = A vulnerable Boa web server detector.
test_command = cd testing && btest -c btest.cfg
url = https://github.com/corelight/boa-detector
version = v0.1.0
[cybera/zeek-sniffpass]
description = Sniffpass will alert on cleartext passwords discovered in HTTP POST requests
script_dir = scripts
tags = password, logging
version = master
url = https://github.com/cybera/zeek-sniffpass
[dopheide/bro_notice_correlation]
description = Adds support for multi-notice correlation. For more information, see http://blog.samoehlert.com/correlating-bro-notices or the talk from BroCon 2016.
script_dir = scripts
tags = notices, notice, correlation
version = master
url = https://github.com/dopheide/bro_notice_correlation
[dopheide/venom]
description = Attempts to detect an attacker calling to the VENOM Linux Rootkit https://security.web.cern.ch/security/venom.shtml
script_dir = scripts
tags = Venom, venom, VENOM, rootkit
version = master
url = https://github.com/dopheide/venom
[dopheide/bro-quic]
build_command = ( ./configure --bro-dist=%(bro_dist)s && make )
description = Attempt to identify QUIC protocol
plugin_dir = build/Bro_QUIC.tgz
tags = plugin, analyzer, quic
url = https://github.com/dopheide-esnet/bro-quic
version = 0.1
[dopheide/zeek-ntp-monlist]
depends =
zeek >=3.0.0-rc1
description = This script just replaces the old ntp-monlist script to work with Zeek 3.0.0+
script_dir = scripts
tags = ntp, NTP, monlist, ddos
test_command = cd tests && btest -d ntp_tests
version = v1.0.2
url = https://github.com/dopheide-esnet/zeek-ntp-monlist
[dopheide/zeek-known-hosts-with-dns]
description = This script expands the base known-hosts policy to include reverse DNS queries and syncs it across all workers.
script_dir = scripts
tags = known-hosts, known_hosts, dns
test_command = cd tests && btest -d known_tests
version = v1.2.4
url = https://github.com/dopheide-esnet/zeek-known-hosts-with-dns
[dopheide/zeek-ssh-interesting-hostnames-with-known]
depends = zeek/dopheide/zeek-known-hosts-with-dns *
description = This script replaces the default ssh/interesting-hostnames and reduces the number of asyncrhonous when() calls made by Zeek.
script_dir = scripts
tags = dns, ssh, interesting-hostnames
test_command = cd tests && btest -d ssh_tests
version = v1.2.1
url = https://github.com/dopheide-esnet/zeek-ssh-interesting-hostnames-with-known
[dopheide/zeek-notice-config]
depends =
zeek >=3.0.0-rc1
description = This script enables easy customation of how notice actions are handled. It's built to work with eZeekConfigurator, but that isn't required.
script_dir = scripts
tags = notice, configuration, ezeekonfigurator, ezk
test_command = cd tests && btest -d notice_tests
version = master
url = https://github.com/dopheide-esnet/zeek-notice-config
[dopheide/zeek-known-outbound]
depends =
zeek >=3.0.0
description = This script provides the ability to monitor and throw notices for outbound connections to a list of watched countries. It also adds orig and resp country codes to conn.log. It depends on having libmaxmind configured for GeoIP lookups.
script_dir = scripts
tags = notice, known, services, outbound
test_command = cd tests && btest -d outbound-tests
version = master
url = https://github.com/dopheide-esnet/zeek-known-outbound
[dopheide/zeek-jetdirect]
credits = dopheide@es.net, soehlert@es.net, jsdorn1@gmail.com
depends =
zeek >=2.0.0
description = Detect exploit attempt of HP JetDirect printers
script_dir = ./scripts
tags = jetdirect, printer, cve-2017-2741
test_command = cd tests && make
url = https://github.com/dopheide-esnet/zeek-jetdirect
version = 0.4
[dovehawk/dovehawk]
description = MISP+Zeek. Dovehawk is a Zeek Module to import MISP indicators to the Intel Framework and Signature Framework automatically. Reports sightings directly back to MISP as they happen. Supports Zeek Clusters.
script_dir = .
tags = intel, MISP, sightings, signatures, threat intelligence, threat intel, cyber
version = 1.02.002
url = https://github.com/tylabs/dovehawk
[dovehawk/dovehawk_dns]
description = Dovehawk.io Passive DNS Capture Module.
script_dir = .
tags = dns, pdns, log, passive, dovehawk
url = https://github.com/tylabs/dovehawk_dns
version = master
[dovehawk/dovehawk_flow]
description = Dovehawk Anonymized Outbound Flow Tracking
script_dir = ./scripts/
tags = netflow, connections, log, remote, dovehwak
url = https://github.com/tylabs/dovehawk_flow
version = 1.0.0
[dw2102/S7Comm-Analyzer]
build_command = ./configure && make
credits = D. Wullen <d.wullen@gmx.de>
description = Protocol parser for the Siemens S7Comm and S7CommPlus protocol.
Both parser are based on the Iso-Over-TCP protocol. Not all functions are covered
in this analyzer, it may not capture all of the packets.
script_dir = scripts/
tags = s7comm, zeek plugin, s7commplus, siemens, zeek, protocol analyzer
version = master
url = https://github.com/dw2102/S7Comm-Analyzer
[elcabezzonn/http-header-count]
description = a script that counts the client http headers.
script_dir = scripts
tags = http
version = main
url = https://github.com/elcabezzonn/http-header-count
[elcabezzonn/smb2-remote-file-copy]
description = a script that identifies remote file copies over smb2
script_dir = scripts
tags = smb2
version = master
url = https://github.com/elcabezzonn/smb2-remote-file-copy
[emojifier/emojifier]
credits = Jan Grashoefer <jan.grashoefer@gmail.com>,
Matthias Grundmann <matthias.grundmann@kit.edu>,
Florian Jacob <florian.jacob@kit.edu>
description = Set your logs on fire with Emojifier!
script_dir = scripts
tags = emoji, fire, emojifier
test_command = cd testing && btest -d
url = https://github.com/emojifier/emojifier
version = master
[endace/zeek-dag]
aliases = zeek-dag bro-dag
build_command = ( ./configure && make )
depends = bro >=2.6.0
description = Packet source plugin that provides native support for Endace DAG card and EndaceProbe Application Dock packet capture.
plugin_dir = build
tags = packet source, zeek plugin, plugin, broctl plugin, zeekctl plugin, dag, endace
test_command = ( cd tests && btest -d )
url = https://github.com/endace/zeek-dag
version = v0.5
[esnet-security/cve-2020-16898]
credits = Vlad Grigorescu <vlad@es.net>
depends =
zeek >=2.6.0
description = Detects CVE-2020-16898: "Bad Neighbor"
script_dir = ./scripts
tags = cve, cve-2020-16898, badneighbor
test_command = cd tests && make
url = https://github.com/esnet-security/cve-2020-16898
version = v0.1
[esnet-security/logfilter]
credits = Vlad Grigorescu <vlad@es.net>
description = Enables plugins to write fine-grained policy for log filtering, modification, and path customization.
script_dir = ./scripts
tags = logs, filters, ESnet
test_command = cd tests && make
url = https://github.com/esnet-security/logfilter
version = 1.0