forked from arkime/arkime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
2021 lines (1902 loc) · 96.8 KB
/
CHANGELOG
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
NOTICE: Please see https://arkime.com/faq#upgrading-moloch for upgrading info
OpenSearch Versions:
* Arkime >= 3.0.0 supports 1.x or 2.x
Elasticsearch Versions:
* Arkime >= 4.0.0 supports ES >= 7.10.0 or 8.x, not 9.x or later
* Moloch >= 3.0.0 supports ES >= 7.10.0, not 8.x or later
* Moloch >= 2.7.0 supports ES >= 7.4.0, not 8.x or later
* Moloch >= 2.2.0 supports ES >= 6.8.0 or >= 7.1.0, not 8.x or later
* Moloch >= 2.0.0 supports ES >= 6.7.0 or >= 7.1.0, not 8.x or later
* Moloch >= 1.5.0 supports ES >= 5.5.0, 6.x, not 7.x or later
* Moloch >= 1.0.0 supports ES >= 5.5.0, 6.x (not prod tested, only for new installs), not 7.x or later
* Moloch >= 0.50.0 supports ES >= 5.5.0, not 6.x or later
* Moloch >= 0.18.1 supports ES 2.4.x, >= 5.3.1 not 6.x or later
Node Versions:
* Arkime >= 4.2.0 requires NodeJS >= 16.0.0 and < 19
* Moloch >= 3.4.0 requires NodeJS >= 16.0.0 and < 17
* Moloch >= 3.0.0 requires NodeJS 14.x
* Moloch >= 2.4.0 requires NodeJS 12.x
* Moloch >= 2.0.0 requires NodeJS 10.x
* Moloch >= 1.6.0 requires NodeJS 8.x, 8.12 or later
* Moloch >= 1.0.0 requires NodeJS 8.x
* Moloch >= 0.20.0 requires NodeJS 6.x
* Moloch >= 0.18.1 requires NodeJS 4.x
NOTICE: Restart wiseService before capture when upgrading
NOTICE: Cross-cluster Shortcuts require you to not restart all your viewers at once after upgrading
4.2.0 2023/02/xx
- release - node 16.19.0, support node v18
- release - fix arch build issues
- all - OpenSearch/Elasticsearch name cleanup
- all - cleanup nodejs dependencies
- all - refactor how authentication is done, everything now uses passportjs
- all - support oidc authentication method
- capture - support ERSPAN Type I and vlan for Type II
- capture - new kafka plugin for sessions
- capture - use malloc instead of GSlice
- capture - corrupt DNS alt name memory leak fixed
- capture - Added simpleFreeOutputBuffers setting
- cont3xt - raw create link groups
- cont3xt - two clicks to delete link groups or links
- cont3xt - classify domains with multiple dashes correctly
- cont3xt - added ability to copy links between link groups
- cont3xt - support intl phonenumbers
- db.pl - Initial OpenSearch ISM support
- db.pl - Better error text for cert verify failure
- esproxy - fix converting basic auth to base64
- viewer - fix field actions crash
- viewer - can now use expression http.request.FIELD or http.response.FIELD
with headers-http-request, headers-http-response defined fields
- viewer - support viewing ipv6 DLT_RAW (#1293)
- viewer - ESAdmin -> Unflood works on users cluster now also
4.1.0 2023/01/10
- release - glib 2.72.4 cyberchef 9.55.0 flot 4.2.3 d3 7.7
- db.pl - backup/restore wasn't dealing with templates correctly
- db.pl - upgrade failed if there was no moloch_shared user
- db.pl - repair now fixes missing history/ecs templates
- db.pl - fix users-export/users-import
- cont3xt - support missing auth and userTmpl settings
- cont3xt - Hide link group when no links match filter
- cont3xt - Added landing page
- capture - allow wise field dst.ip:port
- capture - add VNI field
- capture - initial tzsp reader support
- capture - y2038 fixes
- capture - Integer ops in rules now support a leading min or max which only
sets the value if less than or greater than current value
- wise - added usersElasticsearchBasicAuth setting and lmdb cache support
- wise - add passivetotal value action if at least key is defined
- viewer - fix es node stats for different node.roles
- viewer/cont3xt - can now search roles
- viewer/cont3xt - don't show change password menu item if web auth is enabled for
user and disableUserPasswordUI is true
4.0.3 2022/11/28
- release - cyberchef 9.54.0
- release - copy systemd files instead of soft linking
- releaes - capture/viewer systemd files now After OpenSearch/Elasticsearch
- capture - on short runs, field definitions weren't getting updated
- capture - s3 writer sets s3Compress to false with s3WriteGzip true
- capture - JA3s value was sometimes incorrect
- cont3xt - fixed digest mode fetching settings from config file
- db.pl - fixed init not working with OpenSearch sometimes
- db.pl - will now count data or data_hot node roles
- viewer - fixed showing more than 10 roles
4.0.2 2022/11/01
- release - cyberchef 9.48.0
- all - better console output sanitization
- capture/viewer - Add TLS Certificate Organisational Unit field parsing (PR #2038)
- capture - use arkime_update_geo.sh in error msg
- capture - log error and exit if fields loading fails
- release - Stop Configure from destroying systemd files
4.0.1 2022/10/18
- addUser.js - remove WARNING adding first user
- addUser.js - --webauthonly now sets header auth flag
- all - better console output sanitization
- capture - offline pcap allows more outstanding packets based on maxPacketsInQueue
- db.pl - Fixed some OpenSearch compatibility
- db.pl - Fixed upgrading to 4.x with no _moloch_shared user
- viewer - Fix cert notbefore/notafter showing bad dates in sessions table
4.0.0 2022/10/11
- BREAKING - Must be 3.3.0+ to upgrade to 4.x
- BREAKING - systemd files auto installed, still need to enable
- BREAKING - Move to roles for some permission checking,
userAdmin role required to edit users
- BREAKING - the version file lives in common directory now
- BREAKING - new defaults maxFileSizeG=12, compressES=true
- BREAKING - pcap compression is turned on by default, disable with simpleCompression=none
- BREAKING - simpleGzipBlockSize renamed simpleCompressionBlockSize
- BREAKING - right-click changed to value-actions in config
- BREAKING - the userId search in history for admin nolonger adds the surrounding wildcards automatically
- BREAKING - views & notifiers are now their own indices
- release - cyberchef 9.46.5, node 16.16.0
- release - systemd files are delivered with /opt/arkime path instead of setting at install time
- release - CICD tests with OpenSearch
- all - Support ES 8 & OpenSearch
- all - check for missing users index or no users on startup
- all - update code/docs to mention OpenSearch
- addUser.js - new --roles option, --admin creates superAdmin user
- capture - New ecsEventDataset setting
- capture - save sessions not saving packets for across restarts
- capture - afpacket rewrite, improve performance & less out of order packets
- capture - fix quic crash
- capture - make creating fields from config/parsers/wise/tagger use ES bulk call
- capture/viewer - new outer fields replace gre fields (PR #1889)
- capture/viewer - initial SLL2 support (issue #2002)
- capture/viewer - zstd pcap compression
- chad - new plugin
- cont3xt - new Cont3xt application, see https://arkime.com/cont3xt
- cont3xt/viewer - share new user UI
- db.pl - fix sync-files/add-missing trying to add non pcap files
- db.pl - init/wipe clean up aliases that became indices
- db.pl - determine data node using roles array (issue #2006)
- db.pl - fix warning: Smartmatch is experimental
- db.pl - ilm didn't work if no sessions2 indices
- common - fix userAuthIps setting
- esproxy - check gzip traffic
- esproxy - improved bulk and url sanitization
- parliament - added --insecure option
- parliament/wise - can be configured to use shared user DB
- suricata - support char 127 in json better
- viewer - fixed auth fallback to digest from header mode
- viewer - field-actions to display configurable menu items on field labels
- viewer - share shortcuts with specific users or roles ("arkimeUser" role = old shortcut sharing)
- viewer - share views with specific users or roles ("arkimeUser" role = old shortcut sharing)
- viewer - share notifiers with specific users or roles (all previous notifiers will be shared with the "arkimeUser" role)
- viewer - share queries with specific users or roles
- viewer - share hunts with roles
- viewer - rework some settings UI, try and make UX similiar when adding things
- viewer - no more _moloch_shared user
- viewer - configure auto-hiding map/graph on large queries using turnOffGraphDays (default = 30 days)
- wise - fix some stats sorting
- wise - fix UI saving of INI formatted config
- wise - can configure field-actions
3.4.2 2022/03/31
- release - node 16.14.2
- viewer - Packets/s, Sessions/s, Dropped/s didn't have correct total/average
- viewer - host = $shortcut should work now
- capture - support longer node names (thanks mcgillowen)
- capture - host.smb.tokens wasn't defined correctly
- wise - alienvault no longer uses key
- tagger - support --insecure option
- tests - support --insecure with tests
3.4.1 2022/03/16
- release - node 16.14.1
- capture - new snmp parser of a few fields
- capture - rules can have numeric ranges
- db.pl - stop using history type name
- esproxy - added queries/_mapping to GET allow list
- viewer - Packets/s, Sessions/s, Dropped/s weren't accurate (thanks mcgillowen)
3.4.0 2022/03/09
- release - node 16.14.0, libpcap 1.10.1
- release - Configure script deals with / in password better
- BREAKING - in header auth mode userAuthIps allows only localhost by default
- wise - fix issues with redis source
- wise - threatstream in sqlite3 mode opens in readonly now
- wise - support -o section.var=value command line option
- wise - improve json parsing to handle non arrays when expecting an array
- wise - didn't always encoding number fields correctly
- db.pl - added a repair command that will fix some common issues
- viewer - reading packets from S3 failed
- viewer - increase speed when searching match fields
- viewer - fixed lastUsed when in digest auth
- viewer/wise - new userAuthIps setting that has which ips auth requests can
come from. header mode - default localhost, other - default all ips
- viewer - record which node is cron node and warn if not found
- viewer - allow floating point numbers for disk watermarks
- capture - switch from deflate to gzip posting to ES, lower min gzip size to 860
- capture - ietf quic improvements
- esproxy - can now create a [tee] section that will duplicate all ES calls,
but ignore results
- tests - Add --elasticsearch option which is actually used correctly
3.3.1 2022/01/26
- viewer - fix displaying large packets or xored packets not always working
- capture - refactor curl code based on recommendations
- capture - only allow 50 packets per ip4 frag
- capture - new modbus parser (thanks mcgillowen)
- tests - reduce race conditions
3.3.0 2022/01/19
- BREAKING - non standard pcap files now use the .arkime extension
- BREAKING - for wise multiES entries, prefix: now defaults to arkime_
- BREAKING - for wise threatstream source you must create md5 index manually
- release - node 14.18.3
- viewer - default to hunt reassembled packets
- viewer - add descriptions to hunts
- viewer - hide graph/map (speeds up large queries)
- viewer - history logs es query/indices
- viewer - open up to 50 sessions at a time button
- viewer - make sure hunt progress bar shows up
- viewer - handle corrupt pcap files better
- viewer - handle hunt errors better
- viewer - scrubbing won't crash on unsupported files
- capture - make sure file/seq es requests have higher priority
- capture - support pcap flies with 0 timestamp
- capture - use .arkime file extension for non standard pcap files
- capture - new _dropBySession rule op
- capture - fix infite recursion - thanks albntomat0_1
- capture - improve udp/tcp header length checking
- capture - improve error messages for field setting issues
- capture - cache when getting pcap data from S3 (thanks pjsg)
- capture - New ecsEventProvider setting
- wise - switch from node-sqlite3 to better-sqlite3 package
- all - support creating gzip files, set simpleGzipBlockSize
- all - support creating pcap files with short packet headers, set simpleShortHeader
3.2.1 2021/12/14
- esproxy - handle sessions2 without prefix
- capture - new parseHTTPHeaderValueMaxLen replaces hard coded 1024
- viewer - some hunt fixes
- viewer - switch from ES bool MUST to FILTER
- viewer - increase elasticsearchScrollTimeout default
- viewer - new AND arrays with ][ syntax vs OR arrays with []
- viewer - fix --insecure which broke in 3.2.0
- viewer - ES Nodes has new uptime stat
- viewer - fix 3.x sending to remote cluster
- viewer - disable periodic queries on multiviewer
- viewer - history can always toggle open and show api
- wise - fixed views that used require: not working
- db.pl - sync-files, add-missing, and other fixes since 3.x
3.2.0 2021/12/07
- release - node 14.18.2
- release - remove daily.sh, setup a cron directly now
- all - refactor some shared code into common directory
- capture - fix memory leak with ip4 frags and packet q overflowing
- capture - standardize on config error process exiting
- capture - ietf quic improvements
- tests - add some auth tests to test suite
- viewer - jquery upgrade
- viewer - help fields display improvements
- viewer - support https urls in wise plugin (issue #1777)
- viewer - fix history links with && not working
- viewer - userAuthCreateTmpl improvements
- viewer - fix cron and database bounding queries
- viewer - fix settings page not loading on pre 3.x config
- viewer - cyberchef didn't always load the packets
3.1.1 2021/10/13
- release - node 14.18.1
- addUser.js - fix not exiting on complete when certs defined
- all - deal with usersElasticsearch being an array better
- capture - increase max of pcapWriteSize, tpacketv3NumThreads
- capture - decrease max of maxESConns, maxESRequests
- viewer - fix vlan display (broke in 3.0.0)
- viewer - Issue Query on Page Load "No" option changed to issue query if there is a search expression
- viewer - fix position of value actions dropdown in spigraph table
- wise - fix error msg about redundant parameters
- wise - new mergeQuery setting for splunk
3.1.0 2021/10/04
- all - support float field type
- all - support Q-in-Q ether type
- all - --insecure has consistent messaging now
- all - Finally added elasticsearchBasicAuth/usersElasticsearchBasicAuth can be
user:pass or base64(user:pass)
- capture - s3 writer uses IMDSv2 (thanks fj604)
- capture - dscp src/dst (issue #1626)
- capture - refactor how udp tunnels are added, just normal parsers now
- capture - initial GENEVE, VXLAN-GPE support
- capture - initial IETF QUIC support
- capture - fix interfaceOps crash (issue #1763)
- release - much improved arkime_config_interfaces.sh (thanks arkaØm)
- release - node 14.18.0
- viewer - stop upload menu showing up when empty command
- viewer - improve first load time by spliting bundle and lazy load items
- viewer - combine multiple calls from UI into one call
- viewer - added pcap expire debugging
- viewer - uploadCommand can now use INSECURE-ORIGINALNAME to access uploaded filename
- viewer - shortcut display improvements
- viewer - shortcuts can be in arrays
- viewer - shortcut wildcard support (issue #1554)
- viewer - didn't decrypt pcap for large packets correctly (issue #1756)
- viewer - support wiseURL for wise.js viewer plugin (issue #1758)
- viewer - display "0" values
- viewer - Test alert includes who requested it
- viewer - fixed regex and floats not always working in array expressions
- viewer - fix always putting cursor at end of input when selecting typeahead result
- viewer - add typeahead results in search expression for values in a list
- multies - support elasticsearchApiKey
- multies - support scrolling and large queries/pagination
- wise - handle empty config file on startup
- wise - support ./ with value-actions
- wise - support usersElasticsearchAPIKey
- esproxy - elasticsearchAPIKey and elasticsearchBasicAuth support
3.0.0 2021/08/18
- BREAKING - Elasticsearch - ES 7.10.0 or later required
- BREAKING - if not using a ES prefix, the prefix arkime_ will now be used
- BREAKING - multies - multiESNodes requires a name: and prefix: attribute per entry
- BREAKING - wise - custom sources will need to be modified
- BREAKING - wise - redis urls have a new standard format
- BREAKING - wise - for json data keyColumn has been renamed keyPath
- BREAKING - wise - now lower case lotermfield and upper case uptermfield fields
- BREAKING - capture - override-ips will no longer have leading 0s for ASN
- release - curl 7.78.0, node 14.17.5, glib 2.68.3, yara 4.0.2, lua 5.3.6, maxmind 1.4.3, nghttp2 1.44.0
- capture - search for GeoIP files first in /var/lib/GeoIP
- capture - fixed possible ABR with time parsing
- capture - fixed memory leak with dns bad hostname parsing
- capture - new classifier for nfs and several rpc protocols
- capture - handle larger oracle connect msgs better
- capture - parse small http basic auth headers correctly
- capture - rule matches can now be logged
- capture - new localPcapIndex setting to enable pcap index on capture node instead of ES
- capture - write long open tcp sessions every tcpSaveTimeout even if no syn
- capture - fixed possible memory corruption with --flush option
- capture - check max packet length in more places
- capture - parse proxy-authorization header (PR #1651)
- db.pl - new urlinfile://filepath where elasticsearch url is the first line of filepath file
- db.pl - fix history mapping issue
- viewer - add POST version session query APIs to support long expressions
old GET versions still work
- viewer - reorganize and standardize APIs
- viewer - put npm scripts and common npm packages at top level
- viewer - allow viewing of large encrypted pcap files (issue #1555)
- viewer - can find nodes for pcap based on --host
- viewer - in multiviewer mode can now select which clusters to search (PR #1325)
- viewer - fix addTag/removeTag with multiviewer (PR #1556)
- viewer - can modify some sessions2 template from esadmin tab
- viewer - can modify entire shortcuts now
- viewer - spigraph visualization improvements
- viewer - Can set watermark settings again
- viewer - Start moloch -> arkime cookie changes
- viewer - dark theme improvements and new themes
- viewer - can now toggle on/off capture start times
- viewer - improve toolbar for packet display
- viewer - standardize on . ipv6 and : ipv4 port separator
- viewer - send shallower queries to ES when possible
- viewer - fix cron queries when using autoGenerateId
- viewer - improve session settings across sessions
- viewer - fix multiple requests when changing views and start/stop times
- viewer - fix setting user permissions not applying until page reload
- viewer - improve column resizing
- viewer - add button to open sessions cron query tagged
- viewer - rename cron queries to periodic queries, fix bugs, and add data (created time, creator userId, last run time, enabled/disabled time)
- viewer - add create periodic query to action menu dropdown
- viewer - notifier links to results
- viewer - notifier displays more data (creator userId, created time, last updated time)
- viewer - cancel hunts & remove hunt name and id from sessions
- viewer - shortcuts sync across all clusters if usersElasticsearch and cronQueries is set
- viewer - monitor cert and key files and reload them if they change
- viewer - display http request method in history page
- viewer - add bad status codes for failing to fetch pcap
- viewer - fix uncompress packets by requesting all packets
- wise - new config UI, enable with --webconfig
- wise - more moloch->arkime changes
- wise - for json data can now set arrayPath for start of where to parse
- wise - new nlasticsearchfile type
- wise - threatstream results now cached
- wise - support memcached for cache
- wise - new urlinfile://filepath where config is the first line of filepath file
- wise - help page
- wise - valueactions can be stored in flat file, redis or elasticsearch
- all - renamed rightclicks to valueactions
- all - many typos fixed
- all - support Elasticsearch API Keys (elasticsearchAPIKey setting)
- esproxy - first version, see https://arkime.com/esproxy
2.7.1 2020/12/01
- release - glib 2.66.2, curl 7.73.0, nghttp2 1.42.0
- wise - fix UI queries hanging
- viewer - fix anonymous user settings not saving
- viewer - fix lastUsed time not always saving to ES
- capture - new packet dedup feature https://arkime.com/settings#packet-deduplication-settings
- capture - close pfring on exit (issue #1538)
- capture - fix http2 parsing crash
- db - Moloch to Arkime text fixes
2.7.0 2020/11/18
- NOTICE - Requires ES 7.4 or newer
- NOTICE - Moloch to Arkime rebranding in UI, everything else still Moloch
- all - ES 7 updates, fix most depreciated warnings (mappings/templates still remain)
- viewer - fix mpls decoding
- viewer - new themes and logo selection
- capture - fix http CONNECT response parsing
- capture - New pcap-over-ip reader support
- db - can import gz files directly now
- db - fix issues with version importing
2.4.2 2020/11/10
- NOTICE - db.pl upgrade is required
- NOTICE - this is the last version to support ES 6
- release - node 12.19.0
- viewer - support utf8 chars in content-disposition
- viewer - add capture process restart to timeline graphs
- viewer - add "bookmarks"
apply a view's expression to the search input without issuing a query
- viewer - fix anonymous users settings not being saved
- viewer - share hunts between users
- viewer - move all common client bundling, scripts, and npm modules to top level
- viewer - display business hours on sessions timeline graph
- viewer - fix multi mpls header decoding
- viewer - fix viewer crashing when pcap file not available
- viewer - new getSessionBySearch setting
- viewer - decode vxlan packets better
- viewer - add help icon
- viewer - added startTime and runningTime capture stats
- capture - QUIC version 5x detection
- capture - smtp decoding handles clients that break utf8 section incorrectly
- capture - fix a json parsing fail would cause next json parse to fail even if good
- capture - support 0x6558 Ether Bridging
- wise - threatstream improvements when using the sqlite db
- db - fix rm-node to delete over 10k items, and bad count display
- tests - use our oui/rir files
2.4.1 2020/09/28
- NOTICE - db.pl upgrade is required
- NOTICE - the elasticsearch and usersElasticsearch variables must start with http:// or https://
- release - node 12.18.4
- viewer - fixed export pcap from actions menu not working
- viewer - capture stats/graph now uses regex instead of wildcard
- viewer - support -reindex indices
- viewer - log more info when can't open a file
- viewer - lastpass boxes removed
- viewer - can now edit ILM values from ES Admin tab if ./db.pl ilm has been used previously
- viewer - handle hunts with bad regex better
- viewer - change capture stats default length to 200
- viewer - fix password change with aes256Encryption turned on
- viewer - handle hunts when nodes are down better
- wise - UI improvements
- wise - theatstream mode sqlite3 no longer copies the db, use sqlite3-copy for old behaviour
- parliament - show bits instead of bytes
- db - new reindex command
- capture - http2 header fields were not always indexed correctly
- capture - fix g_hash_table_contains warning
- capture - rules can use special ip values ipv4 and ipv6 now
- moloch_update_geo.sh - fix possible security issue
2.4.0 2020/08/25
- NOTE - RHEL/Centos 6 is no longer supported, Node 12 required
- NOTE - New encoding of packetPos, set gapPacketPos=false for old encoding
- NOTE - 2.4.x will be the last versions to support ES 6
- release - node 12.18.2, glib 2.64.5, curl 7.72.0
- release - Ubuntu 20 support
- viewer - aes256Encryption now defaults to true
- viewer - added a clear cache button to ES Admin tab
- viewer - quote expressions with [ or ] in them
- viewer - add button to only show data nodes on ES Nodes tab
- viewer - files tab can now show the packet pos encoding
- viewer - ES Indices tab can now show the avg doc size per index
- viewer - ES Nodes tab can now show shards and segments per node
- capture - http2 decoding for PRI * h2 sessions
- capture - set http2 protocol when alpn is h2
- capture - upgrade h2c http2 decoding
- capture - no longer use internal libpcap function
- capture - simple writer supports maxFileTimeM (PR #1506)
- capture - new packetPos encoding saves 10%-20% overall ES space
- capture - remove old disk writer methods, use simple or simple-nodirect now
- wise - simple UI
- wise - support json file format config files
2.3.2 2020/06/29
- NOTE - 2.3.x will be the last version to support RHEL/Centos 6
- release - node 10.21.0
- capture - minor tcp dns parsing performance improvement
- capture - refactor some code to be more type safe
- capture - deal with bad utf8/puny in dns and altnames
- viewer - warn at starting about missing ./vueapp/dist/index.html
- viewer - can now use db:<dbFieldName> in expressions (PR #1463)
- viewer - if esAdminUsers isn't set, ES Admin tab now shows up for admins
- viewer - ES Nodes can display molochzone attribute now
- viewer - fixed some Users tab issues
- viewer - fix percentage sorting on ES Recovery tab
- viewer - "right click" actions can how show text in menu with fetch actionType
- viewer - "Reverse DNS" menu option on ips
2.3.1 2020/05/27
- all - Lots of changes to support node 12 in the future (thanks rnbwdsh)
- viewer - fix bug where the next query after an empty query might hang the UI
- viewer - use the same eslint as the UI & parliament, lots of lines changed
- viewer - can now modify or delete a view from the popup
- viewer - fixed so non admins can cancel their searches again
- viewer - fixed columns not always loading with views
- viewer - when user creates a view it will auto switch
- viewer - does basic ip validation in queries
- viewer - fixed users tab header being hidden
- capture - fixed out of bounds read in smtp parsing
- capture - Lowered the default number of ES retries to 2, added new
esMaxRetries setting
- wise - upgraded sqlite version and changed from hashtable to Map (thanks rnbwdsh)
- db.pl - The info command will now display estimate for how many days can be stored
2.3.0 2020/05/06
- release - CyberChef 9.16.2, node 10.20.1, daq 2.0.7
- viewer - set content-type for cyberchef files
- viewer - add support for caTrustFile to addUser and multies
- viewer - can now select to show any integer field in graphs, set on the settings page
- viewer - graph/header can now be pinned to not scroll off page
- viewer - most navbars can be collapsed and hidden
- viewer - mouse over in graphs now show total values too
- viewer - fixed left/right keys not working in search bar after visiting stats page
- viewer - support cancel for multies
- viewer - cleaned up some of the Help docs
- capture - new parsers arp, bgp, igmp, isis, lldp, ospf, pim,
- capture - protocol parsing code has been refactored, can now write parsers
of ethernet and other ip protocols
- capture - new disableParsers, default of arp.so
- capture - new unkEthernet, unkIpProtocol protocols
- capture - support QUIC version 46
- capture - new esBulkQuery setting to override the /bulk call
- capture - added some more lua examples (thanks Antipokemon)
- wise - threatstream fixes to be nicer to the sql database
- all - switch most ES apis to typeless format
2.2.3 2020/03/09
- viewer - Experimental treemap view in spigraph
- viewer - Hunts now retry talking to failed remote nodes
- viewer - Completed Hunts have a repeat button
- viewer - Fix some Hunt stat and display issues
- viewer - Fixed Hunts/Tags working with ILM
- viewer - Fixed notifier issues and issue #1365
- viewer - Increase navbar contrast
- viewer - Spiview should be faster loading data
- viewer - Debug now prints out config vars like capture
- release - Fix lua.so not being included with builds
- capture - Fix "-r -" not working
- parliament - Ignored issues should remain unless deleted
- db - Can set sessions refresh interval
2.2.2 2020/02/18
- release - node 10.19.0
- capture - fix SYN retrans handling
- capture - New tcphealthcheck plugin (thanks fj604)
- capture - support communityId field in rules/wise
- capture - fixed drop stats for long running systems
- viewer - Fix decode crash (thanks mammo0)
- viewer - experimental pie chart in spigraph
- viewer - experimental table view in spigraph
- viewer - fix viewer crash when hunting fake sessions (issue #1374)
- viewer - fix capture stats sort
- viewer - new accessLogFormat, accessLogSuppressPaths settings to
better control logging (issue #1375)
- viewer - do a better job decoding http 100 continue msgs
- decryptPcap.js - can now decrypt Moloch encrypted pcap files to stdout
- s3 - Fixes the problem where the s3 token expires during a capture (issue #1370)
- s3 - more logging on errors
- s3 - new s3Host setting (thank jc2k)
- all - debug can be set in config file, used if no command line debug args
2.2.1 2020/01/21
- capture - fix --skip not working with ES 7.x
- capture - update TLS ciphers
- capture - increase offlineDispatchAfter default to 2500
- capture - cert decode publicAlgorithm and curve
- db - optimize-admin doesn't wait for other optimizations to finish
- lua - save/pre_save callbacks, can now get most fields
- viewer - fix viewer notifiers (issue #1361)
2.2.0 2020/01/13
- NOTE - Elasticsearch 6.7.x is no longer supported
- NOTE - MaxMind now requires an account, set up your geoipupdate script
https://molo.ch/faq#maxmind
- release - node 10.18.1, yara 3.11.0, curl 7.68.0
- release - Configure now installs elasticsearch 7.5.1
- viewer - New aes256Encryption option to upgrade encryption, all
viewers must be on 2.2.0 or later before upgrading
- viewer - shrink operation deletes old index now
- viewer - Querying was sometimes limited to 20000 items (or less)
- viewer - Sending sessions between clusters didn't allow pcap to be viewed
on receiving side
- viewer - Intersection export allows editing of fields
- viewer - Panning graph left/right allows selection of how much
- viewer - Refresh interval on spigraph page increments time (if it's a date range)
- capture - geoLite2ASN and geoLite2Country are now semicolon separated
lists. The first one that exists will be used or warning
printed. To disable warning set to blank.
- capture - disable the 100-Continue feature of curl to reduce bulk errors
- capture - smtp parse now maps a few encodings to standards glib understands
- s3 - support maxFileTimeM
- db - support creating ILM policies and assigning them for sessions2 and history
- db - new optimize-admin that only optimizes admin indices
- parliament - Click on ES health goes to ES Nodes tab
2.1.2 2019/12/16
- capture - no longer check in configure scripts, use autoreconf (thanks martinpaljak)
- capture - new http header raw callback for plugins (thanks pjsg)
- lua - Improvements and new sample script (thanks pjsg)
- viewer - more cyberchef fixes
- viewer - increased timeout on indexing
- viewer - show menu/protocol column on sessions page even if there are no
visible columns (issue #1337)
- parliament - make sure good config before writing (issue #1181)
2.1.1 2019/12/09
- release - cyberchef 9.11.7
- wise - fix view duplication when reload tagger file (#1315)
- capture - string fields created with wise/custom-fields are now assumed utf8
- capture - term signal handled better
- s3 - handle longer tokens and path vs host access
- viewer - support -o option to override config file like capture has
- viewer - new "ES Admin" tab, enable with esAdminUsers= in config.ini
- viewer - Hopefully fix cyberchef integration on all browsers
- viewer - better shrink index support for viewing pcap
- viewer - anonymous should work better for more features
- viewer - work around ES slow _count API in 7.x
- viewer - hunts support views better
- db - new warmkind option for specifying what units the warm number is in
- db - fix versionNumber printing
2.1.0 2019/11/19
- NOTE: All viewers must be 2.1 or later for them to communicate. If not
upgrading at once set s2sSignedAuth=false in default section of config.ini
- release - node 10.16.3, curl 7.66.0, glib 2.59.0, libpcap 1.9.1
- release - remove ubuntu 14 builds
- release - initial centos8 build
- db - new shrink command
- db - new --gz option to compress backups
- capture - support named pipes better (issue #1169)
- capture - New email.smtpHello field
- capture - fields created with wise/custom-fields are now set across
linked sessions by default now
- capture - deal with extra long config values in more places
- capture - snf improvements
- viewer - default max aggregation size is 10000 to work with ES 7.x OOTB,
new maxAggSize setting
- viewer - added right-click replacer for %DBFIELD% (thanks tlacuache)
- viewer - display JA3s and hassh
- viewer - support file expression in more places (issue #1172)
- viewer - fix files date display (issue #1164)
- viewer - csp header support
- viewer - Fix some XSS/rXSS by setting correct content type
- viewer - Improve permission checking
- viewer - Use RE2 for regex
- viewer - shortcuts can be locked from changes
- wise - switch to ioredis implementation so clusters/sentinel works
- s3 - many fixes (thanks pjsg)
- s3 - support compressing pcap when s3WriteGzip is set to true (thanks pjsg)
- s3 - can fetch data from metadata service (thanks pjsg)
2.0.1 2019/09/09
- release - cyberchef 9.4.0
- capture - label TLS 1.3 sessions correctly (issue #1137)
- capture - New simpleMaxQ setting to control max disk Q
- capture - http CONNECT method will now classify payload (issue #1153)
- capture - Initial dtls support
- viewer - cancel current ES query on new query
- viewer - fix connections page timezone
- viewer - fix not auto quoting all expressions (issue #1146)
- viewer - fix security warnings
2.0.0 2019/08/19
- NOTICE: This versions requires ES 6.7.x (6.8.2+/7.3+ recommended) or later
- NOTICE: db.pl upgrade is required, see https://molo.ch/faq#how_do_i_upgrade_to_moloch_2
- release - cyberchef 8.30.0, node 10.16.2, yara 3.10.0
- release - include sample headers parsing and turn them on by default
- release - easybutton supports osx
- all - Fix some elasticsearch deprecation warnings
- all - elasticsearch 7 support
- db - backup command now saves meta data so restore can do a rollback (thanks codesniffer)
- db - improve optimize to deal with connection closed better
- parliament - Can configure multiple of each type of notifier
- viewer - Can display pcap retention in Capture Stats tab
- viewer - Added uploadFileSizeLimit
- viewer - Can interact with users in multiES if usersElasticsearch is set
- viewer - Can just delete SPI
- viewer - Added shortcuts feature
- viewer - add bytes as a graphing choice
- viewer - support ip == ipv4 and ip == ipv6 expressions
- viewer - pivot dropdown option in spiview (issue #1135)
- viewer - optional millisecond display
- viewer - Support view parameter for unique/multiunique
- viewer - Support ES client auth and insecure better (thanks Scott)
- viewer - Lots of stats summing, avg, sorting fixes
- capture - Initial ipv6 gtp support
- capture - no longer send packet lengths to ES by default (enablePacketLen)
- capture - add truncated-pcap tag to sessions where all pcap isn't written
- capture - fixed ja3s mishandling of 10/11 extension types (thanks Norwegian Healthcare CERT)
- capture - fixed ja3 mishandling of 11 extension types (thanks Norwegian Healthcare CERT)
- capture - Added startsWith,contains,endsWith rule expression modifier
- capture - honor the caTrustFile directive (thanks Matt)
- capture - fix data bytes calculations for icmp/udp (thanks Brian)
- capture - initial vxlan support
- capture - Myricom/AFPacket improvements (thanks Scott)
- capture - updates to classifiers: telnet, mpls
- suricata - support timezones and slashes in signatures better
- suricata - support huge alert lines
- wise - support arrays for json elements
1.8.0 2019/04/03
- NOTICE: This will be the last version to support ES 5
- NOTICE: db.pl upgrade is required
- all - support tokens for host.*/http.uri/http.useragent field
- viewer - should output csv with commas in fields correctly
- viewer - new Show Packets view in session detail
- viewer - map show xff countries
- capture - libfuzzer fixes
- capture - fix core on exit if a pcapDir doesn't exist (issue #1030)
- viewer - new elasticsearchTimeout var that is used with ES queries
- viewer - can now limit query time frame per user
- viewer - node stats now paginates correctly
- viewer - support hsts (issue #853)
- viewer - support simple range queries field == min-max (no spaces)
- viewer - Users page refactor
1.7.1 2019/02/14
- NOTICE: db.pl upgrade is required
- viewer - upgrade to d3 v5 for connections page
- viewer - typeahead history for spigraph/connections
- viewer - stats tasks page has a num item selector now
- viewer - welcome message for new users
- viewer - save the last time a user used moloch
- viewer - two --debug will display why proxying traffic
- viewer - connections now uses ipv6.port and ipv4:port
- viewer - fix date/time picker timezone and input bugs
- wise - support json paths
- wise - improve alienvault loading
- capture - more tcpflags fields can be matched with rules
- capture - print more stats at exit with --debug
- capture - fix small bpf memory leak
- capture - rules can support most .cnt fields
- capture - fix OBR if cert has no serial
- capture - libfuzzer support and initial fixes
- parliament - add no alert cluster type
- parliament - remove selected acknowledged issues
- parliament - add help page
1.7.0 2019/01/17
- NOTICE: db.pl upgrade is required
- release - node 8.15.0, cyberchef
- capture - new cert remainingDays field
- capture - new tcp initRTT field
- viewer - cron query notifications (issue #489)
- viewer - can't use es scroll api with "from" (issue #981)
- viewer - Export CSV uses the columns shown
- viewer - field history for search expression (issue #595)
- viewer - fix date/time picker not using user set timezone (issue #977)
- viewer - don’t display undefined or empty field values
- viewer - fix timezone parsing in session detail date field values
- viewer - show error if using an outdated browser (issue #980)
- viewer - export results intersection
- viewer - add clickable labels to the info column
- viewer - reset the width of the session table columns when switching back to the default
- parliament - search and page results on the issues page (issues #982 and #983)
- parliament - add a length of time threshold for “low packets” issues (issue #968)
- capture - Fixed corrupt file sequence numbers being used when
when ES is under heavy load
- capture - Fix importing more then 256 files at once not working correctly (issue #984)
- all - communityId support for tcp/udp (issue #966)
- capture - In live capture clean up sessions even if no packets are being received
- db - improve expire efficiency
- capture - fix elasticsearch classifier
- capture - for offline pcap honor umask when --copy is used (issue #976)
- viewer - Fix some rXSS, thanks Esben Sparre Andreasen of Semmle Security Research Team
1.6.2 2018/12/07
- NOTICE: db.pl upgrade is required
- suricata - fix crash when signature name > 128 characters long
- suricata - fix severity parsing (again)
- capture - fix possible crash when exporting invalid utf8
- db - support new --shardsPerNode option
- viewer - don't issue search when closing the date/time pickers
- viewer - download packets src/dst bytes img
- viewer - option to show timezone with every timestamp
- viewer - added new user permissions (hideStats, hideFiles, hidePcap, and disablePcapDownload)
- parliament - add option to provide link to dashboard in alert notifications
- viewer - configure connection node/link popup data
- release - build snf plugin with screwdriver
- capture - fix tls parser infinite loop
- viewer - can customize fields in the info column
- viewer - new es recovery tab
- viewer - stats page shows when data is being loaded from server
1.6.1 2018/11/06
- NOTICE: db.pl upgrade is required
- capture - ja3s support (issue #949)
- capture - hassh support (issue #950)
- capture - simpleKEKId can be a template
- all - Certificate org names can be an array now
- wise - reverse dns supports servers setting
- all - new written/unwritten stats to see how much Moloch has written or
not written to disk
- all - don't index packet positions or packet lengths in ES
1.6.0 2018/10/29
- NOTICE: db.pl upgrade is required
- release - glib 2.56.2, yara 3.8.1, curl 7.61.1, lua 3.3.5, node 8.12.0
- db - expire checks min lastPacket in each session2 like curator, not just
based on name
- wise - support any field for ES WISE source
- viewer - packet search (hunt)
- viewer - admins can see forced expression for users in history
- viewer - option to add sessions table column configuration to a view
- viewer - files and stats tables can be customized
- suricata - parse severity
- capture - new _dontCheckYara rule ops
- parliament - add --debug option
- parliament - add --dasboardOnly flag
- capture - set vlan field for afpacket
- capture - new setting parseHTTPRequestHeaderAll, which will parse ALL request
headers not already parsed into 1 ES field (pr #914)
- capture - new setting parseHTTPResponseHeaderAll, which will parse ALL response
headers not already parsed into 1 ES field (pr #914)
- capture - new setting parseSMTPHeaderAll, which will parse ALL email headers
not already parsed into 1 ES field (pr #914)
- capture - new setting parseDNSRecordAll, which will parse a full DNS record
into multiple new ES fields (pr #914)
- viewer - show shortcuts on shift
- capture - initial gtp tunnel support (issue #926)
- wise - new wiseLogEvery to control how often plugin logs (0 disables)
- capture - experimental autoGenerateId config to use ES auto generated ids
- viewer - Ability to download files based on hash (pr #927)
- viewer - Can resize/save columns (issue #909)
- multiviewer - Can save user settings and such (pr #935)
- viewer - Can share views with all other users
- db.pl - New backup/restore commands, saves everything but sessions
1.5.3 2018/09/10
- release - libpcap 1.9.0
- all - new hourly[2348]/hourly12 rotateIndex
- all - deal with talking to multiple wise servers better
- all - --insecure option
- all - use package-lock.json so all builds use the same packages
- viewer - fix some spiview display issues (dns ip, email headers)
- viewer - fix upload command tags (issue #888)
- viewer - aes-256-ctr: fix issues decoding larger files
- viewer - set rejectUnauthorized for ES connections (issue #894)
- viewer - fix some payloads not displaying for css reasons
- viewer - added zoom buttons to connections
- viewer - keyboard shortcuts
- capture - require gnu99 supporting compiler
- capture - if single tcp data packet left at save time, try and classify it (issue #880)
- capture - for live captures prevent out of order stats records
- capture - aes-256-ctr: iv is 12B, limit maxFileSizeG to 64G, dek is more random
- capture - Added corrupt setting to saveUnknownPackets
- capture - new -o option to override config file from command line
- capture - trim leading/trailing whitespace from config options
- capture - new --nostats option to stop stats from being sent to ES
- capture - fix http socket leak on errors
- capture - new -F option to specify files that contain a list of pcap files to process
- capture - new --reprocess option that won't create a new file entry (but
will duplicate SPI data)
- capture - add IPPORT_DROPPED count to stats log
- capture - fix some possible bad memory reads in oracle/radius/http parsers
- capture - fix some possible integer overflow issues
- capture - fix tcp sequence number issues
- parliament - uses Vue now
- parliament - support email alerts
- parliament - new edit slider to show edit buttons
- parliament - many improvements how issues work
1.5.2 2018/07/26
- capture - new custom-fields section
- viewer - new custom-views section
- capture - fix for inplace pcap ingestion not displaying pcap in viewer, introduced in 1.5.0
- capture - support QUIC version >= 40
- release - Build Ubuntu 18.04 version
- wise - fixed sources that didn't register at startup
1.5.1 2018/07/23
- capture - fix ipv6 sctp hang
- viewer - added back many tooltips
- viewer - fix crash when node doesn't exist
- viewer - fixed some fields not showing up
- snf - new config snfFlags
- viewer - fix sorting by a column that isn't in all indices
- capture - memory leak fix
- suricata - keep alerts for suricataExpireMinutes setting
1.5.0 2018/07/16
- BREAKING: wiseCache redis name changes
- viewer - sessions, spiview, spigraph, connections, help, users, history pages implemented
in Vue instead of AngularJS
- viewer - split stats capture graphs/stats into 2 tabs
- viewer - stats now has sort option
- capture - new maxTcpOutOfOrderPackets setting, default 256
- capture - drophash supports v6 and saving
- wise - support talking to wise over https, use wiseURL
- capture - basic mqtt parsing
- capture - rules reload without restarting
- viewer/db - new hide-node/unhide-node commands to hide commands in capture stats
- viewer - New queryAllIndices
- multiviewer - no longer need to have the same rotateIndex everywhere
- capture - initial saveUnknownPackets support
- capture - new interfaceOps for ops per interface
- capture - new filenameOps for ops per filename (issue #857)
- s3 - use 1.0 field names
- viewer - fix a case when decoding failed
- all - ESP now has first packet capture if trackESP is set
- capture - magicMode remove molochmagic and added both mode
- wise - initial splunk source
- capture - new suricata plugin
- wise - [right-click] with no colon now loads directly from wise.ini
- capture - decode dns punycode into dns.host, dns.puny has original
- capture - yaraEveryPacket (default true) when false only does first packets
- capture - yaraFastMode (default true) when false turns off fast mode
- viewer - switch to javascript png implementation
- all - added some GRE erspan support
- viewer - support gt/lt queries for ip
- capture/wise - can now configure what fields map to what wise queries and
send almost any field (issue #840)
- all - added used space stat
- all - changed free space stat to use 1000 based units
- viewer - removed AngularJS, all pages implemented in Vue
- capture - hsrp classify
1.1.1 2018/05/31
- all - fix http.statuscode
- capture - fix _dropByDst/_dropBySrc crash
- capture - tcpflag are always counted (issue #849)
- viewer - fix 10k sessions.json failure
1.1.0 2018/04/30
- all - basic sctp capturing, no decoding (issue #828)
- all - initial unencrypted 802.11 Data Frame support (issue #834)
- db - new segments option to expire and optimize
- release - curl, node, cyberchef
- viewer - http.uri and host* allows pasting a URL and doing the right thing (pull #831)
- capture - New logHTTPConnections setting (pull #749)
- capture - new wiseExcludeDomains setting, used before sending to wiseService (issue #340)
defaults to ".in-addr.arpa;.ip6.arpa"
- wise - full ipv6 support
- capture - basic sccp classify
- all - initial frame relay support (issue #838)
- all - initial 4 over 6 and 6 over 4 support
- viewer - support fields=id for sessions.csv (issue #839)
- reindex2 - added --pause option
- viewer - more stats page fixes
1.0.0 2018/04/05
- db - always update stats/dstats indices for now
- parliament - fix es drop error msg
- tests - make server everything has started before running tests
1.0.0-rc2 2018/03/29
- viewer - Change default spiDataMaxIndices to 4 everywhere
- viewer - work around for ES 6 issue https://github.com/elastic/elasticsearch/issues/27740
- capture - fixed netflow plugin
- tests - initial parliament tests
1.0.0-rc1 2018/03/20
- viewer - minor stats page fixes
- release - new top level package.json/node_modules to make package smaller
1.0.0-beta3 2018/03/15
- viewer - stats page implemented in Vue instead of Angular
- capture - some code clean and better thread safe counters
- viewer - convert field names in saved column sets from pre 1.0
1.0.0-beta2 2018/03/08
- capture - decode some dhcp
- capture - tag a tls session with cert:self-signed
- capture - reload geo, rir, yara and oui files without restarting (issue #692)
- capture - remove yara 1.x support
- viewer - cron jobs now use the timestamp time and not last packet time when choosing sessions to look at
this means delay is shorter, although when upgrading to 1.0 some sessions will be not looked at.
1.0.0-beta1 2018/02/20
- capture - calculate sha256 too (set supportSha256 tru)
- wise - support sha256 lookups
- capture - fix disable fields
- capture - src/dst ip/port can be used to trigger rules now
- capture - ip fields in rules can now be CIDR
- capture - simple writer now flushes after 10 seconds of no writing
there still can be pagesize bytes unwritten (issue #777)
1.0.0-alpha2 2018/01/31
- Read alpha1 below
- release - correct geo files
- capture - set default geo file path
1.0.0-alpha1 2018/01/26
- NOTICE: Supported ES Versions: 5.6.x, 6.x (for new installs)
- NOTICE: hasheader for email/http for old sessions will not be migrated
- all - rename all field names