Your message dated Sat, 23 Feb 2013 11:56:55 +0000 with message-id <1361620615.20752.10.camel@jacala.jungle.funky-badger.org> and subject line Closing p-u bugs included in point release has caused the Debian Bug report #700251, regarding pu: package libproc-processtable-perl/0.45-1+squeeze1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 700251: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700251 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: Debian Bug Tracking System <submit@bugs.debian.org>
- Subject: pu: package libproc-processtable-perl/0.45-1+squeeze1
- From: Salvatore Bonaccorso <carnil@debian.org>
- Date: Sun, 10 Feb 2013 17:00:33 +0100
- Message-id: <20130210160033.14602.18285.reportbug@elende.valinor.li>
Package: release.debian.org Severity: normal User: release.debian.org@packages.debian.org Usertags: pu Hi I prepared a patch for libproc-processtable-perl (the same as for the upload to unstable) to fix #650500: CVE-2011-4363, to fix unsafe use of temporary file. There is no DSA for this. https://security-tracker.debian.org/tracker/CVE-2011-4363 The debdiff contains a debian/gbp.conf (if needed I can remove it). This was added to ease the work in the pkg-perl git repos on that branch. Do the changes look ok for an upload via stable-proposed-updates for stable? The fix did not yet migrate to testing (I had just uploaded the fix to unstable). So it would be same ok to wait for that before proceeding. Regards, Salvatorediff -u libproc-processtable-perl-0.45/debian/changelog libproc-processtable-perl-0.45/debian/changelog --- libproc-processtable-perl-0.45/debian/changelog +++ libproc-processtable-perl-0.45/debian/changelog @@ -1,3 +1,10 @@ +libproc-processtable-perl (0.45-1+squeeze1) stable; urgency=low + + * Team upload. + * [SECURITY] CVE-2011-4363: Fix unsafe temporary file usage (Closes: #650500) + + -- Salvatore Bonaccorso <carnil@debian.org> Sun, 10 Feb 2013 16:16:41 +0100 + libproc-processtable-perl (0.45-1) unstable; urgency=low * New upstream release. only in patch2: unchanged: --- libproc-processtable-perl-0.45.orig/ProcessTable.pm +++ libproc-processtable-perl-0.45/ProcessTable.pm @@ -4,6 +4,7 @@ use strict; use Carp; +use Fcntl; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD); require Exporter; @@ -109,7 +110,11 @@ $self->_get_tty_list; my $old_umask = umask; umask 022; - Storable::store(\%Proc::ProcessTable::TTYDEVS, $TTYDEVSFILE); + + sysopen( my $ttydevs_fh, $TTYDEVSFILE, O_WRONLY | O_EXCL | O_CREAT ) + or die "$TTYDEVSFILE was created by other process"; + Storable::store_fd( \%Proc::ProcessTable::TTYDEVS, $ttydevs_fh ); + close $ttydevs_fh; umask $old_umask; } } only in patch2: unchanged: --- libproc-processtable-perl-0.45.orig/debian/gbp.conf +++ libproc-processtable-perl-0.45/debian/gbp.conf @@ -0,0 +1,2 @@ +[DEFAULT] +debian-branch = squeeze
--- End Message ---
--- Begin Message ---
- To: 689602-done@bugs.debian.org, 690552-done@bugs.debian.org, 690951-done@bugs.debian.org, 691142-done@bugs.debian.org, 691885-done@bugs.debian.org, 694329-done@bugs.debian.org, 695642-done@bugs.debian.org, 695956-done@bugs.debian.org, 696065-done@bugs.debian.org, 696158-done@bugs.debian.org, 696735-done@bugs.debian.org, 696778-done@bugs.debian.org, 697434-done@bugs.debian.org, 697563-done@bugs.debian.org, 697598-done@bugs.debian.org, 697798-done@bugs.debian.org, 698621-done@bugs.debian.org, 699228-done@bugs.debian.org, 699552-done@bugs.debian.org, 699696-done@bugs.debian.org, 700079-done@bugs.debian.org, 700163-done@bugs.debian.org, 700251-done@bugs.debian.org, 700277-done@bugs.debian.org, 700367-done@bugs.debian.org, 700393-done@bugs.debian.org, 700401-done@bugs.debian.org, 700523-done@bugs.debian.org, 700528-done@bugs.debian.org, 700563-done@bugs.debian.org, 700568-done@bugs.debian.org, 700672-done@bugs.debian.org, 700675-done@bugs.debian.org, 700724-done@bugs.debian.org, 700735-done@bugs.debian.org
- Subject: Closing p-u bugs included in point release
- From: "Adam D. Barratt" <adam@adam-barratt.org.uk>
- Date: Sat, 23 Feb 2013 11:56:55 +0000
- Message-id: <1361620615.20752.10.camel@jacala.jungle.funky-badger.org>
Version: 6.0.7 Hi, The package discussed in each of these bugs was added to stable as part of today's point release. Regards, Adam
--- End Message ---