Your message dated Tue, 04 Dec 2007 10:02:23 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#454213: fixed in yarssr 0.2.2-4
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: yarssr
Version: 0.2.2-3
Severity: important
The fix for CVE-2007-5837 (bug #448721) splits the arguments up, but
keeps them quoted. Thus, the browser sees a URL in double quotes, and
gets thoroughly confused, erroring out.
Here's a patch which seems to cover all cases I can think of, though my
Perl isn't too sharp.
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.22-14-generic (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash
Versions of packages yarssr depends on:
ii libgnome2-perl 1.040-1 Perl interface to the GNOME librar
ii libgnome2-vfs-perl 1.080-1 Perl interface to the 2.x series o
ii libgtk2-gladexml-perl 1.006-1 Perl interface to use user interfa
ii libgtk2-perl 1:1.161-1 Perl interface to the 2.x series o
ii libgtk2-trayicon-perl 0.04-1 Perl interface to fill the system
ii libxml-rss-perl 1.31-2 Perl module for managing RSS (RDF
ii perl 5.8.8-12 Larry Wall's Practical Extraction
yarssr recommends no packages.
-- no debconf information
--- yarssr-0.2.2/lib/Yarssr/GUI.pm 2005-03-19 13:52:35.000000000 +1100
+++ GUI.pm 2007-12-04 09:59:06.000000000 +1100
@@ -162,9 +162,15 @@
);
}
else {
- my $b = Yarssr::Config->get_browser;
- $b .= " \"$url\"" unless $b =~ s/\%s/"$url"/;
- exec($b) or warn "unable to launch browser\n";
+ my @b = split(' ', Yarssr::Config->get_browser);
+ if (grep(/\%s/, @b))
+ {
+ map {grep(s/\%s/$url/, $_) => $_} @b;
+ }
+ else {
+ push(@b, $url);
+ }
+ exec(@b) or warn "unable to launch browser\n";
exit;
}
}
--- End Message ---
--- Begin Message ---
Source: yarssr
Source-Version: 0.2.2-4
We believe that the bug you reported is fixed in the latest version of
yarssr, which is due to be installed in the Debian FTP archive:
yarssr_0.2.2-4.diff.gz
to pool/main/y/yarssr/yarssr_0.2.2-4.diff.gz
yarssr_0.2.2-4.dsc
to pool/main/y/yarssr/yarssr_0.2.2-4.dsc
yarssr_0.2.2-4_all.deb
to pool/main/y/yarssr/yarssr_0.2.2-4_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Joachim Breitner <[EMAIL PROTECTED]> (supplier of updated yarssr package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 04 Dec 2007 10:52:36 +0100
Source: yarssr
Binary: yarssr
Architecture: source all
Version: 0.2.2-4
Distribution: unstable
Urgency: low
Maintainer: Joachim Breitner <[EMAIL PROTECTED]>
Changed-By: Joachim Breitner <[EMAIL PROTECTED]>
Description:
yarssr - RSS reader for the notification area
Closes: 454213
Changes:
yarssr (0.2.2-4) unstable; urgency=low
.
* Fix for CVE-2007-5837 breaks browser launching (Closes: #454213)
This is now the same patch that upstream has applied. Thanks to William
Grant for submitting it.
* Adding Homepage: field
* Adjust menu section
Files:
51ad972c6918072369445223bb55224e 609 net optional yarssr_0.2.2-4.dsc
d73542027bb9df51cbebbd2ec25b317b 6721 net optional yarssr_0.2.2-4.diff.gz
61c23c6aecb8a35c7079fd68c730ce00 24134 net optional yarssr_0.2.2-4_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHVSOa9ijrk0dDIGwRAoXtAKCfvQCCAezT8bExgEvTNR5gfg7CKACglmpx
3KnN1StCEh8UXSvKv718izo=
=JvHD
-----END PGP SIGNATURE-----
--- End Message ---