-
-
Notifications
You must be signed in to change notification settings - Fork 206
/
ChangeLog
1155 lines (1155 loc) · 66.6 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
- 79d251c 2024-10-23 (HEAD -> master, origin/master, origin/HEAD) Commit Releas 1.7.5
- 18dc06d 2024-10-23 Fix nfeplay template identifu ID
- 4c8b892 2024-10-19 Merge pull request #571 from TiceDB/patch-2
- b96828f 2024-10-19 Merge pull request #570 from TiceDB/patch-1
- b1d2a1f 2024-10-18 Point JSON field in_bytes to inBytes instead of inPackets
- 6825cb0 2024-10-18 Add missing delimiter for JSON output
- 04cc2b8 2024-09-22 Fix #567 devel compile error.
- 0d78cf7 2024-09-09 Fix broken length calculation
- b72105d 2024-09-09 Replace sprintf with snprintf in output files
- 49ed7d8 2024-09-08 Add RTT lantencu code - but disabled for now
- 0e80ef2 2024-09-07 Merge pull request #564 from paineta/master
- 76aa13a 2024-09-06 Update output_fmt.c
- dc85e39 2024-08-31 Addint64 and uint64 config routines
- 15b9bfd 2024-08-31 Change GRE cli option -G in sfcapd for -o gre option string. #559
- 87a9e67 2024-08-31 Add new option functions in nfconf and wire nfpcapd options
- 14b2179 2024-08-31 Use sysconfdir for default nfdump.conf file
- 99db1cd 2024-08-31 Merge pull request #559 from simonschdev/parse-gre
- 5c67031 2024-08-31 ADd FIN/RST signal flag to node
- dbaa772 2024-08-29 Fix latency calculation in nfpcapd
- 6d7d179 2024-08-27 Add src/dst tcp/udp port IE 180-183
- ae52e09 2024-08-27 Fix #560 - geo filter containing keywords
- dfb736f 2024-08-25 Add array decoding in ConfInventory()
- 8b08c33 2024-08-25 Replace toml code with better maintained version
- 71a2dd2 2024-08-25 Fix potential use after free
- 6409763 2024-08-24 Change record count from 32 to 64bits
- fb344fb 2024-08-23 minor cosmetic fixes
- 268ff3f 2024-08-23 implemented GRE tunnel introspection for sFlow
- c0ffe7d 2024-08-23 Fix duration string in summary line
- 341575a 2024-08-23 Merge pull request #558 from Takalele/master
- 5e08f54 2024-08-22 Fix #507 - gcc-14 issues with rrd version 1.9.x
- 312951f 2024-08-20 fixed updateTorDB.sh
- e1eed87 2024-08-20 Show some love to alpine linux
- 0b2796b 2024-08-20 Make gcc-14 happy
- 813da06 2024-08-20 Implement maxmind and tor lookup filter in nfprofile. See #557
- 925dd28 2024-08-20 Cleanup nfpcapd Makefile and make Alpine Linux happy with GNU flag
- 1cce258 2024-08-18 Merge pull request #556 from longregen/patch-1
- 84c71a6 2024-08-17 fix: missing -W option in nfpcapd argparsing
- 1fc74f0 2024-08-16 Make sure, only flow nodes get dummped - see also #555
- 6ec9d81 2024-08-16 Test if node is fragement node in defragment code. Fix #555
- 56c7ddf 2024-08-09 Switch tcp flags to alpha string in json. ndjson output. #553
- 10d4666 2024-08-09 Fix #554 - code dump in new processing pipeline.
- 493c542 2024-08-07 Update nfdump(1) man page for ndjson and cleanup
- 75cca36 2024-08-07 Fix coredump #552. Replace json-log by ndjson. #553 Cleanup json output. Replace " in maxmind org and city names by '. Otherwise breaks json output.
- a29354c 2024-08-06 Add poc for post filter. See #551
- aef51ae 2024-08-03 Align large vlan labels in ra output
- c4a6a55 2024-08-01 Add file torlookup.1 man page
- 0c815b2 2024-08-01 Add torlookup.1 man page as well as more information for torlookup in general
- 7d437e5 2024-08-01 Fix tor code and update script
- 2c461b5 2024-07-31 Add src,dst ip tor filter to match tor exit nodes and cleanup output buffer code
- 2a78afa 2024-07-29 Merge branch 'master' of ssh://github.com/phaag/nfdump
- 0c5e288 2024-07-29 Convert cvs output to itoa and local string buffer
- 266b960 2024-07-29 Fix buffer check in output_csv_fast.c
- cc0f593 2024-07-29 Add token %tsg, %teg for GMT start and end time in fmt and csv format. Update man page
- 51fded0 2024-07-29 Cleanup some output code
- 9d3cdd9 2024-07-29 Replace printf by local buffer and itoa. See #548
- fa2785b 2024-07-29 Add fixed but fast csv output mode csv-fast. See #548
- 87ee686 2024-07-29 Add local itoa
- bd93c60 2024-07-29 Speedup json output
- b6179a6 2024-07-22 Silence know record error message in filter thread
- 9fb15d1 2024-07-22 Strip quotes from org name in Maxmind DB
- 4804dbf 2024-07-22 Update mmhash.c
- 2fbc960 2024-07-22 Update mmhash.c
- 0577dee 2024-07-20 Fix ebuff size
- ad70a1f 2024-07-20 Fix platform issues and compiler warnings
- 961f0ab 2024-07-20 Update geolookup man page
- 1811ea3 2024-07-20 Add AS lookup to geolookup and add new -s srcasn, dstasn and asn for AS organistation name. Needs maxmind DB to work.
- 3a9908e 2024-07-20 Cleanup grammar. Fix error messages
- a253e80 2024-07-20 Cleanup grammar file
- 3f26afa 2024-07-19 Regex filter multithreading patch
- 9965ceb 2024-07-19 Fix AS mmdb lookup for flow addregation
- 62b8fb1 2024-07-11 Fix inherit compression bug. #525
- 64759bd 2024-07-11 Implement #543 and moved fragment flags
- 53f9fa0 2024-07-07 Cleanup fixes, and fix gcc complains
- bc3c2c9 2024-07-07 Merge pull request #545 from dceara/issue544-fix-typo-domain-id
- 44c2fe5 2024-07-05 output_json: Fix observationDoaminID typo in json output.
- 0659254 2024-07-05 Wire dedup into optional packet dump -p
- 9562322 2024-06-29 Add metrohash to nflowcache
- fb660f7 2024-06-29 Fix action script
- 69f5d13 2024-06-29 Update c-cpp.yml
- 745c60b 2024-06-29 Change hash to metrohash for de-duplication
- 65ad2f9 2024-06-29 Add packet de-duplication for nfpcapd
- 3f8fcdd 2024-06-28 Cleanup Makefiles
- 483e780 2024-06-25 Wire new csv format into aggregation output. #529
- e56f7f1 2024-06-24 Fix compiler warnings on some Linux systems
- ce52547 2024-06-24 Fix minor format issues
- 2c661f6 2024-06-24 Fix minor format issues
- a78db7f 2024-06-24 Fix minor format issues
- 23c7f4a 2024-06-23 Switch to new csv format definition
- 35bcbff 2024-06-19 Fix ja3/ja4 printing
- e44d934 2024-06-10 Fix format printing in packet-linux
- 8b1416f 2024-06-10 Add csv headers and config
- 595c3bd 2024-06-09 Fix runtest
- 2d68eca 2024-06-09 First batch of changes for flexible csv format output mode - still compatible
- 0b20860 2024-06-09 First batch of changes for flexible csv format output mode - still compatible
- e7df924 2024-06-03 update .gitignore
- 3b06350 2024-06-03 Remove vcs_track in repo. Created automatically
- 109860b 2024-06-02 Remove debug output
- 2728a91 2024-06-02 Block formats other than auto fmt for aggregation
- 7919b31 2024-06-02 Add json output for element stat. #528
- f4fecaa 2024-06-02 Add size in verify mode -v
- b3869bc 2024-06-02 Implement nokia NAT logging. See #533
- f0a5f6f 2024-06-02 Add NOKIA enterprise IDs. Not yet wired. #533
- 1619a60 2024-06-01 Merge pull request #538 from piorek94/fix_srcip6_agg
- 558b513 2024-06-01 Remove local files - I hate the desktop client!
- bf36a07 2024-06-01 Remove local files - I hate the desktop client!
- c96efb9 2024-06-01 Remove local files - I hate the desktop client!
- 044b1ae 2024-06-01 Remove local files - I hate the desktop client!
- 5c12e57 2024-06-01 Fix some memory leaks, although process ends.
- 5118e35 2024-06-01 fix srcip6 aggregation
- 2b5db3b 2024-06-01 Fix convert.c from merge
- c96f913 2024-06-01 Add multithreading filter processing
- 56907f7 2024-06-01 Merge remote-tracking branch 'origin/nfdump-devel'
- 3810acf 2024-05-31 Null IPs if inet aggregation does not match flow inet version. #537
- 1d25d32 2024-05-31 Fix aggregation bug with v4/v6 flows #536
- 7b701c9 2024-05-25 Add DLT_LINUX_SLL2 link type to pcap reader
- af5d8d8 2024-05-24 Fix man page for 'bgp next ip' #531
- daf20df 2024-05-24 Merge pull request #532 from piorek94/agg_zero_division_fix
- 2ac8675 2024-05-24 Merge pull request #530 from piorek94/csv_newline_fix
- 74c286f 2024-05-24 Fix #534 typo
- 825ec11 2024-05-23 fix zero division issue in aggregation mode
- 6b9d320 2024-05-23 remove etherType
- 18e174a 2024-05-21 Fix coredump on dynamic exporter mode with no packets. #527
- da06eb0 2024-05-20 Fix help and error text for compression
- 564f3a9 2024-05-11 Cleanup minor issues and add example for ft2nfdump
- d105409 2024-05-06 Add another dataBlock test
- 43fd78d 2024-05-06 Fix #521. Cleanup unclear naming of xlate records
- e8e8c38 2024-05-04 Remove heapsort. No longer needed these days
- 5cd6645 2024-05-04 Fix ja3 pre-processing in filter
- e3f4436 2024-05-03 Improve help text
- 2450ace 2024-05-03 Remove hash back reference in nflowcache
- d222bc0 2024-05-03 Cleanup hash code for nfstat and nflowcache
- 885f7df 2024-05-02 Rework nflowcache. Replace hash code to speedup hash and have cleaner code for later multi-threading -s -A stats.
- 73a2d8a 2024-04-20 Merge branch 'nfdump-devel' of ssh://github.com/phaag/nfdump into nfdump-devel
- cfca245 2024-04-20 Test new hash in nfstat
- f402ba3 2024-04-20 Merge branch 'master' of github.com:phaag/nfdump
- 8feced6 2024-04-20 Test new hash in nfstat
- f9e9e6a 2024-04-16 Improve boundary checking
- edd489a 2024-04-16 Improve boundary checking
- 9bc3553 2024-04-14 Sync with devel
- def1e91 2024-04-14 Sync changes with master
- 686f749 2024-04-14 Remove some old 1.6 code and clean up compat reader
- ea0286a 2024-04-14 Finally remove old master_record
- 18eff82 2024-04-14 Fix queue_close with multiple producers
- 774e29d 2024-04-14 Fix IP lookup in filter
- cb88b55 2024-04-14 Fix IP lookup in filter
- d6a5d32 2024-04-14 Merge branch 'nfdump-devel' of ssh://github.com/phaag/nfdump into nfdump-devel
- c1ba7d2 2024-04-14 Mark some structs as const
- 383fa76 2024-04-14 mark some structs as const
- 95e70eb 2024-04-14 Clear filter flag after use
- b1373fb 2024-04-13 Update AS statistics fix
- 833a09d 2024-04-13 Fix element stat for AS statistics. #519
- 122b882 2024-04-12 Sync branch
- 5abfd0d 2024-04-12 Work on filter code
- 66cd4d3 2024-04-12 More work on threadding code
- 97b619a 2024-04-12 refine const definitions in filter code
- 63309d6 2024-04-12 Fix tunnel flow fmt printing
- 37e70f3 2024-04-11 New convert block type 2 blocks code in pipelining
- ff08a2d 2024-04-09 Enable convert1.6 in pipeline
- 5071c2f 2024-04-07 Improve record processing
- a16f86f 2024-04-07 Fix debugging messages
- 020a772 2024-04-07 Test multithreadding nfdump
- 1400011 2024-04-06 Fix nfstat ptr offset
- 0c9293d 2024-04-06 Cleanup nfdump main loop
- e7ef540 2024-04-05 Remove debugging code in tor.c
- a541557 2024-04-05 Fix typos in torlookup
- 6ccca84 2024-04-05 Make sure to use new compiled geolookup binary to update mmdm
- 5cfefa9 2024-04-05 Make sure to use new compiled torlookup binary
- 5586eea 2024-04-05 Fix tor.c
- 151aeb8 2024-04-05 Fix maxmind.c
- 3adace8 2024-04-03 Fix json output
- f462e2b 2024-04-02 Address #518 and silence output for normal conditions
- b064481 2024-04-02 More readable output
- 903f0c6 2024-04-02 Fix runtests
- b42bdec 2024-04-02 Fix raw output for ip version
- d36ecc5 2024-04-02 Update space to 64bit
- 21c61f9 2024-04-02 Reserve space for vxLan element
- 8941a79 2024-04-02 Fix nflowcache aggregation (see #515) and cleanup some code
- 804d92e 2024-04-01 Cleanup code and fix ChangeIdent
- d876444 2024-04-01 Cleanup #517 and fix runtest
- fc2fae5 2024-04-01 Merge pull request #517 from jav4/ethertype
- 50126db 2024-04-01 Update output_raw.c
- f2c7375 2024-04-01 Update nffile_compat.c
- 163bf0f 2024-04-01 Update output_json.c
- 4a58dd5 2024-04-01 Update output_csv.c
- 671e205 2024-04-01 Update nfxV3.h
- a0d32aa 2024-04-01 Update output_raw.c
- d9683df 2024-04-01 Update output_json.c
- 2e13f89 2024-04-01 Update output_json.c
- 5a5f00b 2024-04-01 Update output_fmt.c
- 0615d34 2024-04-01 Update output_csv.c
- 757be79 2024-04-01 Update nfstat.c
- a532205 2024-04-01 Update nfx.h
- 0c239df 2024-04-01 Update nflowcache.c
- d145f87 2024-04-01 Update nfx.c
- c0dbeb0 2024-04-01 Update nfdump_1_6_x.h
- 0589904 2024-04-01 Update netflow_v9.c
- e12da4b 2024-04-01 Update grammar.y
- 4d69b07 2024-04-01 Merge branch 'master' into ethertype
- 77b04b1 2024-04-01 Merge dot1q and physical extension into a single layer2 extension
- 65fe66e 2024-04-01 Fix potential deadlock, if file queue empty
- 9289f6a 2024-03-31 Add working threads to nfprofile
- 819d8bc 2024-03-31 Remove exporter stuff from profiler. Not needed
- d4420f7 2024-03-31 Rename pthread_barrier to avoid collision with Linux version
- 9c9b71a 2024-03-31 Cleanup nfanon
- 7169029 2024-03-30 Add user defined workers for nfanon
- 3202fab 2024-03-30 Move barrier code into own files
- 928653c 2024-03-30 Add threadding support to nfanon
- 06475c9 2024-03-30 Fix nfreader sample code
- ea6322e 2024-03-30 Cleanup nfanon
- e7cac3e 2024-03-30 Fix AS range check
- 2553d3e 2024-03-30 Sync nfcapd, sfcapd code
- dabf79c 2024-03-30 Cleanup collector code and sync sfcapd
- 5cffb3a 2024-03-29 Cleanup collector loop
- 2d806f6 2024-03-29 Add more detaied error message
- 903a8aa 2024-03-29 Handle potential file rotate error
- 39a6946 2024-03-29 Remove unneeded check
- c6ea78a 2024-03-29 Add IP version in json output
- 98b1928 2024-03-29 Implement #515 features
- 1b6139e 2024-03-29 Add dot1q in ipfix. Fix for #515
- c4a2575 2024-03-29 Fix #516
- 32770d5 2024-03-29 Dissolve dataBlock in nffile_t for writing in order to prepare for multi threading processing flows
- ef928d6 2024-03-29 Add Netflow v9 ethertype field support
- fb664fc 2024-03-22 Dissolve dataBlock for reading in nffile_t in order to prepare for mutli-threading processing.
- 9198d94 2024-03-17 New FilterSetParam function
- d253340 2024-03-17 Improve performance to read and convert nfdump-1.6.x records. See #512
- 3b388b8 2024-03-16 Cleanup configure.ac
- 70732b2 2024-03-16 Add conditional build and licensing terms for ja4+
- 282187a 2024-03-16 Update nfdump.1 man page with ssl and ja4 filters
- 6f4f6ad 2024-03-16 Add SSL/TLS sni filter
- 69959f0 2024-03-16 Add SSL/TLS filter
- 45ade57 2024-03-16 Add ja4 tests to nftest
- 2e6d172 2024-03-16 Fix nftest
- 8c18cff 2024-03-16 Add ja4s to filter syntax
- 23fd4a2 2024-03-15 separate ja4, ja4s in nfstat
- dedb73a 2024-03-15 Streamline ja3, ja4, ssl code
- d5220a9 2024-03-14 Add ssl preproc to filter
- 9b7a54a 2024-03-14 Fix getopt parsing - #513
- 77ae680 2024-03-14 Add ja4 to filter. First try
- 8fe6a2b 2024-03-11 Work on ja4 in nfstat
- 595952a 2024-03-10 Work on ja4
- ab0810d 2024-03-10 Wire ja4/ja4s in output json and do more work on SSL payload
- 070cd71 2024-03-10 Wire ja4/ja4s in fmt output format
- f09d7a5 2024-03-09 Wire ja4/ja4s in raw output format
- b1bf5a1 2024-03-09 Move tor code to libnfdump
- c9969ec 2024-03-09 Cleanup Makefiles
- 8c97e7e 2024-03-09 Integrate maxmind code into libnfdump
- b733d6c 2024-03-09 Fix typo
- 84b425b 2024-03-09 Fix library order errors
- 2043de7 2024-03-09 Split libnfdump into libnffile and libnfdump
- 784e62d 2024-03-09 Merge remote-tracking branch 'origin/nfdump-ja4'
- 8a0c883 2024-03-09 Fix typo
- d5add6b 2024-03-09 Fix compile errors from pull #511
- 9241fee 2024-03-09 Merge pull request #511 from blkmajik/json-log
- f0f9f4b 2024-03-09 Merge branch 'master' into json-log
- c5c5e47 2024-03-09 Code cleanup
- 0b59bea 2024-03-08 Update nfdump.conf.dist
- 3ff30f2 2024-03-08 Fix OS library order
- d77c056 2024-03-08 Fix configure.ac
- 93ce7fb 2024-03-08 Add torlookup for IPs
- b65a3ff 2024-03-08 Maxmind code refactoring
- c4f8169 2024-03-08 Streamline ja3/ja4
- fb63274 2024-03-05 Move sampled to end to handle proper syntax on closing. No final , on last field
- 23ec1e5 2024-03-05 Use record separator instead of field separator between records
- 031b462 2024-03-05 Swap fs/rs for json-log format
- 3dfc829 2024-03-05 Make fprintf happy
- 432925e 2024-03-05 Const char instead
- da3cf0d 2024-03-05 Integrate json-log format into output_json
- 9c1021d 2024-03-03 Merge remote-tracking branch 'origin/nfdump-ja4'
- cd9b43e 2024-03-03 Fix Makefiles
- 626be0b 2024-03-03 Merge remote-tracking branch 'origin/nfdump-ja4'
- 17ead4c 2024-03-03 Updeate ChangeLog
- c9fe29c 2024-03-03 Prepare nfstat for var length fields such as ja4
- 2a55c3b 2024-03-03 Commit
- 109c1c9 2024-03-03 Fix ssl decoder
- f991322 2024-03-03 Remove debugging flag
- 1e88803 2024-03-01 Implement ja4s
- 4a60672 2024-03-01 Update Readme
- c129b78 2024-03-01 Add ja4 Readme for license issue and add --enable-ja4, default no for building all ja4 modules
- 5c72cc8 2024-03-01 Add ja3 filter in nfdump-ja4
- 5cdc989 2024-03-01 Cleanup include
- 539902c 2024-03-01 Insert ja3 filter code
- 8ed9f34 2024-03-01 Add ja4_c
- 2ded6b5 2024-02-29 Implement ja_a and ja_b of ja
- ae92ef6 2024-02-29 Add ja4 files to start implementation
- 16148ed 2024-02-29 Add sha256
- a4f6a53 2024-02-26 Refrag ssl extension code
- 6ea1b58 2024-02-25 Add ALPN extension decoding to ssl.c
- 4115a8b 2024-02-25 Fix missing malloc() type casting
- 07136b3 2024-02-25 Use new ssl module for ja3
- 17d127e 2024-02-24 Debug ssl code - Client Hello
- 79e9b8a 2024-02-24 Defrag ssl and ja3 - Add plain ssl code
- 00e0e45 2024-02-24 Fix nfreader code
- eb5bef5 2024-02-22 Cleanup code to handle legacy sampler record
- a988a40 2024-02-18 Rework maxmind code
- 9a0dddf 2024-02-17 Fix library dependencies on some *nix
- 2c987ee 2024-02-17 The previous commit 466c27b is a merge with a working branch to remove the clumsy master_record_t in nfdump. This removes lot of legacy code and updates the code base. Furthermore, the filter engin has been replaced by a more flexible and faster one. The speed gain depends on the filter and the number of filter elements. The overall speed gain with this merge is 10% in average. Further improvements are planned with more worker threats. Please note that the filter syntax had some small changes such as 'icmp-type' is now 'icmp type' etc.
- 466c27b 2024-02-17 Merge remote-tracking branch 'origin/nfdump-filter-ng'
- bc08a0a 2024-02-17 Sync lz4 code
- 4f409e9 2024-02-17 (tag: v1.7.4) Release v1.7.4
- 4a7de41 2024-02-17 Fix compiler warnings for lz4
- 4e98a35 2024-02-17 Update lz4 code
- 519a052 2024-02-16 Fix compile issues
- d301428 2024-02-16 Cleanup runtest.sh
- e5976bd 2024-02-13 Move payload decode to own directory
- df94907 2024-02-12 Update filter code, to be multi threading ready
- 75d07cb 2024-02-11 Remove last debris from pipe output mode. Pipe output mode is gone now.
- 21606f7 2024-02-11 Add DEVEL code
- 72dcff4 2024-02-11 work on nflowcache
- aa78fee 2024-02-11 Fix stat issues
- dcf8499 2024-02-11 Fix nflowcache
- 4c3a7e5 2024-02-10 Fix type bug
- 89a43a4 2024-02-10 Cleanup and replace version script.
- 7997ac4 2024-02-10 Replace Changelog file with git log history. Modify gen_version.sh. See #482
- 0001529 2024-02-10 Honor printPlain Flag for String_evt. See #498
- cf43542 2024-02-09 Cleanup strings
- 286eac3 2024-02-09 Clean nfdump and geolookups
- 5355fe8 2024-02-07 Wire maxmind geolookup in nfstat
- 5b255f5 2024-02-07 Wire Maxmind geo filters in new filter engine
- 249ca65 2024-02-06 Work on aggregation und filter issues
- 88dda88 2024-02-04 Wrap up loose ends
- 9db4215 2024-02-03 Fix buggy sflow code. Fixes #506
- f8381be 2024-02-03 Update sflow
- 98437f8 2024-02-03 dissolve code for output
- a20249c 2024-02-03 Dissolve code for output
- 56919df 2024-02-03 Change link order as some Linux linker do not correctly find static symbols. Fix #505
- e6b9fce 2024-02-03 Fix init
- e88056f 2024-02-02 Cleanup and fix nflowcache and nfstat
- 05c7fbd 2024-01-29 Fix stat issues in nflowcahe and nfstat
- 35d4292 2024-01-29 Fix format issues in output_fmt
- 1b6cdd5 2024-01-29 Fix some output_fmt format issues
- 627565a 2024-01-29 Remove local m4 files
- f0d2750 2024-01-29 Fix err var in nfprofile
- dc1b1b2 2024-01-29 Fix #503 - Append records in nfprofile
- 1dcb7ae 2024-01-28 Fix fmt time 1970
- c5ddbf0 2024-01-28 Fix fmt cores
- 427b08e 2024-01-28 Removed master record from nfgen. Update make check
- bbaef64 2024-01-26 master record removed from 1.7.x code
- 373e8ad 2024-01-26 Modified nfgen and first cleanup
- fb360cd 2024-01-26 removed master record from nfgen
- 452c6ce 2024-01-25 Replace nftest. master_record removed
- 40267bb 2024-01-25 Cleanup old master_record
- b94b43c 2024-01-25 Removed master_record from nfstat
- bb9765e 2024-01-24 Start cleanup nfstat
- df7605b 2024-01-24 Work on nfstat
- e325de6 2024-01-22 Implement #501. Add -X <extlist> option for sfcapd
- c558152 2024-01-21 Start working on nfstat.c
- c51748a 2024-01-21 Complete nflowcache.c
- 83209d3 2024-01-21 Start to optimise nflowcache
- 741addd 2024-01-20 Removed master record from nflowcache
- 373ca78 2024-01-20 Removed master record from nflowcache
- 7a795a5 2024-01-20 Work on nflowcache
- 0208383 2024-01-19 Work on nflowcache
- a1ac11b 2024-01-15 Add endian for ICMP for correct decoding
- 2b11d66 2024-01-15 Work on nflowcache
- ddf605e 2024-01-14 Fix for first test
- 51148c6 2024-01-14 Working on nflowcache
- 4b961bd 2024-01-14 Fix #498 - event string in output_fmt
- a81832c 2024-01-14 Remove master_record from output_fmt
- 19a0ec3 2024-01-13 Remove master record from output_json
- 174139e 2024-01-13 Remove legacy pipe output format
- f042b4c 2024-01-13 Remove master record from output_raw
- 85c00ac 2024-01-13 Removed master record from output_csv
- ebfc751 2024-01-13 Working on output_csv
- fe96d8e 2024-01-11 master record removed from nfreplay
- 7cb61a5 2024-01-09 Fixes
- dcfd52e 2024-01-08 Add missing files
- 400ac03 2024-01-07 Remove master_record from send_v5
- acab1dd 2024-01-07 Work on nfreplay
- 90cfd93 2024-01-07 Wire new filter in nftrack, nfprofile - easiest
- 9637751 2024-01-07 Move filter files in own lib/filter directory
- 1075d66 2024-01-07 Move filter files in own lib/filter directory
- 4736178 2024-01-07 Update Readme
- 389acc5 2024-01-06 Remove NSEL option from nfanon. NSEL included by default
- d49a050 2024-01-06 Fix error message
- b78ffba 2024-01-06 Refrag code into userio files. Prepare for next level code update
- 05430dd 2024-01-06 Move code. Cleanup
- 272c235 2024-01-03 Fix Offset/Size values in nfxV3.h
- 5c19ff2 2023-12-31 Fix runtest with new field IPfrag flags
- 3981646 2023-12-27 Add IP fragmentflags tag #197
- 71d0afc 2023-12-27 Add cgNAT decoding to IPFIX decoder
- b6841f6 2023-12-27 Fix #496 - Add RFC8158 NAT event flags
- dec1d92 2023-12-16 Update Offset/Size for header fields
- 305f1be 2023-12-15 Merge pull request #489 from g0tar/keep_flowStartMilliseconds
- aaaee7e 2023-12-13 Don't clear flowStartMilliseconds when flowEndMilliseconds==0
- 93797b2 2023-12-05 Fixed #486. Pull request #487
- 2fd5df7 2023-12-03 Cleanup grammar.y with useless rule
- 295f514 2023-12-03 Implement request #485 in sfcapd to store nat IP/port for sflow records if available
- 042e68b 2023-12-02 Cleanup filter. String arguments in filter elements may be single or double quoted. Strings without quotes are accepted as strings as long as the string is not a reserved filter key word.#
- 71f888f 2023-11-26 Update nfdump.spec. Thanks rexy74!
- 40eb5c9 2023-11-26 Fix grammar
- eaf96ce 2023-11-26 More fixes for #484
- df50860 2023-11-26 Fix #484 - workaround not really a fix
- 7f75c90 2023-11-18 Fix #481 - expire.c
- 469dd81 2023-11-18 Merge branch 'master' of github.com:phaag/nfdump sync local
- cc1073a 2023-11-18 Cleanup flist code
- cbc617f 2023-11-01 Fix #480 Build error on CentOS
- fded574 2023-10-19 Merge pull request #477 from chadf/configure-disable-xxxx
- 622670b 2023-10-16 Fixed remaining ./configure --disable-xxxx issues. Corrected use of $enabled_xxxx vs $build_xxxx where appropriete.
- ce7ff2c 2023-10-15 Fix ./configure --disable-xxxx handling.
- e2b9f43 2023-10-15 Add multiple dir wildcard '@' for multiple dir argument -M
- 6b69002 2023-10-14 Fix all HAVE_ZSTD macros
- 3ac05de 2023-10-14 Repair version string
- ec8b602 2023-10-14 Check time window, if given, of a multi file selection
- 94743ee 2023-10-14 Fix compiler warning in kbtree.h
- 286d70d 2023-10-14 Update Readme
- 3e4a992 2023-10-14 Improve build process for external compression libraries. Make bzip library optional
- 9a50550 2023-10-08 Fix #474. Reject unspecified IP addresses and invalid prefix length in filter
- 46d2db0 2023-09-25 Fix #469. Update usage and error messages and man pages
- 02ee700 2023-09-25 Fix #467. Rework number of workers setting. Set max to 64
- cfaf6ab 2023-09-02 (tag: v1.7.3) Release v1.7.3
- 5e2aef9 2023-09-02 Improve error handling in privsep.c
- 584453e 2023-08-20 Fix #459. change vars to uint64_t
- 696f563 2023-08-12 Merge branch 'master' of github.com:phaag/nfdump
- ec1f121 2023-08-12 Allow direction status > 2, althogh not defined
- c2c097f 2023-07-27 Fix #452 - to add GeoInfo
- 1163722 2023-06-23 Merge branch 'master' of github.com:phaag/nfdump
- c51ce1f 2023-06-23 Fix #448 man page type
- de9811c 2023-06-18 Cleanup unused extensions. Implemented as arrays. Collect Juniper inline-monitorig packet data. Data is not yet decoded.
- 3a810ad 2023-06-18 Add types for Juniper inline-monitoring. No decoding yet
- 130fafe 2023-06-17 Update test sequence for compression levels
- 14be8fb 2023-06-17 Cleanup nffile struct
- f9515d2 2023-06-17 Fix potential compressed appendix corruption
- 4b7c42a 2023-06-17 Update Readme for building instructions on older Ubuntu 18.04 LTS
- 837419b 2023-06-17 Fix broken installation of nfdump.conf.dist
- df4fc16 2023-06-16 Cleanup all compress files into sub dir
- 6c47de5 2023-06-16 Move conf subdir to nfdump library. Fix linker errors
- 18f7bc5 2023-06-16 Add maxworkers to nfdump.conf
- 336cb05 2023-06-16 Make count check more dynamic in v5
- 1a71629 2023-06-06 Fix nfsen #15 on RH
- 65ea877 2023-05-29 Bark if rename fails
- 8802fa0 2023-05-29 Add zstd to QueryFile()
- 98385f2 2023-05-29 Cleanup and fix minor bugs
- 91aeeb8 2023-05-29 Enable multiple writer threads, depending on number of Cores online
- a9a4322 2023-05-28 Update Readme
- 92f8d01 2023-05-28 Update Readme
- 2efd259 2023-05-27 Add zstd compression
- cb254b1 2023-05-27 Enable lz4 compression levels 3..12
- 3b7b92f 2023-05-27 Update lz4 code
- 8123283 2023-05-27 Add code for compression level handling
- c6fedc0 2023-05-26 Update compression code
- c8c98d0 2023-05-26 Add compresson level parsing
- 7413188 2023-05-21 Fix parsing compression option to work for all possible options
- 12a90b4 2023-05-21 Adapt -J option in nfdump to new compression spec, being still compatible with old one.
- a1f4f19 2023-05-21 Print usage() if no arguments are given
- d8620c0 2023-05-21 Update man pages
- e928c42 2023-05-21 Unify compression arguments. Use now -z=<format> for compression. Accept still old -j and -y for now
- e8ee2fc 2023-05-19 Remove static var for lzo wrkmem
- f2ddf67 2023-05-19 Cleanup nfprofile and fix issue #398
- 69e4d98 2023-05-18 Add syslog by default for nfprofile
- 7041498 2023-05-18 Add file verification for nfprofile
- efd28ad 2023-05-18 Cleanup nfprofile code
- b54e266 2023-05-08 Make geolookup more robust reading buggy files
- d90d561 2023-05-08 Add flush() for nfprofile
- 399014d 2023-05-07 Move from c11 to c17 compile standard
- 7b791a1 2023-05-07 Cleanup profile code
- 27d65be 2023-05-06 Prevent loading geoDB if not needed
- f3a174f 2023-05-06 change var name
- 2c5678f 2023-05-06 Add BlockReports
- 18a34c1 2023-05-05 Update nfprofile
- 43f3f14 2023-05-04 Fix last commit
- 881707e 2023-05-04 Remove blockqueue. Reduce memory footprint
- e10c2ef 2023-04-30 Code cleanup
- af0f43e 2023-04-30 Code cleanup
- 2944ac9 2023-04-30 Make consistent protocol ID for nfd raw
- 0742648 2023-04-30 Code cleanup and minor bug fix
- 328daaf 2023-04-30 Rework QueryFile code and cleanup
- 058cecb 2023-04-29 Merge and cleanup nfpcapd and nfreplay code for sending raw records
- 2864358 2023-04-29 Add nfdump protocol for nfreplay
- 62ca665 2023-04-23 (tag: v1.7.2) Release v1.7.2
- 2eaac76 2023-04-23 Update ChangeLog
- 0080e79 2023-04-23 Update nfcapd/sfcapd man pages for erspan data link
- 39ec029 2023-04-15 Fix AddGeoInfo
- 8388cb1 2023-04-09 Cleanup linkoffset handling in nfpcapd
- 38decb4 2023-04-09 Implement erspan protocol in nfpcapd packet processing
- a2cb5e3 2023-04-08 Sync ipfix and netflow_v9 for option field processing
- 075dd3a 2023-04-07 Handle buggy option data(!)
- c87c892 2023-04-07 minor fixes
- d8fe70a 2023-04-07 Fix linux compile warnings
- bc3201c 2023-04-07 Fix FreeBSD include issue
- 0546452 2023-04-07 Fix v9 option template processing
- b7aee0b 2023-04-07 Fix option record processing for multiple records
- a197e57 2023-04-07 Fix ipfix nbar processing
- 64fc1e1 2023-04-06 Wire bufflen for pcap reader
- 2dadbaa 2023-04-06 Add FUNDING
- 42dea3e 2023-04-06 Fix compiler warnings
- 520c3ee 2023-04-06 Update pcap reader with erspan device
- 721f6f3 2023-04-02 Fix fmt argument parsing
- 34171af 2023-04-02 Add IPv4 in IPv6 cases in geolookup
- 5bb991d 2023-04-01 Cleanup buffsize memory
- 771c0c9 2023-03-26 Fix IP version check in geolookup
- 26a0f61 2023-03-26 Disable signals in threads. Different OS handle signals differently
- 7099d56 2023-03-26 Recongnize old sampler with missing algorithm tag #35
- 5d58d4c 2023-03-26 Fix memory leaks
- 3781b43 2023-03-19 Cleanup
- c3877c4 2023-03-12 Update pcap_reader and add CISCO application performance monitor tags
- 28683f6 2023-03-11 Add ERSPAN decoding to pcap_reader
- f41364c 2023-03-11 Fix FreeBSD include issue in pcap reader
- 93f1af6 2023-03-11 Remove more autogen m4 files from repo
- 488e213 2023-03-11 Remove autogen m4/libtool from repo
- 20f2b51 2023-03-11 Check uid root for src spoofing option
- 02dc34b 2023-03-06 Fix argument checking in nftrack. #432
- 49661b5 2023-03-06 Fix valgrind error for uninitalised memory. #431
- 99dc96e 2023-03-05 Update lz4 code
- 919dd4e 2023-03-05 Update number of enabled tags in v9 and ipfix
- ec8649f 2023-03-05 Fix Init message in v9 and ipfix
- 175e651 2023-03-05 Fix broken init functions
- 035c003 2023-03-05 Add collector option -X to limit stored data.
- bffe640 2023-03-05 Add help text for format tokens
- 3c03f24 2023-03-05 Implement %sasn, %dasn organisation name printing tags. See #430
- b47eec0 2023-03-05 Rename macro
- 1dbfb60 2023-03-05 Check record size in geo DB
- a44f6f8 2023-03-04 Implement #428. Needs rebuild of the geoDB.
- ebbdf30 2023-03-04 Fix #429. Correct header line for %dloc
- 3e5aa64 2023-02-27 Fix launcher argument bug
- 4498c9a 2023-02-26 Wire sampling extension for individual sampling
- 9f96ec1 2023-02-26 Wire sampling extension for individual sampling.
- 096aaef 2023-02-25 Fix #426 - compile bug with nsel option
- 984530c 2023-02-25 Fix pcap_reader
- 78ce872 2023-02-25 Merge branch 'master' of github.com:phaag/nfdump
- 469d388 2023-02-25 Update ICMP type/code handling. Issue #423
- f658456 2023-02-24 Merge pull request #424 from thezoggy/patch-1
- 0f050fb 2023-02-21 Update .gitignore
- 428bec0 2023-02-21 Merge pull request #422 from mkorkalo/master
- d91a3f1 2023-02-21 Correct spelling correction
- f7eb350 2023-02-21 Merge pull request #421 from thezoggy/codespell
- 97f0e59 2023-02-21 fix String_LastSeenRaw ms formatting
- bf52a99 2023-02-20 codespell - cleanup
- 6f16426 2023-02-18 Pimp pcap_reader
- 07c9150 2023-02-18 Fix #415. ICMP decoding in netflow v9
- af0fcb3 2023-02-18 Fix exporter printing
- ca2c430 2023-02-18 Update Readme
- c2b18d7 2023-02-17 Update for #409 for a mixed environment
- 5a760c3 2023-02-15 Fix #414. -O bps works correct now
- 746c8dd 2023-02-14 Update geo filter test
- 64076c8 2023-02-14 Update geofilter settings
- d46474b 2023-02-11 Merge pull request #411 from borjam/nfreplay-sourceaddr
- 174ec98 2023-02-11 Fix minor issues.
- 4d0001b 2023-02-11 Refine sampling to fix #410
- 75f1c1f 2023-02-10 Fix argument processing for -n
- dc57aa5 2023-02-10 Added source address support for nfreplay
- 33f9a6a 2023-02-07 Update README
- e36ab60 2023-02-07 Fix c-cpp.yml
- 28f3864 2023-02-07 Fix c-cpp.yml
- b93a8d1 2023-02-07 Create c-cpp.yml
- 4badf6c 2023-02-05 Fix dst tos bug in output_raw
- 56cd416 2023-02-05 Code cleanup. Update nfxV3.h for Golang import
- c82f195 2023-02-04 Add icmp type/code elements 176, 177, 178, 179
- 3257543 2023-02-04 Add icmp type/code elements 176, 177, 178, 179
- 8050588 2023-02-04 Fix #402 - Add AS info.
- 4a4dac0 2023-02-04 Fix 408. Interchanged time stamps
- 68d5a9f 2023-02-04 Add geo info in JSON output when using GeoDB. #402
- 55ebc72 2023-02-04 Fix more FreeBSD include issues
- 01b244e 2023-02-04 Fix configure.ac bug
- fe1d00a 2023-02-04 Fix FreeBSD include bug. #407
- e0743b3 2023-01-29 Move fwd_status in correct block in output_raw
- 23c6daa 2023-01-29 Fix gen_date.sh
- 5ed2f8c 2023-01-28 Fix Makefiles
- ca33e20 2023-01-28 Add unique version string
- b4d0962 2023-01-23 Fix #400 - compile error
- 4f49c8e 2023-01-22 Copy event time to flow start/stop
- 2224193 2023-01-21 Fix Event display time, if not flagged as event
- fcf422b 2023-01-21 Add creator tag in nffile header
- ea596c7 2023-01-21 Add creator tag in nffile header
- f559c36 2023-01-21 Fix filter concat bug. Add exporter filter
- 4fd1909 2023-01-17 Update output_fmt.c
- b6839c5 2023-01-14 Fix #396. Code cleanup
- 1215e1a 2023-01-08 Fix CentOS compile issue
- e74ce26 2023-01-07 Add pflog fmt tokens in man page
- fd3e48d 2023-01-07 Fix grammer.y
- 76c85d0 2023-01-07 Implement OpenBSD pflog filters elements and -o fmt print tokens
- 22548d2 2023-01-04 Fix configure.ac
- ce2d8b3 2023-01-04 Add pcap_dump_open_append() code, if missed by some libpcaps
- fe45a36 2023-01-03 Disable debugging code
- 193834c 2023-01-03 Implement source IP address spoofing for the packet repeater. See #248
- abfab42 2023-01-02 Replace old packet repeater code with more modern privsep code
- 5da05ad 2023-01-01 Remove old code
- 7a7e15c 2022-12-31 Replace old launcher startup code with more modern privsep code
- 3b0d80e 2022-12-29 Fix compile issue #395 on Alpine Linux
- fd7ab9c 2022-12-24 (tag: v1.7.1) Release v1.7.1
- 3a37f36 2022-12-23 Fix #394. Add Changelog
- 35f9735 2022-12-22 Add NSEL/NEL event flag
- 0c45f2d 2022-12-22 Fix compile error
- e2e1191 2022-12-22 Update Changelog
- 5ba2077 2022-12-22 Merge remote-tracking branch 'origin'
- 164aa3c 2022-12-22 Fix #393 consistent logging
- 0360d53 2022-12-20 Remove extra : in getopt of nfcapd.
- 17a81d7 2022-12-18 Code cleanup
- 3550a3f 2022-12-18 Add feature #391. Add country code addgregation
- 27102b7 2022-12-18 Fix #392. Fix format options with IPv6
- 9066972 2022-12-18 Fix #390. Aggregation not working for GeoDB's enriched AS data
- ad0215a 2022-12-17 Add OpenBSD pflog decoding in nfpcapd and nfdump
- c210f2f 2022-12-17 Add pfinfo extension
- 29477da 2022-12-17 Fix Ident change
- 7908190 2022-12-17 Sync nfcapd, sfcapd code. Cleanup pcaproc
- eb6c5be 2022-12-17 Fix #389 receiving IPv4 on IPv6 socket in sfcapd
- 70b17cb 2022-12-17 Code cleanup in nfpcapd
- cb73d61 2022-12-09 Code cleanup
- c475a7d 2022-12-09 Fix #385 bug - i386 32bit alignment
- 7922f23 2022-12-09 Fix #384 bug when compile with --enable-nsel
- 26cfd10 2022-12-04 Update nfprofile help text
- e06830f 2022-12-04 Fix nfprofile record processing loop
- 69143ae 2022-12-04 Fix -M for nfprofile
- f37abff 2022-12-04 Add missing pflog.h
- c878808 2022-12-03 Add OpenBSD pf linktype 117 for pflog
- 626d5f2 2022-12-03 Fix #382 build error on certain platforms
- 1f03a0b 2022-12-02 Code cleanup
- 63e8496 2022-12-02 Code cleanup
- 4bc869b 2022-12-02 Fix compile warnings
- eeace4d 2022-12-02 Fix compile error
- f4ff9ad 2022-12-02 Implement NFLOG link layer
- f8b3be8 2022-12-02 Fix #381. pcap overwrite fixed
- 5a9f88a 2022-12-02 Fix #380. utf8 string validation
- 61c8aa7 2022-11-29 Add missing file id.h
- f054d64 2022-11-27 Fix same table structs for ipfix anf v9
- aebca21 2022-11-27 Fix #377. Rework sampling code in general. Switch to packet interval/space notation. Map older sampling to new notation. Fix #375 relative timestamps with sysUptime id 160
- e57f215 2022-11-15 Merge pull request #378 from heiko3/master
- 9fbbbf6 2022-11-15 Merge pull request #376 from vrbaji1/patch-1
- c45be96 2022-11-14 Remove debug printf
- 4748ac1 2022-11-13 #367 - Add if and vrf name tags 83, 236. Rework vrf ingress/egress outside of NEL records
- 4dbdc8d 2022-11-08 stat() correct path for option -M
- d6c2bee 2022-11-04 Fix aggregation on xdstip
- 79b6700 2022-10-23 Update nbar ipfix code
- 163b671 2022-10-23 Reworked nbar code to be more generic for other array records
- 9d66b9a 2022-10-22 Fix #369. Legacy -M for NfSen works again
- 9141f1c 2022-10-22 Fix #370. Help shows correct option -g
- c347da1 2022-10-22 Cleanup unsed var in maxmind
- 5cc35c6 2022-10-16 Update nbar field length #361
- f3fc2c0 2022-10-07 Improve nbar handling
- d54bce1 2022-10-03 Merge pull request #357 to master
- 2d50c67 2022-10-01 Code refactoring and cleanup
- 4129950 2022-09-30 Fix typo bug in docker files
- ecb8d6b 2022-09-30 (tag: v1.7.0.1) Update to nudump-1.7.0.1 - build issues
- 1fb8604 2022-09-30 Add docker file for alpine Linux.
- 4707df9 2022-09-30 Update docker file for ubuntu
- da6f37f 2022-09-30 Fix build issues on various Linuxes
- 486a783 2022-09-29 Update Readme
- 1bcd1a9 2022-09-29 Fix snprintf length argument
- 42f8d7e 2022-09-29 Handle fscanf return value in pidfile.c
- d07c313 2022-09-29 Add missing variable initialization
- bef1a16 2022-09-28 (tag: v.1.7.0) Update Readme for CentOS 7.x
- 1009e69 2022-09-28 Fix compile issues
- c794e93 2022-09-28 Add missing daemon files
- 563e8b2 2022-09-28 Release 1.7.0
- cc8680e 2022-09-28 Merge branch 'master' into unicorn Merge unicorn brantch to master
- 99242d6 2022-09-27 Update README
- 7ea8626 2022-09-27 Update nfdump man page
- 02ec100 2022-09-25 Update nfreplay man page
- 8099894 2022-09-25 Update sfcapd man page
- 5d44eec 2022-09-25 Clean up collector code
- 8bf359b 2022-09-24 Cleanup nfcapd code and man page
- 8dde91f 2022-09-23 Replace collector -l option with more speaking -w for output flow directory
- 6313ed8 2022-09-23 Update nfexpire man page
- 7154487 2022-09-23 Update nfanon man page
- 1df7c96 2022-09-23 Cleanup nfanon code and man page
- d12738b 2022-09-22 Update ft2nfdump man page
- aecb79a 2022-09-22 Move reading NFCONF into nfconf.c
- 12c5261 2022-09-22 Update geolookup man page
- 94c828a 2022-09-20 Add update maxmind DB script
- 803b100 2022-09-20 Add missing testfile
- 428537c 2022-09-20 Let geolookup use the config geodb.path
- ba33828 2022-09-19 Fix propper config file installation and set as default
- 21c343f 2022-09-19 Fix man page installation
- 0af0c2a 2022-09-19 Fix .gitignore and Makefile.am
- 7ad99af 2022-09-19 Fix ckeck script
- 1e99265 2022-09-19 Refactor nfcapd code in subdir
- 2816bcc 2022-09-19 Cleanup files and update gitignore
- f56fb1f 2022-09-19 Cleanup old files
- bc3dd8b 2022-09-19 Cleanup Makfiles
- d994abe 2022-09-19 Cleanup code
- 1ba875b 2022-09-19 Collector code cleanup
- ebf9d21 2022-09-19 Make gcc happy
- cecbb08 2022-09-19 Add missing Makefile.am
- e477e7c 2022-09-19 Cleanup collector code
- 297578c 2022-09-19 Fix includes
- 9d9f3a4 2022-09-19 Add include dir
- 32b2824 2022-09-19 Code cleanup
- 713d4da 2022-09-19 Cleanup code for nfreplay
- 4d9522a 2022-09-18 Fix print_epilog
- a6aa5b5 2022-09-18 Add maxmind subdir
- 50c4387 2022-09-18 Move nfanon and nfreader in own sub dir
- 17973b9 2022-09-18 Cleanup
- d8280fc 2022-09-18 New netflow subdir for protocols
- 4caadd0 2022-09-18 Add config file
- 33aa5cf 2022-09-17 Cleanup files. Rearrange output processing
- 0bd233c 2022-09-04 Add missing DLT_LINUX_SLL for BSD systems
- 2f7781b 2022-09-04 Create FUNDING.yml
- 87a4c9b 2022-09-01 Fix geolookup IPv6. Concat cmdline args without quotes
- 0793925 2022-08-31 Improve ja3 handling/printing. Add sni name in output format
- a734670 2022-08-28 Add missing argument getopt arg checks
- 977b2ad 2022-08-28 Add geo stat. Minor changes/improvements ja3 and dns. Dump full payload in output raw
- 95c6812 2022-08-27 Update man page for payload regex filter
- 1ccf438 2022-08-27 Replace payload regex code
- 1cd20bd 2022-08-24 Add geo location to stat output
- 4746071 2022-08-24 Fix memory leak when for payload records
- 80879ef 2022-08-22 Replace payload content matching
- ae10427 2022-08-22 Replace getval inline functions
- a968f63 2022-08-21 Recognise 6 byte input length in ipfix
- 298e6e0 2022-08-21 Improve some link layer protocol discovery in nfpcapd
- 9a252d2 2022-08-20 Cleanup sequencer
- aaac6c8 2022-08-20 Fix compiler issues and time formats in nfpcapd
- 3613641 2022-08-20 Cleanup inline code
- 57d3257 2022-08-17 Fix filter bug. #356
- 364c0ab 2022-08-14 Cleanup payload printing
- f4ce829 2022-08-13 Some cleanup
- 7f7e3cb 2022-08-13 Add payload regex filter
- b1811b3 2022-08-11 Fix compiler warnings
- ae76cd3 2022-08-06 Add example gnuplot command file to extra directory
- d3f504d 2022-08-06 Add gnuplot summary output
- 1aa8337 2022-08-06 Add record dynamic record count
- 071ee4b 2022-08-06 Change display format for duration in more human readable format
- 57d969b 2022-07-30 Correctly decode ether type 0x6558 in nfpcapd
- 50b286b 2022-07-07 Fix flow label code
- e0bea16 2022-07-05 Make sure existing flow files are not overwritten, but appended in nfcapd, nfpcapd and sfcapd
- 2d786aa 2022-07-03 Add ipfix observation domainID/pointID. #351
- 0afa9b9 2022-06-25 Fixed missing newline in CSV output
- 7c2dd1b 2022-06-14 State 20220614
- ebfedf2 2022-04-23 Fix #333 with NSEL event record sending flow icmp
- fa49d12 2022-04-23 Fix #333 with NSEL event record sending flow icmp
- 2dd036f 2022-03-26 (tag: v1.6.24) Release 1.6.24
- 0418e73 2022-03-26 Update m4 files
- 51ba781 2022-03-26 Update Doxigen.in file: #332
- 3f8cca0 2022-03-25 Merge pull request #336 from thesamesam/m4-macro-dir
- e882722 2022-03-24 Makefile.am: add ACLOCAL_AMFLAGS
- 3e61002 2022-03-21 Set ident on OpenNewFile
- ec483f0 2022-03-20 Update metric. Add ident. Remove rate
- 7438fee 2022-03-19 Fix nfpcapd LDFLAGS
- db6b1cd 2022-03-19 Fix nfpcapd LDFLAGS
- be244d8 2022-03-19 Calculate metric/s with double
- 77342cd 2022-03-11 Fix cmd line processinf in nfanon. #328
- e6cb94b 2022-03-06 Update Readme regarding InfluxDB
- 4859557 2022-03-06 Update Readme
- ec4b48e 2022-03-06 Update metric code
- b574c36 2022-03-06 Update metric code
- 3c521ee 2022-03-06 Update metric code
- e947298 2022-03-05 Update metric
- 3274160 2022-03-05 Fix editing
- 609b75a 2022-03-05 Compatibility to autoconf 2.69
- a34890b 2022-03-05 Update metric. Make collector main clock reference
- 4652c20 2022-03-03 Make configure.ac autoconf 2.69 compatible
- 77f6f40 2022-02-25 Cleanup/update automake files
- 67da975 2022-02-25 Cleanup automake files. Fixes #304.
- e626109 2022-02-22 Fix issue #304 - accept CFLAGS
- 5f13e05 2022-02-19 Fix sflow compile problem
- 0c77815 2022-01-29 Fix ja3 bugs. Cleanup ja3
- 38b1d09 2021-10-22 Fix link handling for nfpcapd
- 6dab941 2021-10-22 Fix link handling for nfpcapd
- 888695f 2021-10-22 Fix link handling for nfpcapd
- 335d592 2021-10-22 Update flow_record_short to new format
- 553063a 2021-09-19 Add tunnel flow handling (IPIP, GRE etc.)
- b06010b 2021-09-12 Update metric to rate and not counters
- 59530e4 2021-09-04 Add pppoe proto decoding for nfpcapd. Add tunnel flows in output
- 2f2f90e 2021-08-28 Update metrics for multiple exporters on collector
- f15f24c 2021-08-27 Revert #304 - does not work
- ea1958c 2021-08-27 Fix compile flags #304
- a7b7590 2021-08-27 Update sfcapd and nfpcapd with metric export
- 8408f49 2021-08-25 Update metric handling - no more diffing
- 896a604 2021-08-24 Update metric code
- 4e80f8e 2021-08-24 Enable metric export for v5/v9/ipfix
- 1f8e469 2021-08-24 Add POC for metric export
- 3c3d044 2021-08-12 Add more fields in colloctor raw output.
- b8f3865 2021-08-01 Add NAT elements in IPFIX
- cbb4c13 2021-07-31 Add NAT event record support for IPFIX: #298. Fix man page: #301
- 5850f57 2021-07-16 Fix issue #296 - broken json format with option -q
- 506330e 2021-07-10 Add bverbose option. Fix minor raw output bugs
- 81b3f12 2021-07-10 Reduce memory footprint. Fix nfreplay
- 87fb3ba 2021-07-06 Fix dns decoding
- 74e495e 2021-07-04 Improve nfreader/writer threads
- 4871d29 2021-07-04 Fix memory leaks while rotating files
- 1fecb54 2021-07-03 Merge pull request #295 from piorek94/sfcapd_nfcapd_similarity
- 202da1e 2021-07-03 Merge branch 'unicorn' into sfcapd_nfcapd_similarity
- 3303fb6 2021-07-03 Complete ja3 hash processing
- d5d6d7a 2021-06-29 keep code symiliarity (as max as possible) between nfcapd and sfcapd
- 5bf9473 2021-06-29 Add ipfix engine type/id tags
- 390bdd4 2021-06-25 Fixed json msec formating
- 1f61277 2021-06-25 Fix json msec formating - #294
- 8ee9de8 2021-06-25 Fix -t time window
- 6f06ea2 2021-06-25 Fix broken time window
- 19ddf1b 2021-06-20 Add ja3 code
- 0472408 2021-06-13 Fix Debian odd select handling
- 9440e4c 2021-06-10 Fix output of nbar ID/name
- b66aea9 2021-06-04 Update pidfile check
- a0938f0 2021-05-31 Change to new stat_record
- b72f644 2021-05-31 Fixed broken bps, pps in pipe and csv output
- bec6786 2021-05-30 Fix 'make check' and pid file handling
- 67efa0e 2021-05-30 Add missing new line in pipe output format
- ef739d8 2021-05-30 Fix debug(devel) output, in collector verbose mode
- 3b9731a 2021-05-30 Fix typos and complete man pages
- bbd3408 2021-05-30 Remove -T consistent in nfcapd, sfcapd and nfpcapd
- 47595c7 2021-05-30 Remove -w in sfcapd to be consistent
- b9664db 2021-05-24 Update README.md
- 5dc8ec9 2021-05-24 Updated man pages
- 62f37d4 2021-05-23 Update Readme
- d2d39cc 2021-05-23 Update Readme
- 6558007 2021-05-23 Update Readme
- 1c6755b 2021-05-23 Update Readme
- 37157b3 2021-05-23 Update Readme
- a36d1e3 2021-05-23 Update Readme
- 30f07a4 2021-05-23 Update Readme
- c6fae55 2021-05-23 Status 20210523
- adefae0 2021-05-19 Silence short packet logs due to small snaplen. #221
- 357385b 2021-05-17 Status 20210517
- c6724e6 2021-05-17 Status 20210517
- df8c300 2021-05-12 Fix nftest for patch #289
- 8e192df 2021-05-12 Merge pull request #290 from piorek94/sflow_new_structures
- a8a2ac3 2021-05-12 Merge pull request #289 from piorek94/flags_with_tcp_block
- 4620ded 2021-05-12 Merge pull request #288 from piorek94/icmp_error_msg
- d2eff25 2021-05-11 sflow: add structures for delay,queue depth,egress queue,entities
- 71195cd 2021-05-11 imply flags with a proto TCP block
- 713633f 2021-05-11 icmp code/type error message code compatibility
- dd47446 2021-05-08 Cleanup some code and files
- e6d790b 2021-05-07 Status 20210507
- 3e87069 2021-05-06 (tag: v1.6.23) Release 1.6.23
- ffb2599 2021-05-04 Status 20210504
- b29f927 2021-05-03 Status 20210503
- d5dae03 2021-05-02 Status 20210502
- 8b7db62 2021-05-02 Status 20210502
- 121e80d 2021-04-30 Status 20210430
- 1f15c2a 2021-04-30 Status 20210430
- 7f995c2 2021-04-28 Fix potential FreeNode without valid Node in nfpcapd
- aacb652 2021-04-23 Add all non TCP/UDP IP protocols as streams in nfpcapd
- 2c8921c 2021-04-22 Unwrap MPLS in nfpcad. Handle ESP in nfpcapd
- ab0d4f9 2021-04-18 Status 20210418
- b7dfb37 2021-04-17 Status 20210417
- 0ed3859 2021-04-10 Change spin lock to native C11 lock
- 250c1ef 2021-04-10 Cleanup code for issue #283
- 6613662 2021-04-10 status 2021-04-10
- 28ad878 2021-04-09 Add mpls unwrap in sflow code
- 66df862 2021-04-06 Merge pull request #282 from orbea/bin
- 44b6854 2021-03-27 bin: Use the libtool archives to link.
- 7850541 2021-03-13 Merge pull request #277 from piorek94/sflow_q_in_q
- 6a11a7d 2021-03-13 Update rbtree. Fix potential nfpcapd deadlock
- 39f9515 2021-03-12 enable sflow q-in-q, fix ipv6 header skip
- 1c72021 2021-03-06 Add packet capture buffer size to nfpcapd
- 26c96e4 2021-03-06 state 20210306
- b00603c 2021-02-20 Merge pull request #267 from franciosi/patch-1
- f134b16 2021-02-20 Fix #271 - endless loop of nfexpire, if it does not find files
- f2d3dbc 2021-02-20 Fix sflow code extended field parsing. #262 and #273
- 97ffcfe 2021-02-07 Status 20210207
- 385edef 2021-01-31 State 20210131
- 0b8d26f 2021-01-30 Fix yaf decoding error. Zero out tcp flags for non TCP flows
- 9f9cb7c 2021-01-30 State 20210130
- 657126f 2021-01-18 State 20210118
- 5095232 2021-01-17 Fix sflow compile errors
- 34456d4 2021-01-17 Make -Tall the default for nfcapd to collect extensions
- b0c7a5e 2021-01-17 Add flow end reason element 136
- d6aeca9 2021-01-16 Add biFlow direction element 239
- 4465e4c 2021-01-16 Add reverse element enterprise ID 29305 for counter values
- 0d515db 2021-01-12 Update README.md
- bcebbe3 2020-12-22 Fix typos
- a1926a2 2020-12-22 code cleanup and boundary checks in option template processing
- 19416dc 2020-12-21 Implement element 160 (SystemInitTime) in option template. Issue #260
- 621c87c 2020-12-19 Fix minor compile issues
- 95d0984 2020-12-19 Fix compile/platform issues
- 3be22d3 2020-12-19 Fix compile/platform issues
- 5efd271 2020-12-19 status 20201219
- b88a077 2020-12-19 Add Element 160 (SystemInitTime) in flow record used by Huawei
- 6a78678 2020-12-05 Fix print plain numbers #263
- 8e4964a 2020-12-05 Fix path handling for -l <dir>
- 0cb13df 2020-12-01 State 20201201
- 21922d4 2020-11-22 Snapshot 20201122
- e8b30c3 2020-11-21 (tag: v1.6.22) Release 1.6.22
- 9b59929 2020-10-24 20201024
- d7a820a 2020-10-19 cleanup
- 9b32c31 2020-10-19 Fix nfreplay v5 time shift bug
- 0b11531 2020-10-17 code cleanup
- 353d6ff 2020-10-17 Fix IPv4/IPv6 statistics representation #252
- 4ce9edd 2020-10-17 Add element 139 for ICMP type/code in IPv6. #250
- b05764e 2020-10-17 Fix syntax error 'flags AS' as 'AS' is a reserved word. #255
- 7b2d510 2020-10-17 Merge pull request #256 from piorek94/new_comparators
- 3b300ed 2020-10-14 add support for >=, <= comparators
- ee87595 2020-09-21 State 20200921
- 81f80a5 2020-09-12 Cleanup nip/xip filter syntax. Add filter syntax 'nip in [ <iplist>]'. Request #246
- 93bb565 2020-09-03 Add nfversion to nfpcapd
- 80b9cbb 2020-08-31 Merge pull request #243 from mildis/master
- a766080 2020-08-31 Add collected netflow/sflow version in nfdump record. Request #242
- 994cc18 2020-08-31 Fix GuessDir bug - issue #215
- a95906f 2020-08-25 add option N to read multiple flows from file
- f5ae2b8 2020-08-08 Re-address issue #231 - remove strict rule rfc 7011
- 49a6469 2020-08-02 (tag: v1.6.21) Release 1.6.21
- 7725402 2020-08-02 Address issue #236 Add token 'dir' equivalent to 'flowdir' in filter syntax
- eae6e42 2020-08-02 Address issue #159. Implement rfc 7011 and include sender UDP port into unique template identification
- 7a78d34 2020-07-26 State 20200726
- 707e849 2020-07-25 Fix #230 - Avoid use_syslog name clash on certain OS
- e7af79f 2020-07-25 Fixed #243
- 801c3c5 2020-07-25 Add optional print direction ascending or descending to -s and -O output. Request #235
- e306baf 2020-07-18 Fix #231 - sampling detection
- 6aa5929 2020-07-12 2020711
- 31cd138 2020-06-26 20200626
- 50df654 2020-06-20 Honor -n flag when printing sorted flow cache
- a378d83 2020-06-20 Fix uninitialized variable printPlain
- e490115 2020-06-20 Fix bug #223
- 63fc4e2 2020-05-23 Merge pull request #222 from irino/nfdump-fix-csv-title
- c0ea62b 2020-05-21 Merge pull request #219 from yuriskinfo/man_fixes
- 5f0bd07 2020-05-17 Snapshot 202017
- 64d2bbd 2020-05-04 Add \n in csv prolog for separating title and first data.
- b78e0f5 2020-04-24 Fixed some typos, missing/extra commas, restructured few ambiguous sentences for better readability
- 8d9d528 2020-04-22 Restore old behaviour unlimiting output flows unless in -s stat
- ff8e0f2 2020-04-18 Fix ft2nfdump nexthop fields/extension map size bug
- 3bc1f07 2020-04-13 Unify all timestamps to msec
- 9c4ad8b 2020-04-12 Merge pull request #216 from 2igosha/master
- e25cfdf 2020-04-12 Sync GuessDir from master
- 3a473dc 2020-04-12 Fix GuessDir bug - issue #215 in flow exporter
- 7fb4110 2020-04-12 Fix GuessDir bug - issue #215
- e3d84db 2020-04-08 Allow processing of DLT_RAW links (i.e. for a tun VPN)
- 45a502d 2020-04-05 add output parameter struct
- bfe19f9 2020-04-05 internal: put output parameters in a single struct
- 7eccd20 2020-03-29 (tag: v1.6.20) Release 1.6.20
- adb6b7b 2020-03-29 More cleanup on plain number printing
- c65956b 2020-03-28 Fix profiler filer but
- 1671401 2020-03-28 Fix plain numbers bug #213
- d993301 2020-03-28 Fix plain numbers bug #213
- 79a2c44 2020-03-22 Introduce file layout V2
- 8a376ba 2020-02-29 Merge pull request #208 from bernhardschmidt/948039-crossbuild
- b889a6b 2020-02-29 Merge pull request #207 from bernhardschmidt/909437-typo
- 754b545 2020-02-25 Fix crossbuilding
- 138eb60 2020-02-25 Fix typo in nfdump.1
- 9c6137d 2020-02-23 Delete extra file
- 998c385 2020-02-23 Add V3 extension definition. Generic V2 file types
- a0fc169 2020-02-23 Update Readme for UNICORN branch
- cb5f761 2020-02-22 Fix README
- f86fbfc 2020-02-22 (tag: v1.6.19) Move version to nfdump-1.6.19
- 1de8e38 2020-02-16 Add Push for new sgt tag
- dce3e36 2020-02-16 Modify heuristic for bidir flows #59
- 3714bc9 2020-02-16 Add Source security group tag (SGT 34000) issue #192
- ae8ded0 2020-02-16 Remove debugging printf in sflow_process
- df447a5 2020-02-16 Cleanup commented code
- b394ff5 2020-02-16 Fix minror bug in nfnet
- a254a7c 2020-02-14 More spring cleaning
- 60efbf3 2020-02-09 Cleanup unused nffile records. Add nffileV2.h
- 10d9e73 2020-02-02 Fix various compiler warnings
- b0135e0 2020-02-01 Fix make check
- a7ed5b8 2020-02-01 Set verbose logging off by default in non daemon mode
- 4825c5e 2020-02-01 Remove external global vars
- f7e9681 2020-01-31 Remove old legacy records
- 6bcf930 2020-01-29 Major code rearrangements
- d28bfb7 2020-01-26 More code cleanup
- 8740d96 2020-01-26 Cleanup nftest
- d5e2b76 2020-01-26 Cleanup header code
- 6e46597 2020-01-18 Merge pull request #201 from spenceation/add-egress-vrfid-doc
- a076571 2020-01-15 Add missing NF_N_EGRESS_VRFID documentation
- a055ba8 2020-01-11 Fix bug for IPv6 network cidr representation in raw and cvs output mode
- b3c1362 2019-12-04 Remove unused old code. Fix for #197
- 0428577 2019-12-03 Fix bidir export issues. Cleanup code. Fix for #195
- 0c138be 2019-11-17 Fix typo - Enable small time intervals < 60s. - #185
- 7d5234b 2019-11-17 Enable small time intervals < 300s. - #185
- 68fea3f 2019-11-09 Fix gcc compile issue
- f579c73 2019-11-09 merge
- 406a210 2019-11-09 Fix minor nfpcapd issues
- c2a976e 2019-11-08 Fix corrupt file handling #193
- c5db2c7 2019-11-03 Fix protocol width field
- b0b99b5 2019-11-03 Fix protocol width field
- a67b75b 2019-11-03 More code cleanup. Move code to dedicated files
- 536671d 2019-10-28 Fix print_epilog
- 3360ca3 2019-10-28 Cleanup
- ff634c2 2019-10-28 Update README
- 9994f76 2019-10-28 Fix issue #190. Add compile time option for JunOS.
- 07350f2 2019-10-28 Fix bug #189 - valid json output - Restructure code for output into separate files
- 955a662 2019-09-01 Cleanup configure.ac
- 7a208e6 2019-08-31 Cleanup old compat15 comments
- a26e360 2019-08-31 Add c11.m4 macro
- 41dae12 2019-08-31 Fix various c11 compile issues. BSD/Linux gcc/clang
- 0633e9a 2019-08-24 Fix sflow issue with Arista switches
- ecf9b12 2019-08-24 Add vlan tags dot1qVlanId, 243, 254 - #182
- 003a592 2019-08-19 Fix ft2nfdump next hop and ip router fields
- 772cbd5 2019-08-17 Work in progress towards v1.7 Start cleanup of old and ugly code. More cleanup will follow Rewrite sampler handling code. Move definitions to correct header files. Move to C11 as global standard for nfdump. Move to -O3 as compile option for nfdump
- e9cbaf4 2019-08-16 Cleanup and fix IPv6 network display in war records
- bef82c0 2019-08-14 (tag: v1.6.18) Fix output buffer size for lzo1x_decompress_safe. #180
- 3b6ee89 2019-08-14 Fix comple issues
- 7029f89 2019-08-13 Fix Readme
- 6469157 2019-08-07 Fix VerifyExtensionMap #179
- 74b68ec 2019-08-06 Fix compile errors #178
- 0dbf646 2019-08-05 Cleanup fixes
- e1126d5 2019-08-05 Replace depricated pcap_lookupdev call in nfpcapd
- 134c969 2019-08-05 Cleanup old code
- 4538818 2019-08-05 Merge pull request #167 from mwmix/master
- b64f2a6 2019-08-05 Move version to v1.6.18
- a8b460e 2019-08-05 Remove COMPAT15 code
- 76dfc7d 2019-08-05 Fix checks in InsertExtensionMap #177
- 7234bcf 2019-08-05 Add bound checks in AddExporterInfo
- 8d18888 2019-08-05 Add bound checks in AddSamplerInfo #176
- 859ea2c 2019-08-05 Add bound checks in AddExporterStat #174
- 7dbd3eb 2019-08-05 Fix use after free in ModifyCompressFile
- 7bd6d5b 2019-08-05 Fix off by 1 array. #173
- dfca80f 2019-08-05 Fix nfdump.1 man page. #175
- 0b45172 2019-07-31 Add record size sanity check also for nfprofile, nfanona and nfreplay
- 7b26ee9 2019-07-28 Change to safe lzo decompress function
- 226d10e 2019-07-28 Fix hbo_nfx.c:216_3 segfault. Update minilzo to v2.10
- 833c9bc 2019-07-28 Fix hbo_nffile_inline.c:85_1
- 98d8ba6 2019-07-28 Fix hbo_exporter.c:249_1 segfault
- d01083c 2019-07-28 nfpcapd cleanup
- 3b006ed 2019-07-27 Fix potential unsigned integer underflow
- 7c0d06a 2019-07-27 Rework nfpcapd and add it officially to the nfdump collection
- fd3d3db 2019-07-17 Add latency extension if dumping flowcache
- a19e18e 2019-07-15 Fix exporter struct inconsistancies. Coredump on ARM otherwise
- 7af869d 2019-07-02 Add ipfix element #150, #151 unix time start/end
- fb6790b 2019-06-20 Fixed typo with bgp6_next_hop
- 4262304 2019-06-02 Add empty m4 directory - keep autoconf happy
- 9641295 2019-06-02 Add empty m4 directory - keep autoconf happy
- 5325378 2019-06-02 Add empty m4 directory - keep autoconf happy
- 439b7e8 2019-06-02 Add empty m4 directory - keep autoconf happy