All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libcurl: security bump to version 7.59.0
@ 2018-03-15 18:06 Baruch Siach
  2018-03-16  9:34 ` Peter Korsgaard
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Baruch Siach @ 2018-03-15 18:06 UTC (permalink / raw)
  To: buildroot

CVE-2018-1000120: curl could be fooled into writing a zero byte out of
bounds when curl is told to work on an FTP URL with the setting to only
issue a single CWD command, if the directory part of the URL contains a
"%00" sequence.

https://curl.haxx.se/docs/adv_2018-9cd6.html

CVE-2018-1000121: curl might dereference a near-NULL address when
getting an LDAP URL.

https://curl.haxx.se/docs/adv_2018-97a2.html

CVE-2018-1000122: When asked to transfer an RTSP URL, curl could
calculate a wrong data length to copy from the read buffer.

https://curl.haxx.se/docs/adv_2018-b047.html

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libcurl/libcurl.hash | 4 ++--
 package/libcurl/libcurl.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
index b1afe1891d10..aec61e3f8317 100644
--- a/package/libcurl/libcurl.hash
+++ b/package/libcurl/libcurl.hash
@@ -1,4 +1,4 @@
 # Locally calculated after checking pgp signature
-# https://curl.haxx.se/download/curl-7.58.0.tar.xz.asc
-sha256 6a813875243609eb75f37fa72044e4ad618b55ec15a4eafdac2df6a7e800e3e3  curl-7.58.0.tar.xz
+# https://curl.haxx.se/download/curl-7.59.0.tar.xz.asc
+sha256 e44eaabdf916407585bf5c7939ff1161e6242b6b015d3f2f5b758b2a330461fc  curl-7.59.0.tar.xz
 sha256 5f3849ec38ddb927e79f514bf948890c41b8d1407286a49609b8fb1585931095  COPYING
diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 39ed3e4da5f9..c6289e05f4cb 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBCURL_VERSION = 7.58.0
+LIBCURL_VERSION = 7.59.0
 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.xz
 LIBCURL_SITE = https://curl.haxx.se/download
 LIBCURL_DEPENDENCIES = host-pkgconf \
-- 
2.16.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: security bump to version 7.59.0
  2018-03-15 18:06 [Buildroot] [PATCH] libcurl: security bump to version 7.59.0 Baruch Siach
@ 2018-03-16  9:34 ` Peter Korsgaard
  2018-04-06 16:53 ` Peter Korsgaard
  2018-04-11 15:44 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-03-16  9:34 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > CVE-2018-1000120: curl could be fooled into writing a zero byte out of
 > bounds when curl is told to work on an FTP URL with the setting to only
 > issue a single CWD command, if the directory part of the URL contains a
 > "%00" sequence.

 > https://curl.haxx.se/docs/adv_2018-9cd6.html

 > CVE-2018-1000121: curl might dereference a near-NULL address when
 > getting an LDAP URL.

 > https://curl.haxx.se/docs/adv_2018-97a2.html

 > CVE-2018-1000122: When asked to transfer an RTSP URL, curl could
 > calculate a wrong data length to copy from the read buffer.

 > https://curl.haxx.se/docs/adv_2018-b047.html

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: security bump to version 7.59.0
  2018-03-15 18:06 [Buildroot] [PATCH] libcurl: security bump to version 7.59.0 Baruch Siach
  2018-03-16  9:34 ` Peter Korsgaard
@ 2018-04-06 16:53 ` Peter Korsgaard
  2018-04-11 15:44 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-04-06 16:53 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > CVE-2018-1000120: curl could be fooled into writing a zero byte out of
 > bounds when curl is told to work on an FTP URL with the setting to only
 > issue a single CWD command, if the directory part of the URL contains a
 > "%00" sequence.

 > https://curl.haxx.se/docs/adv_2018-9cd6.html

 > CVE-2018-1000121: curl might dereference a near-NULL address when
 > getting an LDAP URL.

 > https://curl.haxx.se/docs/adv_2018-97a2.html

 > CVE-2018-1000122: When asked to transfer an RTSP URL, curl could
 > calculate a wrong data length to copy from the read buffer.

 > https://curl.haxx.se/docs/adv_2018-b047.html

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2018.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] libcurl: security bump to version 7.59.0
  2018-03-15 18:06 [Buildroot] [PATCH] libcurl: security bump to version 7.59.0 Baruch Siach
  2018-03-16  9:34 ` Peter Korsgaard
  2018-04-06 16:53 ` Peter Korsgaard
@ 2018-04-11 15:44 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-04-11 15:44 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > CVE-2018-1000120: curl could be fooled into writing a zero byte out of
 > bounds when curl is told to work on an FTP URL with the setting to only
 > issue a single CWD command, if the directory part of the URL contains a
 > "%00" sequence.

 > https://curl.haxx.se/docs/adv_2018-9cd6.html

 > CVE-2018-1000121: curl might dereference a near-NULL address when
 > getting an LDAP URL.

 > https://curl.haxx.se/docs/adv_2018-97a2.html

 > CVE-2018-1000122: When asked to transfer an RTSP URL, curl could
 > calculate a wrong data length to copy from the read buffer.

 > https://curl.haxx.se/docs/adv_2018-b047.html

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2017.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-04-11 15:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-15 18:06 [Buildroot] [PATCH] libcurl: security bump to version 7.59.0 Baruch Siach
2018-03-16  9:34 ` Peter Korsgaard
2018-04-06 16:53 ` Peter Korsgaard
2018-04-11 15:44 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.