diff -u snort-2.7.0/debian/changelog snort-2.7.0/debian/changelog --- snort-2.7.0/debian/changelog +++ snort-2.7.0/debian/changelog @@ -1,3 +1,11 @@ +snort (2.7.0-26ubuntu1) karmic; urgency=low + + * Merge from debian unstable (LP: #375719), remaining changes: + + src/preprocessors/flow/portscan/server_stats.c: + - Specify mode permission during open call, fix FTBFS. + + -- Andres Rodriguez Thu, 14 May 2009 12:44:18 -0500 + snort (2.7.0-26) unstable; urgency=low * Fix bug in snort-pgsql and snort-mysql's configuration script introduced in @@ -45,6 +53,14 @@ -- Javier Fernandez-Sanguino Pen~a Sat, 21 Feb 2009 12:11:33 +0100 +snort (2.7.0-22ubuntu1) jaunty; urgency=low + + * Merge from Debian unstable, remaining Ubuntu changes: + + src/preprocessors/flow/portscan/server_stats.c: + - Specify mode permission during open call, fix FTBFS. + + -- Luca Falavigna Tue, 11 Nov 2008 16:41:25 +0100 + snort (2.7.0-22) unstable; urgency=low * Include patch from dato to make the package binNMU-safe @@ -94,6 +110,18 @@ -- Javier Fernandez-Sanguino Pen~a Wed, 22 Oct 2008 01:33:34 +0200 +snort (2.7.0-19ubuntu1) intrepid; urgency=low + + * src/preprocessors/flow/portscan/server_stats.c: + - Specify mode permission during open call, fix FTBFS. + * Apply patch from upstream CVS to let frag3 to remove enforcement of + ttl_limit. Add preprocessor alert for min_ttl anomaly (LP: #235901). + * References: + - CVE-2008-1804 + - http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2008-1804 + + -- Luca Falavigna Mon, 15 Sep 2008 21:22:19 +0200 + snort (2.7.0-19) unstable; urgency=low * Make the snort_rules_update example script use bash instead of sh. diff -u snort-2.7.0/debian/control snort-2.7.0/debian/control --- snort-2.7.0/debian/control +++ snort-2.7.0/debian/control @@ -1,7 +1,8 @@ Source: snort Section: net Priority: optional -Maintainer: Javier Fernandez-Sanguino Pen~a +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Javier Fernandez-Sanguino Pen~a Uploaders: Pascal Hakim Build-Depends: libnet1-dev, libpcap0.8-dev, libpcre3-dev, debhelper (>= 4.1.13), libmysqlclient15-dev | libmysqlclient-dev, libpq-dev, po-debconf (>= 0.5.0), libprelude-dev, iptables-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libgnutls-dev Build-Depends-Indep: texlive, texlive-latex-base, gs-common only in patch2: unchanged: --- snort-2.7.0.orig/src/preprocessors/flow/portscan/server_stats.c +++ snort-2.7.0/src/preprocessors/flow/portscan/server_stats.c @@ -346,7 +346,7 @@ /* open this description, create it if necessary, always wait on * sync to disk w/ every write, only write */ - fd = open(filename, O_CREAT|O_TRUNC|O_SYNC|O_WRONLY); + fd = open(filename, O_CREAT|O_TRUNC|O_SYNC|O_WRONLY, 0644); if(fd < 0) {