-
Notifications
You must be signed in to change notification settings - Fork 89
/
_newslog.html
1424 lines (1044 loc) · 37.8 KB
/
_newslog.html
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
#include "_doctype.html"
<html>
<head> <title>curl - News!</title>
#include "css.t"
</head>
#define CURL_NEWS
#include "setup.t"
#include "_menu.html"
#undef DATE
#define NSUBJ(subj) <!-- start !--> <h2> subj
#define NDATE(date) <span style="float: right">date</span></h2>
#define NCOLS <div>
#define NCOLE </div><!-- stop !-->
#define COLRED <p class="alert">
#define COLREDE </p><!-- stop !-->
TITLE(News in curl and libcurl land)
#if 0
template:
NSUBJ(bla)
NDATE(14 Oct 1999)
NCOLS
Text to show up
NCOLE
#endif
NSUBJ(curl and libcurl 8.11.0)
NDATE(November 6 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.11.0</a>. See the
full <a href="/ch/8.11.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.10.1)
NDATE(September 18 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.10.1</a>. See the
full <a href="/ch/8.10.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.10.0)
NDATE(September 11 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.10.0</a>. See the
full <a href="/ch/8.10.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.9.1)
NDATE(July 31 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.9.1</a>. See the
full <a href="/ch/8.9.1.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.9.0)
NDATE(July 24 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.9.0</a>. See the
full <a href="/ch/8.9.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerabilities</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.8.0)
NDATE(May 22 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.8.0</a>. See the
full <a href="/ch/8.8.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.7.1)
NDATE(March 27 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.7.1</a>. See the
full <a href="/ch/8.7.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.7.0)
NDATE(March 27 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.7.0</a>. See the
full <a href="/ch/8.7.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.6.0)
NDATE(January 31 2024)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.6.0</a>. See the
full <a href="/ch/8.6.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.5.0)
NDATE(December 6 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.5.0</a>. See the
full <a href="/ch/8.5.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.4.0)
NDATE(October 11 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.4.0</a>. See the
full <a href="/ch/8.4.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(Severity HIGH security problem to be announced on Oct 11)
NDATE(October 6 2023)
NCOLS
This is just a heads up about what is coming in association with the pending
curl 8.4.0 release. We are collecting the little info that is
available <a href="https://github.com/curl/curl/discussions/12026">here</a>.
NCOLE
NSUBJ(curl and libcurl 8.3.0)
NDATE(September 13 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.3.0</a>. See the
full <a href="/ch/8.3.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.2.1)
NDATE(July 26 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.2.1</a>. See the
full <a href="/ch/8.2.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.2.0)
NDATE(July 19 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.2.0</a>. See the
full <a href="/ch/8.2.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/security.html">security
vulnerability</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.1.2)
NDATE(May 30 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.1.2</a>. See the
full <a href="/ch/8.1.2.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.1.1)
NDATE(May 23 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.1.1</a>. See the
full <a href="/ch/8.1.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.1.0)
NDATE(May 17 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.1.0</a>. See the
full <a href="/ch/8.1.0.html">changelog</a>.
<p>
Pay special attention to the four <a href="/docs/security.html">security
vulnerabilities</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 8.0.1)
NDATE(March 20 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.0.1</a>. See the
full <a href="/ch/8.0.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 8.0.0)
NDATE(March 20 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 8.0.0</a>. See the
full <a href="/ch/8.0.0.html">changelog</a>.
<p>
Pay special attention to the
three <a href="/docs/security.html">security
vulnerabilities</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 7.88.1)
NDATE(February 20 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.88.1</a>. See the
full <a href="/ch/7.88.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.88.0)
NDATE(February 15 2023)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.88.0</a>. See the
full <a href="/ch/7.88.0.html">changelog</a>.
<p>
Pay special attention to the
three <a href="/docs/security.html">security
vulnerabilities</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 7.87.0)
NDATE(December 21 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.87.0</a>. See the
full <a href="/ch/7.87.0.html">changelog</a>.
<p>
Pay special attention to the
two <a href="https://curl.se/docs/security.html">security vulnerabilities</a>
fixed in this version.
NCOLE
NSUBJ(curl and libcurl 7.86.0)
NDATE(October 26 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.86.0</a>. See the
full <a href="/ch/7.86.0.html">changelog</a>.
<p>
Pay special attention to the
four <a href="https://curl.se/docs/security.html">security
vulnerabilities</a> fixed in this version.
NCOLE
NSUBJ(curl and libcurl 7.85.0)
NDATE(August 31 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.85.0</a>. See the
full <a href="/ch/7.85.0.html">changelog</a>.
<p>
Pay special attention to the security vulnerability fixed in this
version <a href="/docs/CVE-2022-35252.html">CVE-2022-35252: control code in
cookie denial of service</a>.
NCOLE
NSUBJ(curl and libcurl 7.84.0)
NDATE(June 27 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.84.0</a>. See the
full <a href="/ch/7.84.0.html">changelog</a>.
<p>
Pay special attention to these four security vulnerabilities fixed in this
version:
<ul>
<li> <a href="/docs/CVE-2022-32205.html">CVE-2022-32205: Set-Cookie denial of service</a>
<li> <a href="/docs/CVE-2022-32206.html">CVE-2022-32206: HTTP compression denial of service</a>
<li> <a href="/docs/CVE-2022-32207.html">CVE-2022-32207: Unpreserved file permissions</a>
<li> <a href="/docs/CVE-2022-32208.html">CVE-2022-32208: FTP-KRB bad message verification</a>
</ul>
NCOLE
NSUBJ(curl and libcurl 7.83.1)
NDATE(May 11 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.83.1</a>. See the
full <a href="/ch/7.83.1.html">changelog</a>.
<p>
Pay special attention to these <b>six</b> security vulnerabilities fixed in
this version:
<ul>
<li> <a href="/docs/CVE-2022-27778.html">CVE-2022-27778: curl removes wrong file on error</a>
<li> <a href="/docs/CVE-2022-27779.html">CVE-2022-27779: cookie for trailing dot TLD</a>
<li> <a href="/docs/CVE-2022-27780.html">CVE-2022-27780: percent-encoded path separator in URL host</a>
<li> <a href="/docs/CVE-2022-27781.html">CVE-2022-27781: CERTINFO never-ending busy-loop</a>
<li> <a href="/docs/CVE-2022-27782.html">CVE-2022-27782: TLS and SSH connection too eager reuse</a>
<li> <a href="/docs/CVE-2022-30115.html">CVE-2022-30115: HSTS bypass via trailing dot</a>
</ul>
NCOLE
NSUBJ(curl and libcurl 7.83.0)
NDATE(April 27 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.83.0</a>. See the
full <a href="/ch/7.83.0.html">changelog</a>.
<p>
Pay special attention to these <b>four</b> security vulnerabilities fixed in
this version:
<ul>
<li> <a href="/docs/CVE-2022-22576.html">CVE-2022-22576: OAUTH2 bearer bypass in connection re-use</a>
<li> <a href="/docs/CVE-2022-27774.html">CVE-2022-27774: Credential leak on redirect</a>
<li> <a href="/docs/CVE-2022-27775.html">CVE-2022-27775: Bad local IPv6 connection reuse</a>
<li> <a href="/docs/CVE-2022-27776.html">CVE-2022-27776: Auth/cookie leak on redirect</a>
</ul>
NCOLE
NSUBJ(curl and libcurl 7.82.0)
NDATE(March 5 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.82.0</a>. See the
full <a href="/ch/7.82.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.81.0)
NDATE(January 5 2022)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.81.0</a>. See the
full <a href="/ch/7.81.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.80.0)
NDATE(November 10 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.80.0</a>. See the
full <a href="/ch/7.80.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.79.1)
NDATE(September 22 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.79.1</a>. See the
full <a href="/ch/7.79.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.79.0)
NDATE(September 15 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.79.0</a>. See the
full <a href="/ch/7.79.0.html">changelog</a>.
<p>
Pay special attention to the <b>three</b> security vulnerabilities fixed in
this version:
<ul>
<li> <a href="/docs/CVE-2021-22945.html">CVE-2021-22945: UAF and double-free in MQTT sending</a>
<li> <a href="/docs/CVE-2021-22946.html">CVE-2021-22946: Protocol downgrade required TLS bypassed</a>
<li> <a href="/docs/CVE-2021-22947.html">CVE-2021-22947: STARTTLS protocol injection via MITM</a>
</ul>
NCOLE
NSUBJ(curl and libcurl 7.78.0)
NDATE(July 21 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.78.0</a>. See the
full <a href="/ch/7.78.0.html">changelog</a>.
<p>
Pay special attention to the <b>five</b> security vulnerabilities fixed in
this version:
<ul>
<li> <a href="/docs/CVE-2021-22922.html">CVE-2021-22922: Wrong content via metalink not discarded</a>
<li> <a href="/docs/CVE-2021-22923.html">CVE-2021-22923: Metalink download sends credentials</a>
<li> <a href="/docs/CVE-2021-22924.html">CVE-2021-22924: Bad connection reuse due to flawed path name checks</a>
<li> <a href="/docs/CVE-2021-22925.html">CVE-2021-22925: TELNET stack contents disclosure again</a>
<li> <a href="/docs/CVE-2021-22926.html">CVE-2021-22926: CURLOPT_SSLCERT mixup with Secure Transport</a>
</ul>
NCOLE
NSUBJ(curl and libcurl 7.77.0)
NDATE(May 26 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.77.0</a>. See the
full <a href="/ch/7.77.0.html">changelog</a>.
<p>
Pay special attention to the <b>three</b> security vulnerabilities fixed in
this version:
<ul>
<li> <a href="/docs/CVE-2021-22897.html">CVE-2021-22897: schannel cipher selection surprise</a>
<li> <a href="/docs/CVE-2021-22898.html">CVE-2021-22898: TELNET stack contents disclosure</a>
<li> <a href="/docs/CVE-2021-22901.html">CVE-2021-22901: TLS session caching disaster</a>
</ul>
NCOLE
NSUBJ(A new IRC channel)
NDATE(May 20 2021)
NCOLS
The curl project officially moved to the <a href="https://libera.chat">Libera.Chat</a>
IRC network into the <i>#curl</i> channel. The documentation on joining was
updated accordingly.
NCOLE
NSUBJ(curl and libcurl 7.76.1)
NDATE(April 14 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.76.1</a>. See
the <a href="/ch/7.76.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.76.0)
NDATE(March 31 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.76.0</a>. See
the <a href="/ch/7.76.0.html">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this
version: <a href="/docs/CVE-2021-22876.html">CVE-2021-22876: Automatic
referer leaks credentials</a>
and <a href="/docs/CVE-2021-22890.html">CVE-2021-22890: TLS 1.3 session
ticket proxy host mixup</a>.
NCOLE
NSUBJ(curl and libcurl 7.75.0)
NDATE(February 3 2021)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.75.0</a>. See
the <a href="/ch/7.75.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.74.0)
NDATE(December 9 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.74.0</a>. See
the <a href="/ch/7.74.0.html">changelog</a>.
<p>
Pay special attention to these security vulnerabilities fixed in this
version: <a href="/docs/CVE-2020-8284.html">CVE-2020-8284: trusting FTP PASV
responses</a>, <a href="/docs/CVE-2020-8285.html">CVE-2020-8285: FTP wildcard
stack overflow</a> and <a href="/docs/CVE-2020-8286.html">CVE-2020-8286:
Inferior OCSP verification</a>.
NCOLE
NSUBJ(curl.se moved to a new server)
NDATE(23 Oct 2020)
NCOLS
The website curl.se and others
were <a href="https://daniel.haxx.se/blog/2020/10/23/a-server-transition/">moved
over to a new host today</a>. No major problems or outages were discovered. A
few minor breakages occurred but were fixed within shortly. A good
transition! It was fifteen years since the previous host move!
NCOLE
NSUBJ(curl and libcurl 7.73.0)
NDATE(October 14 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.73.0</a>. See
the <a href="/ch/7.73.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.72.0)
NDATE(August 19 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.72.0</a>. See
the <a href="/ch/7.72.0.html">changelog</a>.
<p>
Pay special attention to the security vulnerability fixed in this
version: <a href="/docs/CVE-2020-8231.html">CVE-2020-8231: libcurl:
wrong connect-only connection</a>.
NCOLE
NCOLE
NSUBJ(curl and libcurl 7.71.1)
NDATE(July 1 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.71.1</a>. See
the <a href="/ch/7.71.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.71.0)
NDATE(June 24 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.71.0</a>. See
the <a href="/ch/7.71.0.html">changelog</a>.
<p>
Pay special attention to the <b>two</b> security vulnerabilities fixed in
this version: <a href="/docs/CVE-2020-8169.html">CVE-2020-8169: Partial
password leak over DNS on HTTP redirect</a>
and <a href="/docs/CVE-2020-8177.html">CVE-2020-8177: curl overwrite local
file with -J</a>.
NCOLE
NSUBJ(curl and libcurl 7.70.0)
NDATE(April 29 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.70.0</a>. See
the <a href="/ch/7.70.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.69.1)
NDATE(March 11 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.69.1</a>. See
the <a href="/ch/7.69.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.69.0)
NDATE(March 4 2020)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.69.0</a>. See
the <a href="/ch/7.69.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.68.0)
NDATE(January 8 2020)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.68.0</a>. See
the <a href="/ch/7.68.0.html">changelog</a>.
<p>
Pay special attention to the security vulnerability fixed in this
version: <a href="/docs/CVE-2019-15601.html">CVE-2019-15601: SMB access
smuggling via FILE URL on Windows </a>.
NCOLE
NSUBJ(curl and libcurl 7.67.0)
NDATE(November 6 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.67.0</a>. See
the <a href="/ch/7.67.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.66.0)
NDATE(September 11 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.66.0</a>. See
the <a href="/ch/7.66.0.html">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this
version: <a href="/docs/CVE-2019-5481.html">CVE-2019-5481: ftp-krb
double-free</a> and <a href="/docs/CVE-2019-5482.html">CVE-2019-5482: TFTP
heap buffer overflow</a>.
NCOLE
NSUBJ(curl and libcurl 7.65.3)
NDATE(July 19 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.65.3</a>. A patch release fixing a single
but annoying regression. See the <a href="/ch/7.65.3.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.65.2)
NDATE(July 17 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.65.2</a>. A patch release. All bug-fixes
are documented in the <a href="/ch/7.65.2.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.65.1)
NDATE(June 5 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.65.1</a>. A patch release. All bug-fixes
are documented in the <a href="/ch/7.65.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.65.0)
NDATE(May 22 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.65.0</a>. All changes and bug-fixes are
documented in the <a href="/ch/7.65.0.html">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this
version: <a href="/docs/CVE-2019-5435.html">CVE-2019-5435</a>
and <a href="/docs/CVE-2019-5436.html">CVE-2019-5436</a>. Both with severity
low.
NCOLE
NSUBJ(curl and libcurl 7.64.1)
NDATE(March 27 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.64.1</a>. A patch release. All bug-fixes
are documented in the <a href="/ch/7.64.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.64.0)
NDATE(February 6 2019)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.64.0</a>. All bug-fixes are documented in
the <a href="/ch/7.64.0.html">changelog</a>.
<p>
Pay special attention to three security vulnerabilities fixed in this
version: <a href="/docs/CVE-2018-16890.html">CVE-2018-16890</a>, <a href="/docs/CVE-2019-3822.html">CVE-2019-3822</a>w
and <a href="/docs/CVE-2019-3823.html">CVE-2019-3823</a>.
NCOLE
NSUBJ(curl and libcurl 7.63.0)
NDATE(December 12 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.63.0</a>. All bug-fixes are documented in
the <a href="/ch/7.63.0.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.62.0)
NDATE(October 31 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.62.0</a>. All bug-fixes are documented in
the <a href="/ch/7.62.0.html">changelog</a>.
<p>
Pay special attention to two security vulnerabilities fixed in this
version: <a href="/docs/CVE-2018-16839.html">CVE-2018-16839</a>
and <a href="/docs/CVE-2018-16840.html">CVE-2018-16840</a>.
NCOLE
NSUBJ(curl and libcurl 7.61.1)
NDATE(September 5 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.61.1</a>. All bug-fixes are documented in
the <a href="/ch/7.61.1.html">changelog</a>.
<p>
Pay special attention to the security vulnerability fixed in this
version: <a href="/docs/CVE-2018-14618.html">CVE-2018-14618</a>.
NCOLE
NSUBJ(curl and libcurl 7.61.0)
NDATE(July 11 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.61.0</a>. All changes are documented in
the <a href="/ch/7.61.0.html">changelog</a>.
<p>
Pay special attention to the security vulnerability fixed in this
version:
<a href="/docs/CVE-2018-0500.html">CVE-2018-0500</a>.
NCOLE
NSUBJ(curl and libcurl 7.60.0)
NDATE(May 16 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.60.0</a>. All changes are documented in
the <a href="/ch/7.60.0.html">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this
version:
<a href="/docs/CVE-2018-1000300.html">CVE-2018-1000300</a> and
<a href="/docs/CVE-2018-1000301.html">CVE-2018-1000301</a>
NCOLE
NSUBJ(curl and libcurl 7.59.0)
NDATE(March 14 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.59.0</a>. All changes are documented in
the <a href="/ch/7.59.0.html">changelog</a>.
<p>
Pay special attention to the three security vulnerabilities fixed in this
version:
<a href="/docs/CVE-2018-1000120.html">CVE-2018-1000120</a>,
<a href="/docs/CVE-2018-1000121.html">CVE-2018-1000121</a> and
<a href="/docs/CVE-2018-1000122.html">CVE-2018-1000122</a>
NCOLE
NSUBJ(curl and libcurl 7.58.0)
NDATE(January 24 2018)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.58.0</a>. All changes are documented in
the <a href="/ch/7.58.0.html">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this version:
<a href="/docs/CVE-2018-1000005.html">CVE-2018-1000005</a> and
<a href="/docs/CVE-2018-1000007.html">CVE-2018-1000007</a>
NCOLE
NSUBJ(curl and libcurl 7.57.0)
NDATE(November 29 2017)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.57.0</a>. All changes are documented in
the <a href="/ch/7.57.0.html">changelog</a>.
<p>
Pay special attention to the three security vulnerabilities fixed in this version:
<a href="/docs/adv_2017-11e7.html">CVE-2017-8816</a>,
<a href="/docs/CVE-2017-8817.html">CVE-2017-8817</a>
and <a href="/docs/CVE-2017-8818.html">CVE-2017-8818</a>.
NCOLE
NSUBJ(curl and libcurl 7.56.1)
NDATE(October 23 2017)
NCOLS
The curl team proudly presents curl and libcurl
<a href="download.html">version 7.56.1</a>. All changes are documented in
the <a href="/ch/7.56.1.html">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/CVE-2017-1000257.html">CVE-2017-1000257</a> security
vulnerability we fixed.
NCOLE
NSUBJ(curl and libcurl 7.56.0)
NDATE(October 4 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.56.0</a>. All changes are
documented in the <a href="/ch/7.56.0.html">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/CVE-2017-1000254.html">CVE-2017-1000254</a> security
vulnerability we fixed.
NCOLE
NSUBJ(curl and libcurl 7.55.1)
NDATE(August 14 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.55.1</a>. All changes are
documented in the <a href="/ch/7.55.1.html">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.54.1)
NDATE(June 14 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.54.1</a>. The bug fixes are
documented in the <a href="/ch/7.54.1.html">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/CVE-2017-9502.html">CVE-2017-9502</a> security
vulnerability we fixed.
NCOLE
NSUBJ(curl and libcurl 7.54.0)
NDATE(April 19 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.54.0</a>. The bug fixes are
documented in the <a href="/ch/7.54.0.html">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/CVE-2017-7468.html">CVE-2017-7468</a> security
vulnerability we fixed.
NCOLE
NSUBJ(curl and libcurl 7.53.1)
NDATE(February 24 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.53.1</a>. The bug fixes are
documented in the <a href="/ch/7.53.1.html">changelog</a>.
<p>
We did this patch release this soon after our previous version primarily to
address a build error that caused people on Windows some annoyances.
NCOLE
NSUBJ(curl and libcurl 7.53.0)
NDATE(February 22 2017)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.53.0</a>. The bug fixes are
documented in the <a href="/ch/7.53.0.html">changelog</a>.
<p>
Pay special attention to the <a href="/docs/CVE-2017-2629.html">CVE-2017-2629
security vulnerability</a> we fixed.
NCOLE