login
Header Space

 
 

(unknown)

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
Subject: (unknown)
Date: Wednesday, March 29, 2006 - 9:59 pm

Return-Path: <owner-netbsd-announce@netbsd.org>
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on andgasm.beer.org
X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham 
	version=3.1.0
X-Spam-Level: 
X-Original-To: netbsd-announce@NetBSD.org
Received: from stindustries.net (abe.stindustries.net [216.32.89.252])
	by mail.netbsd.org (Postfix) with ESMTP id 66FAB63B260
	for <netbsd-announce@NetBSD.org>; Thu, 30 Mar 2006 01:28:54 +0000 (UTC)
Received: from homer.stindustries.net (localhost [127.0.0.1])
	by stindustries.net (8.13.5/8.13.5) with ESMTP id k2U1SrlM006681
	for <netbsd-announce@NetBSD.org>; Thu, 30 Mar 2006 02:28:53 +0100 (BST)
Received: (from adrianp@localhost)
	by homer.stindustries.net (8.13.5/8.13.5/Submit) id k2U1Srfn016254
	for netbsd-announce@NetBSD.org; Thu, 30 Mar 2006 02:28:53 +0100 (BST)
Date: Thu, 30 Mar 2006 02:28:53 +0100
From: NetBSD Security-Officer <security-officer@NetBSD.org>
To: netbsd-announce@NetBSD.org
Subject: NetBSD Security Advisory 2006-003: Multiple denial of services issues with racoon
Message-ID: <20060330012853.GA18638@homer.stindustries.net>
Reply-To: NetBSD Security Officer <security-officer@NetBSD.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.4.2.1i
Organisation: The NetBSD Foundation, Inc.


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


		 NetBSD Security Advisory 2006-003
		 =================================

Topic:		Multiple denial of services issues with racoon

Version:	NetBSD-current:	source prior to November 21, 2005
		NetBSD 3.0:	not affected
		NetBSD 2.1:	affected
		NetBSD 2.0.*:	affected
		NetBSD 2.0:	affected
		NetBSD 1.6.*:	affected
		NetBSD 1.6:	affected
		pkgsrc:		ipsec-tools packages prior to 0.6.3

Severity:	Denial of service, in some cases anonymously

Fixed:		NetBSD-current:		November 21, 2005
		NetBSD-2-1 branch: 	January 19, 2006
						(2.1.1 will include the fix)
		NetBSD-2-0 branch:	January 19, 2006
						(2.0.4 will include the fix)
		NetBSD-2 branch: 	January 19, 2006
		pkgsrc:			ipsec-tools-0.6.3 corrects this issue


Abstract
========

The University of Oulu (Finland) released a test-suite for the Internet 
Security Association and Key Management Protocol (ISAKMP) daemons available
in various devices and operating systems.  During their testing they identified
a number of issues in various implementations.

On further testing the racoon daemon supplied with NetBSD and in pkgsrc
were found to be vulnerable to a number of denial of service attacks.

http://www.ee.oulu.fi/research/ouspg/protos/testing/c09/isakmp/index.html
http://www.niscc.gov.uk/niscc/docs/re-20051114-01014.pdf


Technical Details
=================

NetBSD up to the 3.0 release used the racoon daemon from the KAME project. For
the 3.0 release this was changed to the ipsec-tools racoon daemon.

During the testing of both these ISAKMP implementations on NetBSD a number
of denial of service issues were identified.  There are three vulnerabilities
that are a result of two code paths in the source which allow a malicious
attacker to crash the racoon daemon. For this attack to be successful a number
of factors must occur:

- - The racoon daemon must be enabled (it is disabled by default)
- - The racoon daemon must be configured for aggressive mode (not recommended)
- - In order to trigger 2 of the 3 vulnerabilities the attacker must have an
  entry in the SPD

In addition to this the PROTOS test suite had a number of configuration
prerequisites including:

- - racoon's configuration to be 3DES/SHA1/DH2
- - no lifetime proposal or obey mode

None of the issues are currently know to result in the execution of
arbitrary code.


Solutions and Workarounds
=========================

A limited workaround could be to use ip filtering to only allow ISAKMP
traffic (500/udp, and 4500/udp if you use NAT-T) from known trusted sources.

The following instructions describe how to upgrade your racoon
binaries by updating your source tree and rebuilding and
installing a new version of racoon.

* NetBSD-current:

	Systems running NetBSD-current dated from before 2005-11-20
	should be upgraded to NetBSD-current dated 2005-11-21 or later.

	The following directories need to be updated from the
	netbsd-current CVS branch (aka HEAD):
		crypto/dist/ipsec-tools
		lib/libipsec

	To update from CVS, re-build, and re-install racoon:
		# cd src
		# cvs update -d -P crypto/dist/ipsec-tools
		# cvs update -d -P lib/libipsec

		# cd lib/libipsec
		# make USETOOLS=no cleandir dependall
		# make USETOOLS=no install

		# cd ../../sbin/setkey
		# make USETOOLS=no cleandir dependall
		# make USETOOLS=no install

		# cd ../../usr.sbin/racoon
		# make USETOOLS=no cleandir dependall
		# make USETOOLS=no install

