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 644988 Details for
Bug 871614
CVE-2012-4560 libssh: multiple buffer overflow flaws
[?]
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]
CVE-2012-4560-Fix-a-write-one-past-the-end-of-the-u-.patch
0005-CVE-2012-4560-Fix-a-write-one-past-the-end-of-the-u-.patch (text/plain), 719 bytes, created by
Andreas Schneider
on 2012-11-14 16:43:58 UTC
(
hide
)
Description:
CVE-2012-4560-Fix-a-write-one-past-the-end-of-the-u-.patch
Filename:
MIME Type:
Creator:
Andreas Schneider
Created:
2012-11-14 16:43:58 UTC
Size:
719 bytes
patch
obsolete
>From 64fca8a7ed83c3315781a77aac1ea36d52ff0c7e Mon Sep 17 00:00:00 2001 >From: Andreas Schneider <asn@cryptomilk.org> >Date: Fri, 5 Oct 2012 11:37:09 +0200 >Subject: [PATCH 05/13] CVE-2012-4560: Fix a write one past the end of the 'u' > buffer. > > >Signed-off-by: Andreas Schneider <asn@cryptomilk.org> >--- > src/misc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/src/misc.c b/src/misc.c >index dd5298f..6223035 100644 >--- a/src/misc.c >+++ b/src/misc.c >@@ -655,7 +655,7 @@ char *ssh_path_expand_tilde(const char *d) { > size_t s = p - d; > char u[128]; > >- if (s > sizeof(u)) { >+ if (s >= sizeof(u)) { > return NULL; > } > memcpy(u, d, s); >-- >1.8.0 >
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 871614
:
644664
|
644665
|
644666
|
644667
|
644668
|
644669
|
644988
|
644990