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 580443 Details for
Bug 815813
CVE-2012-2141 net-snmp: Array index error, leading to out-of heap-based buffer read (snmpd crash)
[?]
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]
simple fix
net-snmp-extend-crash.patch (text/plain), 917 bytes, created by
Jan Safranek
on 2012-04-26 11:34:47 UTC
(
hide
)
Description:
simple fix
Filename:
MIME Type:
Creator:
Jan Safranek
Created:
2012-04-26 11:34:47 UTC
Size:
917 bytes
patch
obsolete
>commit 441a2998096eacd6e085a271b258bd41e29b340f >Author: Jan Safranek <jsafranek@users.sourceforge.net> >Date: Thu Apr 26 13:33:42 2012 +0200 > > Check out-of-index conditions in ExtendOutput2Table. > >diff --git a/agent/mibgroup/agent/extend.c b/agent/mibgroup/agent/extend.c >index 8268559..e7f09fd 100644 >--- a/agent/mibgroup/agent/extend.c >+++ b/agent/mibgroup/agent/extend.c >@@ -1401,6 +1401,10 @@ handle_nsExtendOutput2Table(netsnmp_mib_handler *handler, > * Determine which line we've been asked for.... > */ > line_idx = *table_info->indexes->next_variable->val.integer; >+ if (line_idx < 1 || line_idx > extension->numlines) { >+ netsnmp_set_request_error(reqinfo, request, SNMP_NOSUCHINSTANCE); >+ continue; >+ } > cp = extension->lines[line_idx-1]; > > /*
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 815813
: 580443