-
Notifications
You must be signed in to change notification settings - Fork 90
/
ChangeLog
1112 lines (591 loc) · 33.4 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
# Changelog
## v1.9 (2024-11-03)
### Other
* Merge pull request #115 from adulau/dependabot/github_actions/actions/upload-artifact-4.4.3. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 4.4.0 to 4.4.3
* Bump actions/upload-artifact from 4.4.0 to 4.4.3. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/50769540e7f4bd5e21e526ee35c689e35e0d6874...b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #113 from infokek/pcap-logger-original-timestamps. [Alexandre Dulaunoy]
Original PCAP timestamps instead of timeofday-generated
* Unused debug info removed. [infokek]
* Original pcap timestamps instead of timeofday-generated fix. [infokek]
* Merge pull request #114 from adulau/dependabot/github_actions/actions/upload-artifact-4.4.0. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 4.3.6 to 4.4.0
* Bump actions/upload-artifact from 4.3.6 to 4.4.0. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.4.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/834a144ee995460fba8ed112a2fc961b36a5ec5a...50769540e7f4bd5e21e526ee35c689e35e0d6874)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Merge pull request #112 from adulau/dependabot/github_actions/actions/upload-artifact-4.3.6. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 4.3.4 to 4.3.6
* Bump actions/upload-artifact from 4.3.4 to 4.3.6. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.4 to 4.3.6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/0b2256b8c012f0828dc542b3febcab082c67f72b...834a144ee995460fba8ed112a2fc961b36a5ec5a)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #108 from adulau/dependabot/github_actions/ossf/scorecard-action-2.4.0. [Alexandre Dulaunoy]
Bump ossf/scorecard-action from 2.3.3 to 2.4.0
* Bump ossf/scorecard-action from 2.3.3 to 2.4.0. [dependabot[bot]]
Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.3.3 to 2.4.0.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/dc50aa9510b46c811795eb24b2f1ba02a914e534...62b2cac7ed8198b15735ed49ab1e5cf35480ba46)
---
updated-dependencies:
- dependency-name: ossf/scorecard-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
* Merge pull request #111 from 1div0/ECH. [Alexandre Dulaunoy]
ECH
* Add ECH. [Peter Kovář]
* Add TLS Version 1.3 Handling. [Peter Kovář]
* Merge pull request #107 from adulau/dependabot/github_actions/actions/upload-artifact-4.3.4. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 4.3.3 to 4.3.4
* Bump actions/upload-artifact from 4.3.3 to 4.3.4. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.3.4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/65462800fd760344b1a7b4382951275a0abb4808...0b2256b8c012f0828dc542b3febcab082c67f72b)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #106 from adulau/dependabot/github_actions/ossf/scorecard-action-2.3.3. [Alexandre Dulaunoy]
Bump ossf/scorecard-action from 2.3.1 to 2.3.3
* Bump ossf/scorecard-action from 2.3.1 to 2.3.3. [dependabot[bot]]
Bumps [ossf/scorecard-action](https://github.com/ossf/scorecard-action) from 2.3.1 to 2.3.3.
- [Release notes](https://github.com/ossf/scorecard-action/releases)
- [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md)
- [Commits](https://github.com/ossf/scorecard-action/compare/0864cf19026789058feabb7e87baa5f140aac736...dc50aa9510b46c811795eb24b2f1ba02a914e534)
---
updated-dependencies:
- dependency-name: ossf/scorecard-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #104 from adulau/dependabot/github_actions/actions/upload-artifact-4.3.3. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 4.3.2 to 4.3.3
* Bump actions/upload-artifact from 4.3.2 to 4.3.3. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/1746f4ab65b179e0ea60a494b83293b640dd5bba...65462800fd760344b1a7b4382951275a0abb4808)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
* Merge pull request #102 from the-real-tokai/fix-fdatasync-osx. [Alexandre Dulaunoy]
Fix problematic fdatasync() call on macOS
* Fix problematic fdatasync() call on macOS. [Christian Rosentreter]
The fdatasync call generates a "implicit declaration of function 'fdatasync' is invalid in C99" warning when building for macOS (it's nowhere to be found in the system includes), but linking will eventually work fine because there is an unrelated syscall by the same name (different prototype), so it's not doing what it should. So lets not use it.
* Merge pull request #103 from adulau/dependabot/github_actions/actions/upload-artifact-4.3.2. [Alexandre Dulaunoy]
Bump actions/upload-artifact from 3.pre.node20 to 4.3.2
* Bump actions/upload-artifact from 3.pre.node20 to 4.3.2. [dependabot[bot]]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.pre.node20 to 4.3.2.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/97a0fba1372883ab732affbe8f94b823f91727db...1746f4ab65b179e0ea60a494b83293b640dd5bba)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
...
* Update README.md. [Alexandre Dulaunoy]
* Update README.md. [Alexandre Dulaunoy]
* Update README.md. [Alexandre Dulaunoy]
* Create scorecard.yml. [Alexandre Dulaunoy]
* Merge pull request #98 from adulau/dependabot/github_actions/github/codeql-action-3. [Alexandre Dulaunoy]
Bump github/codeql-action from 2 to 3
* Bump github/codeql-action from 2 to 3. [dependabot[bot]]
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v2...v3)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-major
...
* Merge pull request #92 from wllm-rbnt/dbg. [Alexandre Dulaunoy]
Set packet type for RAW PCAPs
* Merge branch 'adulau:master' into dbg. [wllm-rbnt]
* Set packet type for RAW PCAPs. [William Robinet]
* Merge pull request #93 from adulau/revert-88-raw-ip. [Alexandre Dulaunoy]
Revert "base: add support for "raw ip" captures"
* Revert "base: add support for "raw ip" captures" [Alexandre Dulaunoy]
* Merge pull request #88 from os12/raw-ip. [Alexandre Dulaunoy]
base: add support for "raw ip" captures
* Base: add support for "raw ip" captures. [Oleg Smolsky]
- there is no need to deal with L2 as it's not even there
* Merge pull request #91 from wllm-rbnt/dbg. [Alexandre Dulaunoy]
Implement compilation options
* Enable DEBUG flag differently. [William Robinet]
* Add compilation options to CMakeLists.txt. [William Robinet]
* Merge pull request #90 from adulau/dependabot/github_actions/actions/checkout-4. [Alexandre Dulaunoy]
Bump actions/checkout from 3 to 4
* Bump actions/checkout from 3 to 4. [dependabot[bot]]
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
* Merge pull request #86 from wllm-rbnt/sigs. [Alexandre Dulaunoy]
Connection tracker live list & purge
* Doc update. [William Robinet]
* Minor lint. [William Robinet]
* Add basic build script. [William Robinet]
* Add handlers for signals USR1 & 2. [William Robinet]
* Merge pull request #85 from wllm-rbnt/fixes. [Alexandre Dulaunoy]
Various fixes
* Remove unnecessary parens in return statements. [William Robinet]
* Initialize variables. [William Robinet]
* Remove unused variables. [William Robinet]
* Fix warning unused for unused variable & error handling. [William Robinet]
* Add missing return statements. [William Robinet]
* Merge pull request #84 from robert-scheck/cmake. [Alexandre Dulaunoy]
Use correct cmake GNUInstallDirs variables with their built-in defaults
* Use correct cmake GNUInstallDirs variables with their built-in defaults. [Robert Scheck]
GNUInstallDirs.cmake expects that at least one language is enabled before
including GNUInstallDirs.
See also: https://cmake.org/cmake/help/latest/command/install.html
* Merge pull request #83 from wllm-rbnt/lint. [Alexandre Dulaunoy]
Global code linting + various fixes
* Merge branch 'master' into lint. [wllm-rbnt]
* Fix README layout. [William Robinet]
* Rework Docker files & scripts. [William Robinet]
* Increase version in CMakeLists.txt. [William Robinet]
* Fix command in README.md. [William Robinet]
* Lint ALL the things ! [William Robinet]
* Remove old, unused files. [William Robinet]
* Convert remaining old-style function definitions. [William Robinet]
* [clang-format] Do NOT sort include directives. [William Robinet]
* Convert old-style function definitions. [William Robinet]
* Fix null analyzer instantiation. [William Robinet]
* Add clan-format config. [William Robinet]
## v1.8 (2023-08-14)
### Changes
* [doc/ref] version updated. [Alexandre Dulaunoy]
* [doc] version v1.8 released. [Alexandre Dulaunoy]
* [doc] typo fixed. [Alexandre Dulaunoy]
* [doc] v1.7 released + new changelog. [Alexandre Dulaunoy]
### Other
* Merge pull request #82 from wllm-rbnt/cmake. [Alexandre Dulaunoy]
cmake
* Add date to version output. [William Robinet]
* Add comment for MacOS. [William Robinet]
* Make it work on OpenBSD and FreeBSD. [William Robinet]
* Add install target for man page. [William Robinet]
* Set binary install target, update doc. [William Robinet]
* Update README & fix version. [William Robinet]
* Update gh workflows. [William Robinet]
* Print meaningful error messages. [William Robinet]
* Lower cmake version requirement (Ubuntu Focal) [William Robinet]
* Add FindJSONC.cmake module + fix CMakeLists.txt. [William Robinet]
* Remove autotools files. [William Robinet]
* Initial cmake setup. [William Robinet]
* Merge pull request #80 from wllm-rbnt/ts. [Alexandre Dulaunoy]
Add -z option for printing timestamps in front of TCP headers
* Add -z option for printing timestamps in front of TCP headers. [William Robinet]
* Merge pull request #79 from robert-scheck/dependabot. [Alexandre Dulaunoy]
Add dependabot configuration
* Add dependabot configuration. [Robert Scheck]
* Merge pull request #77 from robert-scheck/macos. [Alexandre Dulaunoy]
Add macOS to CI builds
* Add macOS to CI builds. [Robert Scheck]
* Merge pull request #76 from robert-scheck/workflow-compiler. [Alexandre Dulaunoy]
Switch to gcc-12 (default: gcc-11), clang-14 is newest in ubuntu-latest
* Switch to gcc-12 (default: gcc-11), clang-14 is newest in ubuntu-latest. [Robert Scheck]
## v1.7 (2023-04-09)
### Changes
* [doc] updated man page. [Alexandre Dulaunoy]
* [CREDITS] new contributor added. [Alexandre Dulaunoy]
* [doc] Add distribution including this version of ssldump. [Alexandre Dulaunoy]
* [doc] v1.6 released. [Alexandre Dulaunoy]
* [CREDITS] updated for version 1.6. [Alexandre Dulaunoy]
* [doc] v1.6 release included. [Alexandre Dulaunoy]
### Other
* Merge branch 'lord8266-tls1.3' [Alexandre Dulaunoy]
* Fix comment. [Vishwa Pravin]
* Remove irrelevant log entries, fix session ticket for tls1.2. [Vishwa Pravin]
* Adding tls1.3 decryption support. [Vishwa Pravin]
* Merge pull request #73 from robert-scheck/fedora. [Alexandre Dulaunoy]
Update Fedora link, mention RHEL/derivatives
* Update Fedora link, mention RHEL/derivatives. [Robert Scheck]
* Merge pull request #74 from robert-scheck/centos. [Alexandre Dulaunoy]
Fix typo, mention RHEL derivative
* Fix typo, mention RHEL derivative. [Robert Scheck]
* Merge pull request #69 from robert-scheck/ci-openssl. [Alexandre Dulaunoy]
* CI: libtls-dev -> libssl-dev. [Robert Scheck]
* Merge pull request #67 from robert-scheck/codeql-analysis. [Alexandre Dulaunoy]
Add CodeQL analysis
* Add CodeQL analysis. [Robert Scheck]
* Merge pull request #68 from robert-scheck/wrong-type. [Alexandre Dulaunoy]
For Y2K38 on 32 bit systems `time_t tv_sec` can be `long long`
* For Y2K38 on 32 bit systems `time_t tv_sec` can be `long long` [Robert Scheck]
* Merge pull request #66 from robert-scheck/ci-matrix. [Alexandre Dulaunoy]
Improve CI builds using matrix strategy
* Improve CI builds using matrix strategy. [Robert Scheck]
## v1.6 (2023-02-03)
### Changes
* [doc] v1.5 released. [Alexandre Dulaunoy]
* [doc] ChangeLog updated with release v1.5. [Alexandre Dulaunoy]
### Other
* Merge pull request #63 from wllm-rbnt/dev. [Alexandre Dulaunoy]
Fix missing port # in pcap files
* Fix missing port # in pcap files. [William Robinet]
* Merge pull request #61 from lord8266/aead. [Alexandre Dulaunoy]
Print MAC keys only for non AEAD ciphers
* Print MAC keys only for non AEAD ciphers. [Vishwa Pravin]
## v1.5 (2022-05-26)
### Changes
* [doc] An example use-case of JA3. [Alexandre Dulaunoy]
* [doc] Changelog updated. [Alexandre Dulaunoy]
### Other
* Merge pull request #60 from lord8266/max. [Alexandre Dulaunoy]
Add parentheses around MAX and MIN
* Add parentheses around MAX and MIN. [Vishwa Pravin]
* Merge pull request #58 from wllm-rbnt/dev. [Alexandre Dulaunoy]
Add support for pcap output to FIFO
* Add support for pcap output to FIFO. [William Robinet]
## v1.4 (2021-04-13)
### Changes
* [doc] v1.4 released. [Alexandre Dulaunoy]
* [doc] v1.4 released. [Alexandre Dulaunoy]
* [doc] cleanup README. [Alexandre Dulaunoy]
* [doc] v1.3 released. [Alexandre Dulaunoy]
### Other
* Merge pull request #54 from wllm-rbnt/dev. [Alexandre Dulaunoy]
Fix release version
* Fix release version. [William Robinet]
* Merge pull request #53 from wllm-rbnt/dev. [Alexandre Dulaunoy]
Add support for IPv6 traffic dump
* Add support for IPv6 traffic dump. [William Robinet]
* Merge pull request #51 from wllm-rbnt/dev. [Alexandre Dulaunoy]
dev 1.4 beta
* Fix ja3(s) length of strings used in MD5 computation + update MD5 functions. [William Robinet]
* Extract traffic mirroring commands from docker run scripts. [William Robinet]
* Add support for ja3 & ja3s. [William Robinet]
* Fix snprintf warning. [William Robinet]
* Fix file ownership in Dockerfiles. [William Robinet]
* Docker files initial import. [William Robinet]
* Bump version to 1.4b. [William Robinet]
## v1.3 (2021-02-02)
### Changes
* [doc] prepare for release v1.3. [Alexandre Dulaunoy]
* [copyright] added additional copyright for all new contribution. [Alexandre Dulaunoy]
ssldump is collectively owned by all the contributors. There is no
change to the original license.
* [doc] man page fixed for copyright notice + README updated. [Alexandre Dulaunoy]
* [doc] William has a real name. [Alexandre Dulaunoy]
* [credits] updated. [Alexandre Dulaunoy]
* [doc] v1.2 released. [Alexandre Dulaunoy]
* [doc] v1.2 released. [Alexandre Dulaunoy]
### Other
* Merge pull request #49 from wllm-rbnt/leaks. [Alexandre Dulaunoy]
Adjust copyright info
* Adjust copyright info. [William Robinet]
* Merge branch 'wllm-rbnt-leaks' [Alexandre Dulaunoy]
* Fix bug introduced in 64effa3bb93c3a219fb0afd868c5bc2609093ced. [William Robinet]
* Merge remote-tracking branch 'upstream/master' into leaks. [William Robinet]
* Merge pull request #46 from wllm-rbnt/leaks. [Alexandre Dulaunoy]
Leaks
* Avoid leak in TCP segment reassembly code. [William Robinet]
* Clean remaining json object in case of error. [William Robinet]
* Abort properly on decode error. [William Robinet]
* Avoid client session_id related leak. [William Robinet]
* Avoid server_random related leak. [William Robinet]
* Avoid client_random related leak. [William Robinet]
* Check ssl_decode_enum() return code correctly. [William Robinet]
* Exit process_tcp_packet() in case TCP header is incomplete. [William Robinet]
* Check timestamp_diff return code correctly. [William Robinet]
* Cleanup before exit on error. [William Robinet]
* Fix for crash if length of captured frame is less than Ethernet header size. [William Robinet]
* Check packet size before looking at IP header. [William Robinet]
* Check return code after string extraction. [William Robinet]
* Limit length during server name decoding. [William Robinet]
* Bump version to 1.3 in configure.ac. [William Robinet]
* Decode ClientHello v2 properly. [William Robinet]
* Output error to stderr. [William Robinet]
* Add proper return value. [William Robinet]
* Avoid leak by freeing SSL decoding context properly. [William Robinet]
* Close everything properly in case of SIGINT. [William Robinet]
* Fix leak in associative array implementation. [William Robinet]
* Merge branch 'wllm-rbnt-json' [Alexandre Dulaunoy]
* Avoid some memory leaks. [William Robinet]
* Fix time struct related warning (2) [William Robinet]
* Fix time struct related warning. [William Robinet]
* Add checks for libjson-c to configure.ac. [William Robinet]
* Update CI workflow descriptions (2) [William Robinet]
* Update CI workflow descriptions. [William Robinet]
* First import of the JSON output code (https://github.com/adulau/ssldump/issues/41) [William Robinet]
* Do not print information message when no connection is cleaned at shutdown. [William Robinet]
* Fix memory leak in ssl_process_server_session_id() [William Robinet]
* Close global pcap struct properly in case of SIGINT. [William Robinet]
* Change binary installation directory to /usr/sbin. [William Robinet]
* Move unused files away. [William Robinet]
* Fix README.md - wrong package name for rpm based distros. [William Robinet]
* Merge pull request #42 from wllm-rbnt/extensions. [Alexandre Dulaunoy]
Add missing extension names
* Add missing extension names. [William Robinet]
* Merge pull request #39 from wllm-rbnt/save2pcap. [Alexandre Dulaunoy]
Rework of https://github.com/adulau/ssldump/pull/26 after build system changes
* Mention https://github.com/droe/sslsplit in README.md, fix man page. [William Robinet]
* Add libnet1-dev deps to CI and README.md. [William Robinet]
* Merge remote-tracking branch 'upstream/master' into save2pcap. [William Robinet]
* Merge pull request #38 from wllm-rbnt/warnings. [Alexandre Dulaunoy]
Code cleanup
* Add missing Makefile.am. [William Robinet]
* Rework https://github.com/adulau/ssldump/pull/26 after build system changes. [William Robinet]
* Add save decrypted datato pcap. first alpha version. [Aleksey Ryabkov]
* Fix for use of deprecated OpenSSL HMAC functions. [William Robinet]
* Fix for type casting related warnings. [William Robinet]
* Add missing function prototype. [William Robinet]
* Fix for "warning: operator << has lower precedence than -" [William Robinet]
* Remove definitions of unused variables. [William Robinet]
* Fix for "warning: promoted type int of K&R function parameter is not compatible with the parameter type ..." [William Robinet]
* Fix for "warning: using the result of an assignment as a condition without parentheses" [William Robinet]
* Merge pull request #37 from wllm-rbnt/fixes. [Alexandre Dulaunoy]
Fixes
* Link README to README.md. [William Robinet]
* Fix for uninitialized variables and possible overflow. [William Robinet]
* Remove unused RCSSTRING variable globally. [William Robinet]
* Reorganize README files. [William Robinet]
* Add line return after "certificate_types" in output, see the problem in https://github.com/adulau/ssldump/issues/36#issuecomment-702586335. [William Robinet]
## v1.2 (2020-09-22)
### Changes
* [cleanup] file cleanup (tab/ws mixed) [Alexandre Dulaunoy]
* [doc] workflow badge added. [Alexandre Dulaunoy]
* [workflow] config updated. [Alexandre Dulaunoy]
* [workflow] pcap. [Alexandre Dulaunoy]
* [workflow] add required packages. [Alexandre Dulaunoy]
* [doc] clarification about ssldump repository + release v1.1. [Alexandre Dulaunoy]
* [doc] release v1.1 - ChangeLog updated. [Alexandre Dulaunoy]
### Other
* Merge pull request #34 from wllm-rbnt/build-sys. [Alexandre Dulaunoy]
Build system updates
* Fix long line in README.md. [William Robinet]
* Update README.md with ./configure examples. [William Robinet]
* Update README.md with ./configure options. [William Robinet]
* Clean debug functions, remove duplicates. [William Robinet]
* Define DEBUG when using --enable-debug. [William Robinet]
* Add optional features to ./configure (ASAN, debug, optimization) [William Robinet]
* Reenable OpenSSL code compilation. [William Robinet]
* Update .gitignore, rearrange CI workflows variable definition. [William Robinet]
* Remove -g from default CFLAGS and check for Clang explicitly. [William Robinet]
* Remove deprecated define. [William Robinet]
* Reorder checks in configure.ac. [William Robinet]
* Prepare ASAN build. [William Robinet]
* Force use of GCC in GCC CI. [William Robinet]
* Add Clang CI. [William Robinet]
* Merge pull request #35 from mattslot/master. [Alexandre Dulaunoy]
Add renegotiation_info extension
* Add renegotiation_info extension. [Matt Slot]
* Merge pull request #33 from wllm-rbnt/oob-reads. [Alexandre Dulaunoy]
Fix multiple segfaults on out-of-bounds read access
* Fix multiple segfault by OOB read because of wrong format string specifier. [William Robinet]
* Fix segfault by OOB read on malformed packets (2) [William Robinet]
* Fix segfault by OOB read on malformed packets. [William Robinet]
* Merge pull request #31 from wllm-rbnt/autoconf2020. [Alexandre Dulaunoy]
Autoconf2020
* Fix deprecation warning from libcap 1.9.1. [William Robinet]
* Make FreeBSD (12.1) happy. [William Robinet]
* Update CI workflow. [William Robinet]
* Apply Replace-direct-struct-access-patterns-with-OpenSSL-1.1-ge.patch from Debian pkg. [William Robinet]
* Update readme. [William Robinet]
* Fix readme. [William Robinet]
* Improve lib detection and .gitignore. [William Robinet]
* Remove generated file. [William Robinet]
* Add man page to Makefile.am. [William Robinet]
* Fix warning about type of arguments of pcap_handler. [William Robinet]
* Fix warning about signal() arguments type. [William Robinet]
* Fix build warnings for missing prototypes. [William Robinet]
* Add build deps to readme. [William Robinet]
* Fix readme. [William Robinet]
* Autoconf setup rewritten. [William Robinet]
* Set theme jekyll-theme-minimal. [Alexandre Dulaunoy]
* Merge pull request #27 from microolap-technologies/resumed_sessions. [Alexandre Dulaunoy]
add support to decrypt resumed sessions
* Add support to decrypt resumed sessions. [Aleksey Ryabkov]
* First test workflow. [Alexandre Dulaunoy]
* Merge pull request #25 from microolap-technologies/sni_2_srv_name. [Alexandre Dulaunoy]
use sni in server_name
* Use sni in server_name. [Aleksey Ryabkov]
## v1.1 (2019-12-28)
### Changes
* [doc] Changelog reflecting v1.0 release. [Alexandre Dulaunoy]
### Other
* Merge pull request #24 from mattslot/master. [Alexandre Dulaunoy]
Explicit parameter types for static prototypes
* Explicit parameter types for static prototypes. [Matt Slot]
* Merge pull request #22 from EaseTheWorld/handshake. [Alexandre Dulaunoy]
Handle weird 3-way handshake(syn&ack -> syn -> ack)
* Handle weird 3-way handshake(syn&ack -> syn -> ack) I have pcaps from Cisco2960 span port and found some tcp handshake has weird order 3-way handshake. It seems first packet order between sessions is not guaranted for cisco span. maybe. Current state transition is INIT -- syn --> SYN1 -- syn&ack --> SYN2 -- ack --> ESTABLISHED New state transition starts with SYN1 or SYN2 and adds(revive actually) STATE_ACK to handle both cases. case1 : INIT -- syn --> SYN1 -- syn&ack -->ACK -- ack --> ESTABLISHED (normal) case2 : INIT -- syn&ack --> SYN2 -- syn -->ACK -- ack --> ESTABLISHED (weird) [EaseTheWorld]
## v1.0 (2019-05-26)
### Changes
* [build] v1.0 released. [Alexandre Dulaunoy]
* [changelog] v1.0 released. [Alexandre Dulaunoy]
* [build] gitchangelogrc configuration added. [Alexandre Dulaunoy]
### Other
* Merge pull request #21 from qha/repair-make-targets. [Alexandre Dulaunoy]
Repair make targets and ssl/ssldecode.c, bump version
* Rerun autoconf. [Ulrik Haugen]
* Bump version. [Ulrik Haugen]
* Repair ssl_key_log_file handling. [Ulrik Haugen]
Set ssl_key_log_file to null in ssl_decode_ctx_create if no
file name was supplied.
Only seek ssl_key_log_file in ssl_read_key_log_file if it
is non null.
Repair order of fseek parameters.
* Take project name and version from configure define. [Ulrik Haugen]
... in print_version.
* Enable compiling without std c99 when OPENSSL is defined. [Ulrik Haugen]
* Repair spelling in comments. [Ulrik Haugen]
* Remove presumably extraneous files. [Ulrik Haugen]
* Remove extraneous files. [Ulrik Haugen]
* Add .gitignore. [Ulrik Haugen]
* Make install target install doc files. [Ulrik Haugen]
* Repair installdir variable names. [Ulrik Haugen]
* Repair dist target. [Ulrik Haugen]
Mark phony targets as such.
Cease use of unobtainable version-check.pl.
Take version from configure substituted variable.
Adjust dist archive location.
Prune more backup files.
* Whitespace. [Ulrik Haugen]
* Set package name in configure.in, move version there. [Ulrik Haugen]
* Merge pull request #19 from 1div0/master. [Alexandre Dulaunoy]
GREASE
* GREASE. [Peter Kovář]
* Merge pull request #18 from mathewmarcus/dh_aes_gcm_support. [Alexandre Dulaunoy]
Dh aes gcm support
* Use macro to check if cipher is AEAD. [mathewmarcus]
* Update man page with -l sslkeylogfile option. [mathewmarcus]
* Updated relevant ciphersuites with GCM enc. [mathewmarcus]
* Added fix for AES256 GCM decryption. [mathewmarcus]
* Added case insensitive string comparison macro. [mathewmarcus]
* Added support for AES GCM decryption. [mathewmarcus]
* Use sslkeylogfile to get MS if possible. [mathewmarcus]
* Added function to extract MS from sslkeylogfile. [mathewmarcus]
* Added GCM specific ciphersuite info. [mathewmarcus]
* Added sslkeylogfile pointer to decode ctx. [mathewmarcus]
* Fix decoding and printing of DiffieHellman Client params. [mathewmarcus]
* Add l option for SSLKEYLOGFILE. [mathewmarcus]
* Merge pull request #17 from mathewmarcus/fix_extension_bug. [Alexandre Dulaunoy]
correctly handle case where server hello does not request extension s…
* Improve syntax. [mathewmarcus]
* Correctly handle case where server hello does not request extension specified by client. [mathewmarcus]
* Merge pull request #16 from mathewmarcus/tls_extensions. [Alexandre Dulaunoy]
Tls extensions
* Code cleanup. [mathewmarcus]
* Added support for SNI. [mathewmarcus]
* Added support for encrypt-then-mac. [mathewmarcus]
* Finished support for extended master secret. [mathewmarcus]
* Calculate session hash. [mathewmarcus]
* Added struct to store extensions. [mathewmarcus]
* Added struct to store extensions. [mathewmarcus]
* Revert "moved struct ssl_decoder_ definition into header file because we need it in ssl.enums.c" [Mathew Marcus]
This reverts commit 193c6001086920c0623593aba373f948aa275f8d.
* Moved struct ssl_decoder_ definition into header file because we need it in ssl.enums.c. [mathewmarcus]
* Added handler for extended master secret extension. [mathewmarcus]
* Rename functions. [mathewmarcus]
* Record handshake messages for session hash. [Mathew Marcus]
* Include extensions in output. [mathewmarcus]
* Merge pull request #15 from Whissi/update-ciphers. [Alexandre Dulaunoy]
Update ciphers
* Adjust cipher suite formation. [Thomas Deutschmann]
* Add TLS 1.3 cipher suites. [Thomas Deutschmann]
* Add fallback signaling cipher suite. [Thomas Deutschmann]
* Add CHACHA20_POLY1305 cipher suite. [Thomas Deutschmann]
* Merge pull request #14 from davidkretch/fix-typo. [Alexandre Dulaunoy]
Fix a typo in the man page
* Fix a typo in the man page. [David Kretch]
Delete the extra "to" in "To decrypt traffic to to host" under the examples section.
* Merge pull request #13 from alperakcan/master. [Alexandre Dulaunoy]
fix ssl record queue data read
* - fix mis calculation of read_left if queue already has some data, which might not be bigger than ssl_header_size - update q->ptr only if q->data is changed. [Alper Akcan]
* Merge pull request #1 from adulau/master. [Alper Akcan]
Merge pull request #12 from alperakcan/master
* Merge pull request #12 from alperakcan/master. [Alexandre Dulaunoy]