* NetBSD 2.*:

	Systems running NetBSD 2.* sources dated from before
	2006-01-18 should be upgraded from NetBSD 2.* sources dated
	2006-01-19 or later.

	The following file needs to be updated from the
	netbsd-2, netbsd-2-0 or netbsd-2-1 CVS branch:
		crypto/dist/kame/racoon/isakmp_agg.c

	To update from CVS, re-build, and re-install racoon:

		# cd src
		# cvs update -d -P -r <branch_name> crypto/dist/kame/racoon/isakmp_agg.c
		# cd usr.sbin/racoon
		# make USETOOLS=no cleandir dependall
		# make USETOOLS=no install

Thanks To
=========

The University of Oulu (Finland) for making the PROTOS test suite publicly
available.

Ipsec-tools core team member Yvan Vanhullebus for responding quickly to 
the identified issues and helping to provide fixes.

Adrian Portelli for performing the PROTOS testing, documenting and reporting 
the issues.

Dave Huang for reporting a racoon crash to NetBSD.

Revision History
================

	2006-03-29	Initial release


More Information
================

Advisories may be updated as new information becomes available.
The most recent version of this advisory (PGP signed) can be found at 
  ftp://ftp.NetBSD.org/pub/NetBSD/security/advisories/NetBSD-SA2006-003.txt.asc

Information about NetBSD and NetBSD security can be found at
http://www.NetBSD.org/ and http://www.NetBSD.org/Security/.


Copyright 2006, The NetBSD Foundation, Inc.  All Rights Reserved.
Redistribution permitted only in full, unmodified form.

$NetBSD: NetBSD-SA2006-003.txt,v 1.8 2006/03/29 21:20:33 adrianp Exp $

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (NetBSD)

iQCVAwUBRCsC4z5Ru2/4N2IFAQIf3gP5ARn8UXOFLz+IMxf5j6HxdEHEv/jMiA7r
zzGBT2kTuymM0PRA+KMZMjPfy/KecFz9YTAimQ5hpjSm8xOSah4gyvV3Ojs5gbfF
0QwLZTEzMOoZoVXXn/g5if9wHVi5htZxk0yERGZ5bwWXNW3ybb+/osczRgNXJtjG
/N/U1EJ14tY=
=agNT
-----END PGP SIGNATURE-----
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Results of NetBSD's 2007 Fundraising Campaign, Hubert Feyrer, (Wed Feb 27, 9:29 pm)
ftp.NetBSD.org outage, S.P.Zeidler, (Sun Jun 29, 8:23 am)
NetBSD announces new logo, , (Sat Oct 30, 7:33 pm)
Announcing the NetBSD 2.0.2 update, James Chacon, (Thu Apr 14, 3:09 pm)
Re: How to help NetBSD help you., Liam J. Foy, (Mon Jun 13, 12:18 pm)
NetBSD Quarterly Status Report - 2005Q2, Jan Schaumann, (Tue Jul 12, 4:28 pm)
Revised estimate for release date of NetBSD 3.0, Matthias Scheler, (Fri Oct 21, 1:30 pm)
cvsweb is offline on this weekend, , (Fri Feb 17, 9:02 am)
(unknown), Herb Peyerl, (Wed Mar 29, 9:59 pm)
NetBSD Security Advisory 2006-009: False detection of Intel ..., NetBSD Security-Officer, (Wed Apr 12, 10:33 pm)
NetBSD/mac68k has now switched to using ELF., Takeshi Shibagaki, (Mon Mar 25, 10:10 am)
NetBSD Security Advisory 2002-005: OpenSSH protocol version ..., NetBSD Security Officer, (Thu Jun 27, 1:11 pm)
NetBSD Security Advisory 2006-015: FPU Information leak on i..., NetBSD Security-Officer, (Thu Jun 8, 5:41 pm)
Schedule for NetBSD 3.1, Geert Hendrickx, (Thu Aug 17, 5:30 am)
Inviting students to NetBSD and Google's Summer of Code, Hubert Feyrer, (Tue Mar 18, 7:32 pm)
NetBSD "Quarterly" Status Report (Q1 2007), Jan Schaumann, (Wed May 30, 11:43 pm)
NetBSD hires Andrew Doran for full-time SMP development, Hubert Feyrer, (Tue Jul 24, 8:27 pm)
Re: ftp.NetBSD.org outage, S.P.Zeidler, (Wed Jul 2, 9:11 am)
NetBSD 3.1 Release Candidate 2 available for download, Geert Hendrickx, (Mon Sep 4, 2:44 pm)
NetBSD 3.1 Release Candidate 1 available for download, Geert Hendrickx, (Mon Aug 21, 4:59 pm)
speck-geostationary