rhsa-2015_1385
Vulnerability from csaf_redhat
Published
2015-07-20 14:07
Modified
2024-11-22 08:56
Summary
Red Hat Security Advisory: net-snmp security and bug fix update
Notes
Topic
Updated net-snmp packages that fix one security issue and several bugs are
now available for Red Hat Enterprise Linux 6.
Red Hat Product Security has rated this update as having Moderate security
impact. A Common Vulnerability Scoring System (CVSS) base score, which
gives a detailed severity rating, is available from the CVE link in the
References section.
Details
The net-snmp packages provide various libraries and tools for the Simple
Network Management Protocol (SNMP), including an SNMP library, an
extensible agent, tools for requesting or setting information from SNMP
agents, tools for generating and handling SNMP traps, a version of the
netstat command which uses SNMP, and a Tk/Perl Management Information Base
(MIB) browser.
A denial of service flaw was found in the way snmptrapd handled certain
SNMP traps when started with the "-OQ" option. If an attacker sent an SNMP
trap containing a variable with a NULL type where an integer variable type
was expected, it would cause snmptrapd to crash. (CVE-2014-3565)
This update also fixes the following bugs:
* The HOST-RESOURCES-MIB::hrSystemProcesses object was not implemented
because parts of the HOST-RESOURCES-MIB module were rewritten in an earlier
version of net-snmp. Consequently, HOST-RESOURCES-MIB::hrSystemProcesses
did not provide information on the number of currently loaded or running
processes. With this update, HOST-RESOURCES-MIB::hrSystemProcesses has been
implemented, and the net-snmp daemon reports as expected. (BZ#1134335)
* The Net-SNMP agent daemon, snmpd, reloaded the system ARP table every 60
seconds. As a consequence, snmpd could cause a short CPU usage spike on
busy systems with a large APR table. With this update, snmpd does not
reload the full ARP table periodically, but monitors the table changes
using a netlink socket. (BZ#789500)
* Previously, snmpd used an invalid pointer to the current time when
periodically checking certain conditions specified by the "monitor" option
in the /etc/snmpd/snmpd.conf file. Consequently, snmpd terminated
unexpectedly on start with a segmentation fault if a certain entry with the
"monitor" option was used. Now, snmpd initializes the correct pointer
to the current time, and snmpd no longer crashes on start. (BZ#1050970)
* Previously, snmpd expected 8-bit network interface indices when
processing HOST-RESOURCES-MIB::hrDeviceTable. If an interface index of a
local network interface was larger than 30,000 items, snmpd could terminate
unexpectedly due to accessing invalid memory. Now, processing of all
network sizes is enabled, and snmpd no longer crashes in the described
situation. (BZ#1195547)
* The snmpdtrapd service incorrectly checked for errors when forwarding a
trap with a RequestID value of 0, and logged "Forward failed" even though
the trap was successfully forwarded. This update fixes snmptrapd checks and
the aforementioned message is now logged only when appropriate.
(BZ#1146948)
* Previously, snmpd ignored the value of the "storageUseNFS" option in the
/etc/snmpd/snmpd.conf file. As a consequence, NFS drivers were shown as
"Network Disks", even though "storageUseNFS" was set to "2" to report them
as "Fixed Disks" in HOST-RESOURCES-MIB::hrStorageTable. With this update,
snmpd takes the "storageUseNFS" option value into account, and "Fixed Disks"
NFS drives are reported correctly. (BZ#1125793)
* Previously, the Net-SNMP python binding used an incorrect size (8 bytes
instead of 4) for variables of IPADDRESS type. Consequently, applications
that were using Net-SNMP Python bindings could send malformed SNMP
messages. With this update, the bindings now use 4 bytes for variables with
IPADRESS type, and only valid SNMP messages are sent. (BZ#1100099)
* Previously, the snmpd service did not cut values in
HOST-RESOURCES-MIB::hrStorageTable to signed 32-bit integers, as required
by SNMP standards, and provided the values as unsigned integers. As a
consequence, the HOST-RESOURCES-MIB::hrStorageTable implementation did not
conform to RFC 2790. The values are now cut to 32-bit signed integers, and
snmpd is therefore standard compliant. (BZ#1104293)
Users of net-snmp are advised to upgrade to these updated packages, which
contain backported patches to correct these issues.
Terms of Use
This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Updated net-snmp packages that fix one security issue and several bugs are\nnow available for Red Hat Enterprise Linux 6.\n\nRed Hat Product Security has rated this update as having Moderate security\nimpact. A Common Vulnerability Scoring System (CVSS) base score, which\ngives a detailed severity rating, is available from the CVE link in the\nReferences section.", "title": "Topic" }, { "category": "general", "text": "The net-snmp packages provide various libraries and tools for the Simple\nNetwork Management Protocol (SNMP), including an SNMP library, an\nextensible agent, tools for requesting or setting information from SNMP\nagents, tools for generating and handling SNMP traps, a version of the\nnetstat command which uses SNMP, and a Tk/Perl Management Information Base\n(MIB) browser.\n\nA denial of service flaw was found in the way snmptrapd handled certain\nSNMP traps when started with the \"-OQ\" option. If an attacker sent an SNMP\ntrap containing a variable with a NULL type where an integer variable type\nwas expected, it would cause snmptrapd to crash. (CVE-2014-3565)\n\nThis update also fixes the following bugs:\n\n* The HOST-RESOURCES-MIB::hrSystemProcesses object was not implemented\nbecause parts of the HOST-RESOURCES-MIB module were rewritten in an earlier\nversion of net-snmp. Consequently, HOST-RESOURCES-MIB::hrSystemProcesses\ndid not provide information on the number of currently loaded or running\nprocesses. With this update, HOST-RESOURCES-MIB::hrSystemProcesses has been\nimplemented, and the net-snmp daemon reports as expected. (BZ#1134335)\n\n* The Net-SNMP agent daemon, snmpd, reloaded the system ARP table every 60\nseconds. As a consequence, snmpd could cause a short CPU usage spike on\nbusy systems with a large APR table. With this update, snmpd does not\nreload the full ARP table periodically, but monitors the table changes\nusing a netlink socket. (BZ#789500)\n\n* Previously, snmpd used an invalid pointer to the current time when\nperiodically checking certain conditions specified by the \"monitor\" option\nin the /etc/snmpd/snmpd.conf file. Consequently, snmpd terminated\nunexpectedly on start with a segmentation fault if a certain entry with the\n\"monitor\" option was used. Now, snmpd initializes the correct pointer\nto the current time, and snmpd no longer crashes on start. (BZ#1050970)\n\n* Previously, snmpd expected 8-bit network interface indices when\nprocessing HOST-RESOURCES-MIB::hrDeviceTable. If an interface index of a\nlocal network interface was larger than 30,000 items, snmpd could terminate\nunexpectedly due to accessing invalid memory. Now, processing of all\nnetwork sizes is enabled, and snmpd no longer crashes in the described\nsituation. (BZ#1195547)\n\n* The snmpdtrapd service incorrectly checked for errors when forwarding a\ntrap with a RequestID value of 0, and logged \"Forward failed\" even though\nthe trap was successfully forwarded. This update fixes snmptrapd checks and\nthe aforementioned message is now logged only when appropriate.\n(BZ#1146948)\n\n* Previously, snmpd ignored the value of the \"storageUseNFS\" option in the\n/etc/snmpd/snmpd.conf file. As a consequence, NFS drivers were shown as\n\"Network Disks\", even though \"storageUseNFS\" was set to \"2\" to report them\nas \"Fixed Disks\" in HOST-RESOURCES-MIB::hrStorageTable. With this update,\nsnmpd takes the \"storageUseNFS\" option value into account, and \"Fixed Disks\"\nNFS drives are reported correctly. (BZ#1125793)\n\n* Previously, the Net-SNMP python binding used an incorrect size (8 bytes\ninstead of 4) for variables of IPADDRESS type. Consequently, applications\nthat were using Net-SNMP Python bindings could send malformed SNMP\nmessages. With this update, the bindings now use 4 bytes for variables with\nIPADRESS type, and only valid SNMP messages are sent. (BZ#1100099)\n\n* Previously, the snmpd service did not cut values in\nHOST-RESOURCES-MIB::hrStorageTable to signed 32-bit integers, as required\nby SNMP standards, and provided the values as unsigned integers. As a\nconsequence, the HOST-RESOURCES-MIB::hrStorageTable implementation did not\nconform to RFC 2790. The values are now cut to 32-bit signed integers, and\nsnmpd is therefore standard compliant. (BZ#1104293)\n\nUsers of net-snmp are advised to upgrade to these updated packages, which\ncontain backported patches to correct these issues.", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2015:1385", "url": "https://access.redhat.com/errata/RHSA-2015:1385" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "886468", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=886468" }, { "category": "external", "summary": "967871", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=967871" }, { "category": "external", "summary": "1023570", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1023570" }, { "category": "external", "summary": "1034441", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1034441" }, { "category": "external", "summary": "1069046", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1069046" }, { "category": "external", "summary": "1070075", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1070075" }, { "category": "external", "summary": "1073544", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1073544" }, { "category": "external", "summary": "1100099", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1100099" }, { "category": "external", "summary": "1119567", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1119567" }, { "category": "external", "summary": "1125155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1125155" }, { "category": "external", "summary": "1125793", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1125793" }, { "category": "external", "summary": "1126914", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1126914" }, { "category": "external", "summary": "1134335", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1134335" }, { "category": "external", "summary": "1157373", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1157373" }, { "category": "external", "summary": "1181994", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1181994" }, { "category": "external", "summary": "1188295", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1188295" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2015/rhsa-2015_1385.json" } ], "title": "Red Hat Security Advisory: net-snmp security and bug fix update", "tracking": { "current_release_date": "2024-11-22T08:56:24+00:00", "generator": { "date": "2024-11-22T08:56:24+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.2.1" } }, "id": "RHSA-2015:1385", "initial_release_date": "2015-07-20T14:07:39+00:00", "revision_history": [ { "date": "2015-07-20T14:07:39+00:00", "number": "1", "summary": "Initial version" }, { "date": "2015-07-20T14:07:39+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-22T08:56:24+00:00", "number": "3", "summary": "Last generated version" } ], "status": "final", "version": "3" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux Desktop (v. 6)", "product": { "name": "Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::client" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Desktop Optional (v. 6)", "product": { "name": "Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::client" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux HPC Node (v. 6)", "product": { "name": "Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::computenode" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product": { "name": "Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::computenode" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Server (v. 6)", "product": { "name": "Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::server" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Workstation (v. 6)", "product": { "name": "Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:6::workstation" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "net-snmp-1:5.5-54.el6.i686", "product": { "name": "net-snmp-1:5.5-54.el6.i686", "product_id": "net-snmp-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.i686", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.i686", "product": { "name": "net-snmp-libs-1:5.5-54.el6.i686", "product_id": "net-snmp-libs-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-python-1:5.5-54.el6.i686", "product": { "name": "net-snmp-python-1:5.5-54.el6.i686", "product_id": "net-snmp-python-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-python@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-utils-1:5.5-54.el6.i686", "product": { "name": "net-snmp-utils-1:5.5-54.el6.i686", "product_id": "net-snmp-utils-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-utils@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-perl-1:5.5-54.el6.i686", "product": { "name": "net-snmp-perl-1:5.5-54.el6.i686", "product_id": "net-snmp-perl-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-perl@5.5-54.el6?arch=i686\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.i686", "product": { "name": "net-snmp-devel-1:5.5-54.el6.i686", "product_id": "net-snmp-devel-1:5.5-54.el6.i686", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=i686\u0026epoch=1" } } } ], "category": "architecture", "name": "i686" }, { "branches": [ { "category": "product_version", "name": "net-snmp-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-1:5.5-54.el6.x86_64", "product_id": "net-snmp-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64", "product_id": "net-snmp-libs-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-utils-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64", "product_id": "net-snmp-utils-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-utils@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-perl-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64", "product_id": "net-snmp-perl-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-perl@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64", "product_id": "net-snmp-devel-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=x86_64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-python-1:5.5-54.el6.x86_64", "product": { "name": "net-snmp-python-1:5.5-54.el6.x86_64", "product_id": "net-snmp-python-1:5.5-54.el6.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-python@5.5-54.el6?arch=x86_64\u0026epoch=1" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "net-snmp-1:5.5-54.el6.src", "product": { "name": "net-snmp-1:5.5-54.el6.src", "product_id": "net-snmp-1:5.5-54.el6.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp@5.5-54.el6?arch=src\u0026epoch=1" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "net-snmp-python-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-python-1:5.5-54.el6.s390x", "product_id": "net-snmp-python-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-python@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-utils-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-utils-1:5.5-54.el6.s390x", "product_id": "net-snmp-utils-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-utils@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-devel-1:5.5-54.el6.s390x", "product_id": "net-snmp-devel-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-1:5.5-54.el6.s390x", "product_id": "net-snmp-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-libs-1:5.5-54.el6.s390x", "product_id": "net-snmp-libs-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=s390x\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-perl-1:5.5-54.el6.s390x", "product": { "name": "net-snmp-perl-1:5.5-54.el6.s390x", "product_id": "net-snmp-perl-1:5.5-54.el6.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-perl@5.5-54.el6?arch=s390x\u0026epoch=1" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.s390", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.s390", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=s390\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.s390", "product": { "name": "net-snmp-devel-1:5.5-54.el6.s390", "product_id": "net-snmp-devel-1:5.5-54.el6.s390", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=s390\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.s390", "product": { "name": "net-snmp-libs-1:5.5-54.el6.s390", "product_id": "net-snmp-libs-1:5.5-54.el6.s390", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=s390\u0026epoch=1" } } } ], "category": "architecture", "name": "s390" }, { "branches": [ { "category": "product_version", "name": "net-snmp-python-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-python-1:5.5-54.el6.ppc64", "product_id": "net-snmp-python-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-python@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-1:5.5-54.el6.ppc64", "product_id": "net-snmp-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-utils-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64", "product_id": "net-snmp-utils-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-utils@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64", "product_id": "net-snmp-devel-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-perl-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64", "product_id": "net-snmp-perl-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-perl@5.5-54.el6?arch=ppc64\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.ppc64", "product": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64", "product_id": "net-snmp-libs-1:5.5-54.el6.ppc64", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=ppc64\u0026epoch=1" } } } ], "category": "architecture", "name": "ppc64" }, { "branches": [ { "category": "product_version", "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "product": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "product_id": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-debuginfo@5.5-54.el6?arch=ppc\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-libs-1:5.5-54.el6.ppc", "product": { "name": "net-snmp-libs-1:5.5-54.el6.ppc", "product_id": "net-snmp-libs-1:5.5-54.el6.ppc", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-libs@5.5-54.el6?arch=ppc\u0026epoch=1" } } }, { "category": "product_version", "name": "net-snmp-devel-1:5.5-54.el6.ppc", "product": { "name": "net-snmp-devel-1:5.5-54.el6.ppc", "product_id": "net-snmp-devel-1:5.5-54.el6.ppc", "product_identification_helper": { "purl": "pkg:rpm/redhat/net-snmp-devel@5.5-54.el6?arch=ppc\u0026epoch=1" } } } ], "category": "architecture", "name": "ppc" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop Optional (v. 6)", "product_id": "6Client-optional:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Desktop (v. 6)", "product_id": "6Client:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Client" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node Optional (v. 6)", "product_id": "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode-optional" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux HPC Node (v. 6)", "product_id": "6ComputeNode:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6ComputeNode" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Server (v. 6)", "product_id": "6Server:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Server" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.src as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-1:5.5-54.el6.src" }, "product_reference": "net-snmp-1:5.5-54.el6.src", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-debuginfo-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-debuginfo-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-devel-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-devel-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-devel-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.s390" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-libs-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-libs-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-libs-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-perl-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-perl-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-perl-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-perl-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-perl-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-perl-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-python-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-python-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-python-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-python-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-python-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-python-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-python-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-python-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.i686 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-utils-1:5.5-54.el6.i686" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.i686", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.ppc64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-utils-1:5.5-54.el6.ppc64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.ppc64", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.s390x as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-utils-1:5.5-54.el6.s390x" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.s390x", "relates_to_product_reference": "6Workstation" }, { "category": "default_component_of", "full_product_name": { "name": "net-snmp-utils-1:5.5-54.el6.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 6)", "product_id": "6Workstation:net-snmp-utils-1:5.5-54.el6.x86_64" }, "product_reference": "net-snmp-utils-1:5.5-54.el6.x86_64", "relates_to_product_reference": "6Workstation" } ] }, "vulnerabilities": [ { "cve": "CVE-2014-3565", "cwe": { "id": "CWE-843", "name": "Access of Resource Using Incompatible Type (\u0027Type Confusion\u0027)" }, "discovery_date": "2014-07-30T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "1125155" } ], "notes": [ { "category": "description", "text": "A denial of service flaw was found in the way snmptrapd handled certain SNMP traps when started with the \"-OQ\" option. If an attacker sent an SNMP trap containing a variable with a NULL type where an integer variable type was expected, it would cause snmptrapd to crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "net-snmp: snmptrapd crash when handling an SNMP trap containing a ifMtu with a NULL type", "title": "Vulnerability summary" }, { "category": "other", "text": "This issue affects the versions of net-snmp as shipped with Red Hat Enterprise Linux 5. Red Hat Enterprise Linux 5 is now in Production 3 Phase of the support and maintenance life cycle. This has been rated as having Moderate security impact and is not currently planned to be addressed in future updates.", "title": "Statement" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "6Client-optional:net-snmp-1:5.5-54.el6.i686", "6Client-optional:net-snmp-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-1:5.5-54.el6.src", "6Client-optional:net-snmp-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.i686", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.i686", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.i686", "6Client-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-python-1:5.5-54.el6.i686", "6Client-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-python-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.i686", "6Client-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6Client:net-snmp-1:5.5-54.el6.i686", "6Client:net-snmp-1:5.5-54.el6.ppc64", "6Client:net-snmp-1:5.5-54.el6.s390x", "6Client:net-snmp-1:5.5-54.el6.src", "6Client:net-snmp-1:5.5-54.el6.x86_64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client:net-snmp-devel-1:5.5-54.el6.i686", "6Client:net-snmp-devel-1:5.5-54.el6.ppc", "6Client:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client:net-snmp-devel-1:5.5-54.el6.s390", "6Client:net-snmp-devel-1:5.5-54.el6.s390x", "6Client:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client:net-snmp-libs-1:5.5-54.el6.i686", "6Client:net-snmp-libs-1:5.5-54.el6.ppc", "6Client:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client:net-snmp-libs-1:5.5-54.el6.s390", "6Client:net-snmp-libs-1:5.5-54.el6.s390x", "6Client:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client:net-snmp-perl-1:5.5-54.el6.i686", "6Client:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client:net-snmp-perl-1:5.5-54.el6.s390x", "6Client:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client:net-snmp-python-1:5.5-54.el6.i686", "6Client:net-snmp-python-1:5.5-54.el6.ppc64", "6Client:net-snmp-python-1:5.5-54.el6.s390x", "6Client:net-snmp-python-1:5.5-54.el6.x86_64", "6Client:net-snmp-utils-1:5.5-54.el6.i686", "6Client:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client:net-snmp-utils-1:5.5-54.el6.s390x", "6Client:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.src", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-1:5.5-54.el6.src", "6ComputeNode:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.x86_64", "6Server:net-snmp-1:5.5-54.el6.i686", "6Server:net-snmp-1:5.5-54.el6.ppc64", "6Server:net-snmp-1:5.5-54.el6.s390x", "6Server:net-snmp-1:5.5-54.el6.src", "6Server:net-snmp-1:5.5-54.el6.x86_64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Server:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Server:net-snmp-devel-1:5.5-54.el6.i686", "6Server:net-snmp-devel-1:5.5-54.el6.ppc", "6Server:net-snmp-devel-1:5.5-54.el6.ppc64", "6Server:net-snmp-devel-1:5.5-54.el6.s390", "6Server:net-snmp-devel-1:5.5-54.el6.s390x", "6Server:net-snmp-devel-1:5.5-54.el6.x86_64", "6Server:net-snmp-libs-1:5.5-54.el6.i686", "6Server:net-snmp-libs-1:5.5-54.el6.ppc", "6Server:net-snmp-libs-1:5.5-54.el6.ppc64", "6Server:net-snmp-libs-1:5.5-54.el6.s390", "6Server:net-snmp-libs-1:5.5-54.el6.s390x", "6Server:net-snmp-libs-1:5.5-54.el6.x86_64", "6Server:net-snmp-perl-1:5.5-54.el6.i686", "6Server:net-snmp-perl-1:5.5-54.el6.ppc64", "6Server:net-snmp-perl-1:5.5-54.el6.s390x", "6Server:net-snmp-perl-1:5.5-54.el6.x86_64", "6Server:net-snmp-python-1:5.5-54.el6.i686", "6Server:net-snmp-python-1:5.5-54.el6.ppc64", "6Server:net-snmp-python-1:5.5-54.el6.s390x", "6Server:net-snmp-python-1:5.5-54.el6.x86_64", "6Server:net-snmp-utils-1:5.5-54.el6.i686", "6Server:net-snmp-utils-1:5.5-54.el6.ppc64", "6Server:net-snmp-utils-1:5.5-54.el6.s390x", "6Server:net-snmp-utils-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-1:5.5-54.el6.i686", "6Workstation:net-snmp-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-1:5.5-54.el6.s390x", "6Workstation:net-snmp-1:5.5-54.el6.src", "6Workstation:net-snmp-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-devel-1:5.5-54.el6.i686", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390x", "6Workstation:net-snmp-devel-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-libs-1:5.5-54.el6.i686", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390x", "6Workstation:net-snmp-libs-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-perl-1:5.5-54.el6.i686", "6Workstation:net-snmp-perl-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-perl-1:5.5-54.el6.s390x", "6Workstation:net-snmp-perl-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-python-1:5.5-54.el6.i686", "6Workstation:net-snmp-python-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-python-1:5.5-54.el6.s390x", "6Workstation:net-snmp-python-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-utils-1:5.5-54.el6.i686", "6Workstation:net-snmp-utils-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-utils-1:5.5-54.el6.s390x", "6Workstation:net-snmp-utils-1:5.5-54.el6.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2014-3565" }, { "category": "external", "summary": "RHBZ#1125155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1125155" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2014-3565", "url": "https://www.cve.org/CVERecord?id=CVE-2014-3565" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2014-3565", "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3565" } ], "release_date": "2014-08-31T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2015-07-20T14:07:39+00:00", "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "6Client-optional:net-snmp-1:5.5-54.el6.i686", "6Client-optional:net-snmp-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-1:5.5-54.el6.src", "6Client-optional:net-snmp-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.i686", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.i686", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.i686", "6Client-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-python-1:5.5-54.el6.i686", "6Client-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-python-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.i686", "6Client-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6Client:net-snmp-1:5.5-54.el6.i686", "6Client:net-snmp-1:5.5-54.el6.ppc64", "6Client:net-snmp-1:5.5-54.el6.s390x", "6Client:net-snmp-1:5.5-54.el6.src", "6Client:net-snmp-1:5.5-54.el6.x86_64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client:net-snmp-devel-1:5.5-54.el6.i686", "6Client:net-snmp-devel-1:5.5-54.el6.ppc", "6Client:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client:net-snmp-devel-1:5.5-54.el6.s390", "6Client:net-snmp-devel-1:5.5-54.el6.s390x", "6Client:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client:net-snmp-libs-1:5.5-54.el6.i686", "6Client:net-snmp-libs-1:5.5-54.el6.ppc", "6Client:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client:net-snmp-libs-1:5.5-54.el6.s390", "6Client:net-snmp-libs-1:5.5-54.el6.s390x", "6Client:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client:net-snmp-perl-1:5.5-54.el6.i686", "6Client:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client:net-snmp-perl-1:5.5-54.el6.s390x", "6Client:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client:net-snmp-python-1:5.5-54.el6.i686", "6Client:net-snmp-python-1:5.5-54.el6.ppc64", "6Client:net-snmp-python-1:5.5-54.el6.s390x", "6Client:net-snmp-python-1:5.5-54.el6.x86_64", "6Client:net-snmp-utils-1:5.5-54.el6.i686", "6Client:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client:net-snmp-utils-1:5.5-54.el6.s390x", "6Client:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.src", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-1:5.5-54.el6.src", "6ComputeNode:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.x86_64", "6Server:net-snmp-1:5.5-54.el6.i686", "6Server:net-snmp-1:5.5-54.el6.ppc64", "6Server:net-snmp-1:5.5-54.el6.s390x", "6Server:net-snmp-1:5.5-54.el6.src", "6Server:net-snmp-1:5.5-54.el6.x86_64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Server:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Server:net-snmp-devel-1:5.5-54.el6.i686", "6Server:net-snmp-devel-1:5.5-54.el6.ppc", "6Server:net-snmp-devel-1:5.5-54.el6.ppc64", "6Server:net-snmp-devel-1:5.5-54.el6.s390", "6Server:net-snmp-devel-1:5.5-54.el6.s390x", "6Server:net-snmp-devel-1:5.5-54.el6.x86_64", "6Server:net-snmp-libs-1:5.5-54.el6.i686", "6Server:net-snmp-libs-1:5.5-54.el6.ppc", "6Server:net-snmp-libs-1:5.5-54.el6.ppc64", "6Server:net-snmp-libs-1:5.5-54.el6.s390", "6Server:net-snmp-libs-1:5.5-54.el6.s390x", "6Server:net-snmp-libs-1:5.5-54.el6.x86_64", "6Server:net-snmp-perl-1:5.5-54.el6.i686", "6Server:net-snmp-perl-1:5.5-54.el6.ppc64", "6Server:net-snmp-perl-1:5.5-54.el6.s390x", "6Server:net-snmp-perl-1:5.5-54.el6.x86_64", "6Server:net-snmp-python-1:5.5-54.el6.i686", "6Server:net-snmp-python-1:5.5-54.el6.ppc64", "6Server:net-snmp-python-1:5.5-54.el6.s390x", "6Server:net-snmp-python-1:5.5-54.el6.x86_64", "6Server:net-snmp-utils-1:5.5-54.el6.i686", "6Server:net-snmp-utils-1:5.5-54.el6.ppc64", "6Server:net-snmp-utils-1:5.5-54.el6.s390x", "6Server:net-snmp-utils-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-1:5.5-54.el6.i686", "6Workstation:net-snmp-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-1:5.5-54.el6.s390x", "6Workstation:net-snmp-1:5.5-54.el6.src", "6Workstation:net-snmp-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-devel-1:5.5-54.el6.i686", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390x", "6Workstation:net-snmp-devel-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-libs-1:5.5-54.el6.i686", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390x", "6Workstation:net-snmp-libs-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-perl-1:5.5-54.el6.i686", "6Workstation:net-snmp-perl-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-perl-1:5.5-54.el6.s390x", "6Workstation:net-snmp-perl-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-python-1:5.5-54.el6.i686", "6Workstation:net-snmp-python-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-python-1:5.5-54.el6.s390x", "6Workstation:net-snmp-python-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-utils-1:5.5-54.el6.i686", "6Workstation:net-snmp-utils-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-utils-1:5.5-54.el6.s390x", "6Workstation:net-snmp-utils-1:5.5-54.el6.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2015:1385" } ], "scores": [ { "cvss_v2": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 4.3, "confidentialityImpact": "NONE", "integrityImpact": "NONE", "vectorString": "AV:N/AC:M/Au:N/C:N/I:N/A:P", "version": "2.0" }, "products": [ "6Client-optional:net-snmp-1:5.5-54.el6.i686", "6Client-optional:net-snmp-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-1:5.5-54.el6.src", "6Client-optional:net-snmp-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.i686", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390", "6Client-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.i686", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6Client-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390", "6Client-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.i686", "6Client-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-python-1:5.5-54.el6.i686", "6Client-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-python-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.i686", "6Client-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6Client-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6Client:net-snmp-1:5.5-54.el6.i686", "6Client:net-snmp-1:5.5-54.el6.ppc64", "6Client:net-snmp-1:5.5-54.el6.s390x", "6Client:net-snmp-1:5.5-54.el6.src", "6Client:net-snmp-1:5.5-54.el6.x86_64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Client:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Client:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Client:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Client:net-snmp-devel-1:5.5-54.el6.i686", "6Client:net-snmp-devel-1:5.5-54.el6.ppc", "6Client:net-snmp-devel-1:5.5-54.el6.ppc64", "6Client:net-snmp-devel-1:5.5-54.el6.s390", "6Client:net-snmp-devel-1:5.5-54.el6.s390x", "6Client:net-snmp-devel-1:5.5-54.el6.x86_64", "6Client:net-snmp-libs-1:5.5-54.el6.i686", "6Client:net-snmp-libs-1:5.5-54.el6.ppc", "6Client:net-snmp-libs-1:5.5-54.el6.ppc64", "6Client:net-snmp-libs-1:5.5-54.el6.s390", "6Client:net-snmp-libs-1:5.5-54.el6.s390x", "6Client:net-snmp-libs-1:5.5-54.el6.x86_64", "6Client:net-snmp-perl-1:5.5-54.el6.i686", "6Client:net-snmp-perl-1:5.5-54.el6.ppc64", "6Client:net-snmp-perl-1:5.5-54.el6.s390x", "6Client:net-snmp-perl-1:5.5-54.el6.x86_64", "6Client:net-snmp-python-1:5.5-54.el6.i686", "6Client:net-snmp-python-1:5.5-54.el6.ppc64", "6Client:net-snmp-python-1:5.5-54.el6.s390x", "6Client:net-snmp-python-1:5.5-54.el6.x86_64", "6Client:net-snmp-utils-1:5.5-54.el6.i686", "6Client:net-snmp-utils-1:5.5-54.el6.ppc64", "6Client:net-snmp-utils-1:5.5-54.el6.s390x", "6Client:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.src", "6ComputeNode-optional:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode-optional:net-snmp-utils-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-1:5.5-54.el6.src", "6ComputeNode:net-snmp-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-devel-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-libs-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-perl-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-python-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-python-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-python-1:5.5-54.el6.x86_64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.i686", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.ppc64", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.s390x", "6ComputeNode:net-snmp-utils-1:5.5-54.el6.x86_64", "6Server:net-snmp-1:5.5-54.el6.i686", "6Server:net-snmp-1:5.5-54.el6.ppc64", "6Server:net-snmp-1:5.5-54.el6.s390x", "6Server:net-snmp-1:5.5-54.el6.src", "6Server:net-snmp-1:5.5-54.el6.x86_64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Server:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Server:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Server:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Server:net-snmp-devel-1:5.5-54.el6.i686", "6Server:net-snmp-devel-1:5.5-54.el6.ppc", "6Server:net-snmp-devel-1:5.5-54.el6.ppc64", "6Server:net-snmp-devel-1:5.5-54.el6.s390", "6Server:net-snmp-devel-1:5.5-54.el6.s390x", "6Server:net-snmp-devel-1:5.5-54.el6.x86_64", "6Server:net-snmp-libs-1:5.5-54.el6.i686", "6Server:net-snmp-libs-1:5.5-54.el6.ppc", "6Server:net-snmp-libs-1:5.5-54.el6.ppc64", "6Server:net-snmp-libs-1:5.5-54.el6.s390", "6Server:net-snmp-libs-1:5.5-54.el6.s390x", "6Server:net-snmp-libs-1:5.5-54.el6.x86_64", "6Server:net-snmp-perl-1:5.5-54.el6.i686", "6Server:net-snmp-perl-1:5.5-54.el6.ppc64", "6Server:net-snmp-perl-1:5.5-54.el6.s390x", "6Server:net-snmp-perl-1:5.5-54.el6.x86_64", "6Server:net-snmp-python-1:5.5-54.el6.i686", "6Server:net-snmp-python-1:5.5-54.el6.ppc64", "6Server:net-snmp-python-1:5.5-54.el6.s390x", "6Server:net-snmp-python-1:5.5-54.el6.x86_64", "6Server:net-snmp-utils-1:5.5-54.el6.i686", "6Server:net-snmp-utils-1:5.5-54.el6.ppc64", "6Server:net-snmp-utils-1:5.5-54.el6.s390x", "6Server:net-snmp-utils-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-1:5.5-54.el6.i686", "6Workstation:net-snmp-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-1:5.5-54.el6.s390x", "6Workstation:net-snmp-1:5.5-54.el6.src", "6Workstation:net-snmp-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.i686", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.s390x", "6Workstation:net-snmp-debuginfo-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-devel-1:5.5-54.el6.i686", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc", "6Workstation:net-snmp-devel-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390", "6Workstation:net-snmp-devel-1:5.5-54.el6.s390x", "6Workstation:net-snmp-devel-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-libs-1:5.5-54.el6.i686", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc", "6Workstation:net-snmp-libs-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390", "6Workstation:net-snmp-libs-1:5.5-54.el6.s390x", "6Workstation:net-snmp-libs-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-perl-1:5.5-54.el6.i686", "6Workstation:net-snmp-perl-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-perl-1:5.5-54.el6.s390x", "6Workstation:net-snmp-perl-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-python-1:5.5-54.el6.i686", "6Workstation:net-snmp-python-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-python-1:5.5-54.el6.s390x", "6Workstation:net-snmp-python-1:5.5-54.el6.x86_64", "6Workstation:net-snmp-utils-1:5.5-54.el6.i686", "6Workstation:net-snmp-utils-1:5.5-54.el6.ppc64", "6Workstation:net-snmp-utils-1:5.5-54.el6.s390x", "6Workstation:net-snmp-utils-1:5.5-54.el6.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "net-snmp: snmptrapd crash when handling an SNMP trap containing a ifMtu with a NULL type" } ] }
Loading…
Loading…
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.