Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] squid: security bump to version 3.5.15
@ 2016-02-24 12:43 Gustavo Zacarias
  2016-02-24 13:57 ` Jeroen Roovers
  2016-02-29 22:06 ` Thomas Petazzoni
  0 siblings, 2 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2016-02-24 12:43 UTC (permalink / raw)
  To: buildroot

Fixes:
SQUID-2016:2 - Multiple Denial of Service issues in HTTP Response
processing.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/squid/squid.hash | 6 +++---
 package/squid/squid.mk   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/squid/squid.hash b/package/squid/squid.hash
index f86c09a..106bde6 100644
--- a/package/squid/squid.hash
+++ b/package/squid/squid.hash
@@ -1,3 +1,3 @@
-# From http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.14.tar.bz2.asc
-md5	d589a2dd8ea8867170cef582e7334442	squid-3.5.14.tar.bz2
-sha1	f6a0262b09f7f463822cbdb50bac8f5dd1213d27	squid-3.5.14.tar.bz2
+# From http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.15.tar.bz2.asc
+md5	59d6732a4ebd3f63e2164d9847dc37c0	squid-3.5.15.tar.bz2
+sha1	72279380ea94aa731f5cf82f3fb50f9250f1692a	squid-3.5.15.tar.bz2
diff --git a/package/squid/squid.mk b/package/squid/squid.mk
index 2b7a9a2..b4341ba 100644
--- a/package/squid/squid.mk
+++ b/package/squid/squid.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 SQUID_VERSION_MAJOR = 3.5
-SQUID_VERSION = $(SQUID_VERSION_MAJOR).14
+SQUID_VERSION = $(SQUID_VERSION_MAJOR).15
 SQUID_SOURCE = squid-$(SQUID_VERSION).tar.bz2
 SQUID_SITE = http://www.squid-cache.org/Versions/v3/$(SQUID_VERSION_MAJOR)
 SQUID_LICENSE = GPLv2+
-- 
2.4.10

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

* [Buildroot] [PATCH] squid: security bump to version 3.5.15
  2016-02-24 12:43 [Buildroot] [PATCH] squid: security bump to version 3.5.15 Gustavo Zacarias
@ 2016-02-24 13:57 ` Jeroen Roovers
  2016-02-24 14:00   ` Gustavo Zacarias
  2016-02-29 22:06 ` Thomas Petazzoni
  1 sibling, 1 reply; 6+ messages in thread
From: Jeroen Roovers @ 2016-02-24 13:57 UTC (permalink / raw)
  To: buildroot

The announcement at
http://www.squid-cache.org/Advisories/SQUID-2016_2.txt disappeared and
http://www.squid-cache.org/Advisories/ no longer lists it (Google's
cache does) so I guess another release is coming pretty soon.

On 24 February 2016 at 13:43, Gustavo Zacarias <gustavo@zacarias.com.ar> wrote:
> Fixes:
> SQUID-2016:2 - Multiple Denial of Service issues in HTTP Response
> processing.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/squid/squid.hash | 6 +++---
>  package/squid/squid.mk   | 2 +-
>  2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/package/squid/squid.hash b/package/squid/squid.hash
> index f86c09a..106bde6 100644
> --- a/package/squid/squid.hash
> +++ b/package/squid/squid.hash
> @@ -1,3 +1,3 @@
> -# From http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.14.tar.bz2.asc
> -md5    d589a2dd8ea8867170cef582e7334442        squid-3.5.14.tar.bz2
> -sha1   f6a0262b09f7f463822cbdb50bac8f5dd1213d27        squid-3.5.14.tar.bz2
> +# From http://www.squid-cache.org/Versions/v3/3.5/squid-3.5.15.tar.bz2.asc
> +md5    59d6732a4ebd3f63e2164d9847dc37c0        squid-3.5.15.tar.bz2
> +sha1   72279380ea94aa731f5cf82f3fb50f9250f1692a        squid-3.5.15.tar.bz2
> diff --git a/package/squid/squid.mk b/package/squid/squid.mk
> index 2b7a9a2..b4341ba 100644
> --- a/package/squid/squid.mk
> +++ b/package/squid/squid.mk
> @@ -5,7 +5,7 @@
>  ################################################################################
>
>  SQUID_VERSION_MAJOR = 3.5
> -SQUID_VERSION = $(SQUID_VERSION_MAJOR).14
> +SQUID_VERSION = $(SQUID_VERSION_MAJOR).15
>  SQUID_SOURCE = squid-$(SQUID_VERSION).tar.bz2
>  SQUID_SITE = http://www.squid-cache.org/Versions/v3/$(SQUID_VERSION_MAJOR)
>  SQUID_LICENSE = GPLv2+
> --
> 2.4.10
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH] squid: security bump to version 3.5.15
  2016-02-24 13:57 ` Jeroen Roovers
