Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 685479 Details for
Bug 902998
CVE-2013-0211 libarchive: read buffer overflow on 64-bit systems
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
proposed upstream patch
libarchive-CVE-2013-0211-proposed.patch (text/plain), 827 bytes, created by
Vincent Danen
on 2013-01-22 22:05:51 UTC
(
hide
)
Description:
proposed upstream patch
Filename:
MIME Type:
Creator:
Vincent Danen
Created:
2013-01-22 22:05:51 UTC
Size:
827 bytes
patch
obsolete
>Index: /usr/src/contrib/libarchive/libarchive/archive_write.c >=================================================================== >--- /usr/src/contrib/libarchive/libarchive/archive_write.c (revision 245100) >+++ /usr/src/contrib/libarchive/libarchive/archive_write.c (working copy) >@@ -665,8 +665,13 @@ > _archive_write_data(struct archive *_a, const void *buff, size_t s) > { > struct archive_write *a = (struct archive_write *)_a; >+ size_t max_write = INTMAX; >+ > archive_check_magic(&a->archive, ARCHIVE_WRITE_MAGIC, > ARCHIVE_STATE_DATA, "archive_write_data"); >+ /* In particular, this catches attempts to pass negative values. */ >+ if (s > max_write) >+ s = max_write; > archive_clear_error(&a->archive); > return ((a->format_write_data)(a, buff, s)); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 902998
: 685479