forked from curl/curl-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_newslog.html
3452 lines (2516 loc) · 91.4 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 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="changes.html#7_60_0">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this
version:
<a href="/docs/adv_2018-82c2.html">CVE-2018-1000300</a> and
<a href="/docs/adv_2018-b138.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="changes.html#7_59_0">changelog</a>.
<p>
Pay special attention to the three security vulnerabilities fixed in this
version:
<a href="/docs/adv_2018-9cd6.html">CVE-2018-1000120</a>,
<a href="/docs/adv_2018-97a2.html">CVE-2018-1000121</a> and
<a href="/docs/adv_2018-b047.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="changes.html#7_58_0">changelog</a>.
<p>
Pay special attention to the two security vulnerabilities fixed in this version:
<a href="/docs/adv_2018-824a.html">CVE-2018-1000005</a> and
<a href="/docs/adv_2018-b3bf.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="changes.html#7_57_0">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/adv_2017-ae72.html">CVE-2017-8817</a>
and <a href="/docs/adv_2017-af0a.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="changes.html#7_56_1">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/adv_20171023.html">CVE-2017-1000257</a> security
vulnerability</a> 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="changes.html#7_56_0">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/adv_20171004.html">CVE-2017-1000254</a> security
vulnerability</a> 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="changes.html#7_55_1">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="changes.html#7_54_1">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/adv_20170614.html">CVE-2017-9502</a> security
vulnerability</a> 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="changes.html#7_54_0">changelog</a>.
<p>
Pay special attention to
the <a href="/docs/adv_20170419.html">CVE-2017-7468</a> security
vulnerability</a> 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="changes.html#7_53_1">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="changes.html#7_53_0">changelog</a>.
<p>
Pay special attention to the <a href="/docs/adv_20170222.html">CVE-2017-2629
security vulnerability</a> we fixed.
NCOLE
NSUBJ(curl and libcurl 7.52.1)
NDATE(December 23 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.52.1</a>. The bug fixes are
documented in the <a href="changes.html#7_52_1">changelog</a>.
<p>
We hurried out this release due to
the <a href="/docs/adv_20161223.html">security vulnerability</a> we found in
7.52.0.
NCOLE
NSUBJ(curl and libcurl 7.52.0)
NDATE(December 21 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.52.0</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_52_0">changelog</a>.
<p>
Pay special attention to the new <a href="/docs/vulnerabilities.html">security vulnerabilities</a>.
NCOLE
NSUBJ(curl and libcurl 7.51.0)
NDATE(November 2 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.51.0</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_51_0">changelog</a>.
<p>
Pay special attention to the new <a href="/docs/vulnerabilities.html">security vulnerabilities</a>.
NCOLE
NSUBJ(curl and libcurl 7.50.3)
NDATE(September 14 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.50.3</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_50_3">changelog</a>.
<p>
Pay special attention to the new security vulnerability <a href="https://curl.haxx.se/docs/adv_20160914.html">CVE-2016-7167</a>.
NCOLE
NSUBJ(curl and libcurl 7.50.2)
NDATE(September 7 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.50.2</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_50_2">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.50.1)
NDATE(August 3 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.50.1</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_50_1">changelog</a>. Pay
special attention to the three new security vulnerabilities mentioned there.
NCOLE
NSUBJ(curl and libcurl 7.50.0)
NDATE(July 21 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.50.0</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_50_0">changelog</a>.
NCOLE
NSUBJ(Windows DLL hijacking)
NDATE(May 30 2016)
NCOLS
curl and libcurl are vulnerable to
a <a href="https://curl.haxx.se/docs/adv_20160530.html">Windows DLL
hijacking</a> (known as CVE-2016-4802). Affecting versions running on
Microsoft Windows.
NCOLE
NSUBJ(curl and libcurl 7.49.1)
NDATE(May 30 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.49.1</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_49_1">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.49.0)
NDATE(May 18 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.49.0</a>. All changes and bug fixes
are documented in the <a href="changes.html#7_49_0">changelog</a>.
NCOLE
NSUBJ(TLS certificate check bypass with mbedTLS/PolarSSL)
NDATE(May 18 2016)
NCOLS
curl and libcurl are vulnerable to
a <a href="https://curl.haxx.se/docs/adv_20160518.html">TLS certificate check
bypass</a> (known as CVE-2016-3739) when built to use mbedTLS or PolarSSL.
NCOLE
NSUBJ(curl and libcurl 7.48.0)
NDATE(March 23 2016)
NCOLS
The curl team proudly presents yet another version in the never ending train
of curl releases. curl and libcurl <a href="download.html">version 7.48.0</a>
is out. Read up on all the changes and bug fixes in
the <a href="changes.html#7_48_0">changelog</a>.
NCOLE
NSUBJ(curl and libcurl 7.47.1)
NDATE(February 8 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.47.1</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_47_1">changelog</a>.
NCOLE
NSUBJ(git repo moved on github)
NDATE(February 3 2016)
NCOLS
The git repositories on github for
the <a href="https://github.com/curl/curl">source</a> and
the <a href="https://github.com/curl/curl-www">web site</a> have now been
moved over to its new home there: the <a href="https://github.com/curl">curl
organization</a>.
NCOLE
NSUBJ(web site over HTTPS)
NDATE(January 29 2016)
NCOLS
The curl web site is now served over HTTPS and with HTTP/2 - with
certificates from Let's Encrypt. Starting February 3, the curl site
automatically redirects all http accesses to its https version. No more HTTP
accesses to contents.
NCOLE
NSUBJ(curl and libcurl 7.47.0)
NDATE(January 27 2016)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.47.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_47_0">changelog</a>.
<p>
This release comes bundled with two security
advisories: <a href="//curl.haxx.se/docs/adv_20160127B.html">CVE-2016-0754:
local drive traversal when saving file on Windows</a>
and <a href="//curl.haxx.se/docs/adv_20160127A.html">CVE-2016-0755: NTLM
credentials not-checked for proxy connection re-use</a>.
NCOLE
NSUBJ(curl and libcurl 7.46.0)
NDATE(December 2 2015)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.46.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_46_0">changelog</a>.
<p>
This is the 150th release counted from the beginning!
NCOLE
NSUBJ(curl and libcurl 7.45.0)
NDATE(October 7 2015)
NCOLS
The curl team proudly presents the best release ever: curl and
libcurl <a href="download.html">version 7.45.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_45_0">changelog</a>.
NCOLE
NSUBJ(curl HTTP cheat sheet)
NDATE(September 24 2015)
NCOLS
As a little side-project,
a <a href="https://bagder.github.io/curl-cheat-sheet/http-sheet.html">curl
cheat sheet</a> is being worked on, as a small page showing the most
commonly used curl HTTP options.
<p>
Help us improve it! It will most probably move into the curl site umbrella
at some point.
NCOLE
NSUBJ(curl and libcurl 7.44.0)
NDATE(August 12 2015)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.44.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_44_0">changelog</a>.
NCOLE
NSUBJ([SECURITY NOTICE] libidn with bad UTF8 input)
NDATE(June 29 2015)
NCOLS
A recent security review of libcurl showed that a remote attacker can
abuse libcurl's support for international domain names to disclose
memory of a libcurl application or cause other unintended behaviors by
passing in a malformed unicode string in the URL parameter.
<p>
<a href="//curl.haxx.se/mail/lib-2015-06/0143.html">The entire libidn
notice</a>
NCOLE
NSUBJ(Release archives over HTTPS)
NDATE(June 29 2015)
NCOLS
As long as the main curl site is still on HTTP only, we now offer HTTPS
downloads of the <a href="/download.html">source archives</a> over HTTPS from
github. We also modified the look of the release archives list slightly.
<p>
Enjoy!
NCOLE
NSUBJ(ISP blacklisted by Spamhaus)
NDATE(June 18 2015)
NCOLS
Right now a large amount of mail servers in the world refuse to accept mails
from our primary mail server
since <a href="https://www.spamhaus.org/sbl/query/SBL212408">Spamhaus deems
our ISP to be irresponsible</a> and blacklists us.
<p>
We have a fixed IP and we've done nothing wrong here, but apparently
collective punishment is a method.
NCOLE
NSUBJ(daniel weekly 37)
NDATE(June 17 2015)
NCOLS
<iframe width="560" height="315" src="https://www.youtube.com/embed/nSojqPVJAjA" frameborder="0" allowfullscreen></iframe>
NCOLE
NSUBJ(curl and libcurl 7.43.0)
NDATE(June 17 2015)
NCOLS
The curl team proudly presents curl and
libcurl <a href="download.html">version 7.43.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_43_0">changelog</a>.
<p>
This release comes bundled with two security advisories:
<a href="//curl.haxx.se/docs/adv_20150617A.html">CVE-2015-3236:
lingering HTTP credentials in connection re-use</a>
and <a href="//curl.haxx.se/docs/adv_20150617B.html">CVE-2015-3237: SMB
send off unrelated memory contents</a>.
NCOLE
NSUBJ(daniel weekly 36)
NDATE(June 9 2015)
NCOLS
<iframe width="400" height="225"
src="https://www.youtube.com/embed/p2oorXa2f-A" frameborder="0"
allowfullscreen></iframe>
NCOLE
NSUBJ(daniel weekly 35)
NDATE(June 3 2015)
NCOLS
<iframe width="400" height="225"
src="https://www.youtube.com/embed/nQFWlAvM4Kw" frameborder="0"
allowfullscreen></iframe>
NCOLE
NSUBJ(curl user poll 2015 analysis)
NDATE(May 26 2015)
NCOLS
The <a href="https://daniel.haxx.se/media/curl%20user%20poll%202015%20analysis.pdf">30
page document</a> with all details and analyses of the curl user poll 2015
is now available. It shows details of all the questions, most of them with a
comparison with last year’s survey. The write-ins are also full of good
advice, wisdom and some signs of ignorance or unawareness.
NCOLE
NSUBJ(curl and libcurl 7.42.1)
NDATE(April 29 2015)
NCOLS
The curl team proudly presents another curl and libcurl
release: <a href="download.html">version 7.42.1</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_42_1">changelog</a>.
<p>
This release comes bundled another security advisory:
<a href="//curl.haxx.se/docs/adv_20150429.html">CVE-2015-3153: sensitive
HTTP server headers also sent to proxies</a>.
NCOLE
NSUBJ(curl and libcurl 7.42.0)
NDATE(April 22 2015)
NCOLS
The curl team proudly presents another curl and libcurl
release: <a href="download.html">version 7.42.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_42_0">changelog</a>.
<p>
This release comes bundled with no less than four different security
advisories:
<ul>
<li> <a href="//curl.haxx.se/docs/adv_20150422D.html">host name out of boundary memory access</a>
<li> <a href="//curl.haxx.se/docs/adv_20150422C.html">cookie parser out of boundary memory access</a>
<li> <a href="//curl.haxx.se/docs/adv_20150422B.html">Negotiate not treated as connection-oriented</a>
<li> <a href="//curl.haxx.se/docs/adv_20150422A.html">Re-using authenticated connection when unauthenticated</a>
</ul>
NCOLE
NSUBJ(becoming more github friendly)
NDATE(March 2 2015)
NCOLS
We're trying to lower barriers and friction for newcomers. We have a new
positive attitude to pull requests and issues filed directly
at <a href="https://github.com/curl/curl">github</a>. Welcome!
<p>
Existing hackers: consider clicking 'watch' on that repo to get notified.
NCOLE
NSUBJ(curl and libcurl 7.41.0)
NDATE(February 25 2015)
NCOLS
The curl team proudly presents another curl and libcurl
release: <a href="download.html">version 7.41.0</a>. Read up on all the
changes and bug fixes in the <a href="changes.html#7_41_0">changelog</a>.
NCOLE
NSUBJ(Enhanced vulnerability overview)
NDATE(January 9 2015)
NCOLS
The <a href="/docs/vulnerabilities.html">vulnerability table</a> on the web
site has gotten an overhaul. It is the complete list of all published curl
vulnerabilities together with which curl versions that are vulnerable.
<p>
The new layout is <i>much</i> smaller HTML, and it now features links to
specific summaries for each individual curl release through the
history. Each summarizing its own vulnerability situation.
<p>
For example, you can look at the vulnerability situation
for <a href="/docs/vuln-7.37.0.html">curl 7.37.0</a> as well as all the
others - back to <a href="/docs/vuln-6.0.html">6.0</a>, released in 1999.
NCOLE
NSUBJ(curl and libcurl 7.40.0)
NDATE(January 8 2015)
NCOLS
The curl team proudly presents another curl and libcurl
release: <a href="download.html">version 7.40.0</a>. Read up on all the
changes and bug fixes on the <a href="changes.html#7_40_0">changes</a> page.
<p>
We also publish two security advisories in association with this
release. See <a href="/docs/adv_20150108A.html">CVE-2014-8151</a>
and <a href="/docs/adv_20150108B.html">CVE-2014-8150</a> for all the details.
NCOLE
NSUBJ(videos on curl front page)
NDATE(November 28 2014)
NCOLS
The front page is now slightly modified to provide a fixed slot for the
weekly (or so) videos made by Daniel.
NCOLE
NSUBJ(Thanks page remake)
NDATE(November 6 2014)
NCOLS
The <a href="/docs/thanks.html">THANKS</a> page,crediting all the people that
have helped out in the project, has just gotten a little overhaul and now
features a completely new look. We also made some extra efforts and removed
some duplicate names from it, which explains why the amount of names went
down somewhat.
<p>
Of course, if you think you are wrongly missing from the list of names,
please tell us. We truly believe in <a href="https://daniel.haxx.se/blog/2014/08/25/credits-in-the-curl-project/">giving proper credit</a>!
NCOLE
NSUBJ(curl and libcurl 7.39.0)
NDATE(November 5 2014)
NCOLS
The curl team proudly presents another curl and libcurl
release: <a href="download.html">version 7.39.0</a>. Read up on all the
changes and bug fixes on the <a href="changes.html#7_39_0">changes</a> page.
<p>
We also publish a security advisory in association with this
release. See <a href="/docs/adv_20141105.html">CVE-2014-3707</a>.
NCOLE
NSUBJ(curl is no POODLE)
NDATE(October 17 2014)
NCOLS
curl is not affected by the POODLE attack. Described further in Daniel's
blog
post: <a href="https://daniel.haxx.se/blog/2014/10/17/curl-is-no-poodle/">curl
is no POODLE</a>
NCOLE
NSUBJ(Random curl info)
NDATE(October 10 2014)
NCOLS
Recent posts (off-site) by Daniel about curl and libcurl stuff:
<ul>
<p>
<a href="https://daniel.haxx.se/blog/2014/10/10/internal-timers-and-timeouts-of-libcurl/">internal timers and timeouts of libcurl</a> - It is time to take a deep dive into the libcurl internals and see how it handles timeouts and timers.
<p>
<a href="https://daniel.haxx.se/blog/2014/10/09/coverity-scan-defect-density-0-00/">Coverity scan defect density: 0.00</a> - I cleared off all the pending issues and we're now at zero defects left reported.
<p>
<a href="https://daniel.haxx.se/blog/2014/09/29/a-day-in-the-curl-project/">A day in the curl project</a> - An overview and look to what I spend all the time on in the curl project.
<p>
<a href="https://www.youtube.com/watch?v=2cBC5FzJJ1o">Video: daniel.haxx.se episode 5</a> - my continued series of weekly updates of my doings in the open source world.
</ul>
NCOLE
NSUBJ(Daniel Youtubes about curl)
NDATE(September 15 2014)
NCOLS
Daniel (curl project leader) is doing a <a
href="https://www.youtube.com/watch?v=OytGfG9u3Yk">video series</a> about
what he's working on at the moment. They are 5-7 minutes each, are posted
weekly and include lots of details of what's been happening in the curl
project.
NCOLE
NSUBJ(curl and libcurl 7.38.0)
NDATE(September 10 2014)
NCOLS
The curl team proudly presents a new and shiny curl and libcurl
release: <a href="download.html">version 7.38.0</a>. Read up on all the
changes and bug fixes on the <a href="changes.html#7_38_0">changes</a> page.
<p>
This time we also publish two HTTP cookie related security advisories in
association with this
release. See <a href="/docs/adv_20140910A.html">CVE-2014-3613</a>
and <a href="/docs/adv_20140910B.html">CVE-2014-3620</a>.
NCOLE
NSUBJ(RSA-1024 cacert cleanups)
NDATE(September 5 2014)
NCOLS
Mozilla has recently removed weak certs from
the <a href="/docs/caextract.html">CA certs bundle</a>. Weak, in the meaning
that they used 1024 bit RSA.
<p>
If you download the latest cacert bundle from the link above right now,
you'll see that s3.amazonaws.com sites no longer gets verified fine. I guess
that it goes for a few other sites too.
<p>
<a href="//curl.haxx.se/mail/lib-2014-09/0041.html">Read more</a>.
NCOLE
NSUBJ(curl and libcurl 7.37.1)
NDATE(July 16 2014)
NCOLS
Another eight week cycle loops and the curl team proudly presents a new and
shiny curl and libcurl release: <a href="download.html">version
7.37.1</a>. Read up on all the changes and bug fixes on
the <a href="changes.html#7_37_1">changes</a> page.
NCOLE
NSUBJ(curl and libcurl survey results)
NDATE(June 13 2014)
NCOLS
The <a href="//curl.haxx.se/docs/survey/survey2014.html">results from
the 2014 survey</a> is now published.
<p>
These are the "raw" numbers, analysis and conclusions drawn from this are
left to do. Join in and tell us what you think this means!
NCOLE
NSUBJ(poll: curl and libcurl usage and project details)
NDATE(June 2 2014)
NCOLS
The curl project runs the <a href="https://goo.gl/HPswnv">curl and libcurl
2014 poll</a>, asking for your input and feedback on a set of questions
around the project, its present and its future.
<p>
Feel free to share this link to others who may have a relevant opinion.
<p>
The poll is open until midnight June 11th (central European time).
NCOLE
NSUBJ(curl and libcurl 7.37.0)
NDATE(May 21 2014)
NCOLS
The curl team proudly presents another new and shiny curl and libcurl
release: <a href="download.html">version 7.37.0</a>. Read up on all the
changes and bug fixes on the <a href="changes.html#7_37_0">changes</a> page.
NCOLE
NSUBJ(CA bundle over HTTPS)
NDATE(May 8 2014)
NCOLS
Our <a href="/docs/caextract.html">CA extract</a> service is very popular to
download Mozilla's CA cert bundle in PEM format. Starting now, we also
provide a proper HTTPS download link for users who want to be sure there's
no foul play going on during the download.
<p>
The HTTPS download is provided via github so it will also provide an
alternative hosting site for cases where one or the other has
problems. Since there's a chicken-and-egg problem with TLS and CA certs, we
still offer the same download URL as before over plain HTTP as well.
<p>
Thank you for flying curl.
NCOLE
NSUBJ(a curl wiki)
NDATE(April 25 2014)
NCOLS
To enhance everyone's ability to contribute with docs, examples, good ideas
and other curl related information we've enabled
a <a href="https://github.com/curl/curl/wiki">curl wiki</a> over at
github.
<p>
It is a bit of a test. Is there user interest enough to add content and
provide info here?
NCOLE
NSUBJ(curl and proxy headers)
NDATE(April 8 2014)
NCOLS
curl and libcurl
offer <a href="https://daniel.haxx.se/blog/2014/04/04/curl-and-proxy-headers/">options
to specify HTTP proxy headers separate</a> from origin server headers in
next version.
NCOLE
NSUBJ(curl and libcurl 7.36.0 - and <b>four</b> security advisories!)
NDATE(March 26 2014)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.36.0</a>. Read up on all the changes and bug fixes on
the <a href="changes.html#7_36_0">changes</a> page.
<p>
Security advisories released today:
<ul>
<li> <a href="docs/adv_20140326A.html">libcurl wrong re-use of connections</a>
<li> <a href="docs/adv_20140326B.html">libcurl IP address wildcard certificate validation</a>
<li> <a href="docs/adv_20140326C.html">libcurl not verifying certs for TLS to IP address / Darwinssl</a>
<li> <a href="docs/adv_20140326D.html">libcurl not verifying certs for TLS to IP address / Winssl</a>
</ul>
NCOLE
NSUBJ(http2 and --next in curl)
NDATE(March 15 2014)
NCOLS
A few days ago, Daniel blogged
about <a href="https://daniel.haxx.se/blog/2014/03/09/http2-in-curl/">http2
in curl</a>, how it works, what to expect and more. Also, a separate
explanation of the upcoming
new <a href="https://daniel.haxx.se/blog/2014/03/12/whats-next-for-curl/">--next</a>
option.
NCOLE
NSUBJ(curl and libcurl 7.35.0)
NDATE(January 29 2014)
NCOLS
The curl team proudly presents the first release of the
year: <a href="download.html">curl and libcurl 7.35.0</a>. Read up on all
the changes and bug fixes on the <a href="changes.html#7_35_0">changes</a>
page.
<p>
Extra attention should be put on the <a href="docs/adv_20140129.html">
security advisory</a> we announce today.
NCOLE
NSUBJ(curl and libcurl 7.34.0)
NDATE(December 17 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.34.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_34_0">changes</a> page.
<p>
Extra attention should be put on the <a href="docs/adv_20131217.html">
security advisory</a> we announce today.
NCOLE
NSUBJ(SECURITY ADVISORY: libcurl cert name check ignore)
NDATE(November 15 2013)
NCOLS
libcurl is vulnerable to a case of missing out the checking of the
certificate CN or SAN name field when the digital signature verification is
turned off.
Read the full <a href="/docs/adv_20131115.html">Project curl Security
Advisory</a> for CVE-2013-4545.
NCOLE
NSUBJ(curl in Mac OS X Mavericks 10.9)
NDATE(October 23 2013)
NCOLS
Apple released Mac OS X Mavericks 10.9 the other day and in that they ship
an updated <a href="//curl.haxx.se/mail/archive-2013-10/0036.html">curl
with some noteworthy changes</a>. Graciously brought to us by Nick Zitzmann.
NCOLE
NSUBJ(curl and libcurl 7.33.0)
NDATE(October 14 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.33.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_33_0">changes</a> page.
NCOLE
NSUBJ(curl and libcurl 7.32.0)
NDATE(August 12 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.32.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_32_0">changes</a> page.
NCOLE
NSUBJ(dotdot removal in libcurl)
NDATE(July 30 2013)
NCOLS
Daniel posted an article on the upcoming change in libcurl when it will
start doing <a
href="https://daniel.haxx.se/blog/2013/07/30/dotdot-removal-in-libcurl/">dotdot removal</a>. It is a feature of the upcoming libcurl 7.32.0 release.
NCOLE
NSUBJ(curl and libcurl 7.31.0)
NDATE(June 22 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.31.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_31_0">changes</a> page.
<p>
Extra attention should be put on the <a
href="docs/adv_20130622.html">libcurl URL decode buffer boundary flaw</a>
security advisory we've announced today.
NCOLE
NSUBJ(curl and libcurl 7.30.0)
NDATE(April 12 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.30.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_30_0">changes</a> page.
<p>
Extra attention should be put on the <a
href="docs/adv_20130412.html">libcurl cookie domain tailmatch</a> security
advisory we've announced today.
NCOLE
NSUBJ(Using libcurl in MSVC document updated)
NDATE(March 30 2013)
NCOLS
Andrei Jakab has provided an update to his popular <a
href="//curl.haxx.se/libcurl/c/Using-libcurl-with-SSH-support-in-Visual-Studio-2010.pdf">Using
libcurl with SSH support in Visual Studio 2010</a> PDF.
NCOLE
NSUBJ(Why no curl 8)
NDATE(March 23 2013)
NCOLS
<i>In this little piece I'll explain why there won't be any version 8 of
curl and libcurl in a long time. I won't rule out that it might happen at
some point in the future. Just that it won't happen anytime soon and explain
the reasons why.</i>
<p>
<a href="https://daniel.haxx.se/blog/2013/03/23/why-no-curl-8/">Why no curl
8</a> (takes you to Daniel's blog)
NCOLE
NSUBJ(curl and libcurl 7.29.0)
NDATE(February 6 2013)
NCOLS
The curl team proudly presents <a href="download.html">curl and libcurl
7.29.0</a>. Read up on all the changes and bug fixes on the <a
href="changes.html#7_29_0">changes</a> page.
<p>
Extra attention should be put on the <a
href="docs/adv_20130206.html">libcurl SASL buffer overflow vulnerability