@ 2016-02-24 14:00   ` Gustavo Zacarias
  2016-02-24 16:37     ` Peter Korsgaard
  0 siblings, 1 reply; 6+ messages in thread
From: Gustavo Zacarias @ 2016-02-24 14:00 UTC (permalink / raw)
  To: buildroot

On 24/02/16 10:57, Jeroen Roovers wrote:

> The announcement at
> http://www.squid-cache.org/Advisories/SQUID-2016_2.txt disappeared and
> http://www.squid-cache.org/Advisories/ no longer lists it (Google's
> cache does) so I guess another release is coming pretty soon.

Guess we'll have to wait for a follow-on on
http://www.openwall.com/lists/oss-security/2016/02/24/12

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

* [Buildroot] [PATCH] squid: security bump to version 3.5.15
  2016-02-24 14:00   ` Gustavo Zacarias
@ 2016-02-24 16:37     ` Peter Korsgaard
  2016-02-27 11:39       ` Jeroen Roovers
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2016-02-24 16:37 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > On 24/02/16 10:57, Jeroen Roovers wrote:
 >> The announcement at
 >> http://www.squid-cache.org/Advisories/SQUID-2016_2.txt disappeared and
 >> http://www.squid-cache.org/Advisories/ no longer lists it (Google's
 >> cache does) so I guess another release is coming pretty soon.

 > Guess we'll have to wait for a follow-on on
 > http://www.openwall.com/lists/oss-security/2016/02/24/12

Ok, I'll wait with applying this then.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] squid: security bump to version 3.5.15
  2016-02-24 16:37     ` Peter Korsgaard
@ 2016-02-27 11:39       ` Jeroen Roovers
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers @ 2016-02-27 11:39 UTC (permalink / raw)
  To: buildroot

They seem to have settled for 3.5.15 now and the advisory no longer
keeps disappearing.

Bump? :)

On 24 February 2016 at 17:37, Peter Korsgaard <peter@korsgaard.com> wrote:
>>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
>
>  > On 24/02/16 10:57, Jeroen Roovers wrote:
>  >> The announcement at
>  >> http://www.squid-cache.org/Advisories/SQUID-2016_2.txt disappeared and
>  >> http://www.squid-cache.org/Advisories/ no longer lists it (Google's
>  >> cache does) so I guess another release is coming pretty soon.
>
>  > Guess we'll have to wait for a follow-on on
>  > http://www.openwall.com/lists/oss-security/2016/02/24/12
>
> Ok, I'll wait with applying this then.
>
> --
> Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] squid: security bump to version 3.5.15
  2016-02-24 12:43 [Buildroot] [PATCH] squid: security bump to version 3.5.15 Gustavo Zacarias
  2016-02-24 13:57 ` Jeroen Roovers
@ 2016-02-29 22:06 ` Thomas Petazzoni
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2016-02-29 22:06 UTC (permalink / raw)
  To: buildroot

Gustavo,

On Wed, 24 Feb 2016 09:43:23 -0300, Gustavo Zacarias wrote:
> Fixes:
> SQUID-2016:2 - Multiple Denial of Service issues in HTTP Response
> processing.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/squid/squid.hash | 6 +++---
>  package/squid/squid.mk   | 2 +-
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks. The 3.5.15 is now visible on squid website,
and indicated as fixing several CVEs.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-02-29 22:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-24 12:43 [Buildroot] [PATCH] squid: security bump to version 3.5.15 Gustavo Zacarias
2016-02-24 13:57 ` Jeroen Roovers
2016-02-24 14:00   ` Gustavo Zacarias
2016-02-24 16:37     ` Peter Korsgaard
2016-02-27 11:39       ` Jeroen Roovers
2016-02-29 22:06 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox