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 629285 Details for
Bug 867790
CVE-2012-4527 mcrypt: stack-based buffer overflow by encryption / decryption of overly long file names
[?]
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]
patch to fix the buffer overflow
mcrypt-2.6.8-snprintf.patch (text/plain), 2.71 KB, created by
Attila Bogar
on 2012-10-18 10:00:02 UTC
(
hide
)
Description:
patch to fix the buffer overflow
Filename:
MIME Type:
Creator:
Attila Bogar
Created:
2012-10-18 10:00:02 UTC
Size:
2.71 KB
patch
obsolete
>--- mcrypt-2.6.8/src/mcrypt.c.orig 2012-10-17 17:47:19.572674314 +0100 >+++ mcrypt-2.6.8/src/mcrypt.c 2012-10-18 10:20:21.694655043 +0100 >@@ -41,6 +41,8 @@ > # include <time.h> > #endif > >+#define WIDTH 132 >+ > static char rcsid[] = > "$Id: mcrypt.c,v 1.2 2007/11/07 17:10:21 nmav Exp $"; > >@@ -482,7 +484,7 @@ > #ifdef HAVE_STAT > if (stream_flag == FALSE) { > if (is_normal_file(file[i]) == FALSE) { >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("%s: %s is not a regular file. Skipping...\n"), > program_name, file[i]); >@@ -501,7 +503,7 @@ > dinfile = file[i]; > if ((isatty(fileno((FILE *) (stdin))) == 1) > && (stream_flag == TRUE) && (force == 0)) { /* not a tty */ >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("%s: Encrypted data will not be read from a terminal.\n"), > program_name); >@@ -520,7 +522,7 @@ > einfile = file[i]; > if ((isatty(fileno((FILE *) (stdout))) == 1) > && (stream_flag == TRUE) && (force == 0)) { /* not a tty */ >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("%s: Encrypted data will not be written to a terminal.\n"), > program_name); >@@ -544,7 +546,7 @@ > strcpy(outfile, einfile); > /* if file has already the .nc ignore it */ > if (strstr(outfile, ".nc") != NULL) { >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("%s: file %s has the .nc suffix... skipping...\n"), > program_name, outfile); >@@ -590,10 +592,10 @@ > > if (x == 0) { > if (stream_flag == FALSE) { >- sprintf(tmperr, _("File %s was decrypted.\n"), dinfile); >+ snprintf(tmperr, WIDTH, _("File %s was decrypted.\n"), dinfile); > err_warn(tmperr); > } else { >- sprintf(tmperr, _("Stdin was decrypted.\n")); >+ snprintf(tmperr, WIDTH, _("Stdin was decrypted.\n")); > err_warn(tmperr); > } > #ifdef HAVE_STAT >@@ -610,7 +612,7 @@ > > } else { > if (stream_flag == FALSE) { >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("File %s was NOT decrypted successfully.\n"), > dinfile); >@@ -636,10 +638,10 @@ > > if (x == 0) { > if (stream_flag == FALSE) { >- sprintf(tmperr, _("File %s was encrypted.\n"), einfile); >+ snprintf(tmperr, WIDTH, _("File %s was encrypted.\n"), einfile); > err_warn(tmperr); > } else { >- sprintf(tmperr, _("Stdin was encrypted.\n")); >+ snprintf(tmperr, WIDTH, _("Stdin was encrypted.\n")); > err_warn(tmperr); > } > #ifdef HAVE_STAT >@@ -655,7 +657,7 @@ > > } else { > if (stream_flag == FALSE) { >- sprintf(tmperr, >+ snprintf(tmperr, WIDTH, > _ > ("File %s was NOT encrypted successfully.\n"), > einfile);
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 867790
: 629285 |
629286
|
635243
|
637190