Bug 1062424 (CVE-2014-1875) - CVE-2014-1875 perl-Capture-Tiny: insecure temporary file usage
Summary: CVE-2014-1875 perl-Capture-Tiny: insecure temporary file usage
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: CVE-2014-1875
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Red Hat Product Security
QA Contact:
URL:
Whiteboard:
Depends On: 1062426 1062427 1063306
Blocks: 1062425
TreeView+ depends on / blocked
 
Reported: 2014-02-06 22:03 UTC by Martin Prpič
Modified: 2020-11-01 02:20 UTC (History)
10 users (show)

Fixed In Version: perl-Capture-Tiny 0.24
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2020-11-01 02:20:50 UTC
Embargoed:


Attachments (Terms of Use)

Description Martin Prpič 2014-02-06 22:03:29 UTC
It was found [1] that the Capture::Tiny module, provided by the perl-Capture-Tiny package, used the File::temp::tmpnam module to generate temporary files:

./lib/Capture/Tiny.pm:  $stash->{flag_files}{$which} = scalar tmpnam();

This module makes use of the mktemp() function when called in the scalar context, which creates significantly more predictable temporary files. Additionally, the temporary file is created with world-writable (0666) permission. A local attacker could use this flaw to perform a symbolic link attack, overwriting arbitrary files accessible to a program using the Capture::Tiny module.

This issue has been reported upstream [2], but has not yet been fixed.

[1] http://seclists.org/oss-sec/2014/q1/267
[2] https://github.com/dagolden/Capture-Tiny/issues/16

Comment 2 Martin Prpič 2014-02-06 22:16:46 UTC
Created perl-Capture-Tiny tracking bugs for this issue:

Affects: fedora-all [bug 1062426]

Comment 3 Murray McAllister 2014-02-07 05:59:29 UTC
This issue was assigned CVE-2014-1875: http://seclists.org/oss-sec/2014/q1/272

Comment 4 Petr Pisar 2014-02-10 07:27:09 UTC
Reproducer:

$ strace -fq -e open -- perl -MCapture::Tiny -e 'Capture::Tiny::tee_stdout { print qq{foo\n} }' 2>&1 | grep 'O_CREAT' | grep -v O_EXCL
[pid  8578] open("/tmp/uAM1hQ9lbl", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3

There shouldn't be any open(, O_CREAT) without O_EXCL.

Fixed with upstream commit <https://github.com/dagolden/Capture-Tiny/commit/635c9eabd52ab8042b0c841823bd6e692de87924> and released in 0.24 <http://cpansearch.perl.org/src/DAGOLDEN/Capture-Tiny-0.24/Changes>. This fix creates new files with O_EXCL flag.

Comment 6 Fedora Update System 2014-02-22 00:49:43 UTC
perl-Capture-Tiny-0.24-1.fc19 has been pushed to the Fedora 19 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 7 Fedora Update System 2014-02-22 01:00:27 UTC
perl-Capture-Tiny-0.24-1.fc20 has been pushed to the Fedora 20 stable repository.  If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.