Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)
2014-01-27T00:00:00
ID OPENVAS:1361412562310108088 Type openvas Reporter Copyright (C) 2014 Greenbone Networks GmbH Modified 2020-03-26T00:00:00
Description
The script attempts to extract the version number from a previous gathered
system description from SNMP.
###############################################################################
# OpenVAS Vulnerability Test
#
# Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)
#
# Authors:
# Michael Meyer <michael.meyer@greenbone.net>
#
# Copyright:
# Copyright (C) 2014 Greenbone Networks GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.108088");
script_version("2020-03-26T08:48:45+0000");
script_tag(name:"last_modification", value:"2020-03-26 08:48:45 +0000 (Thu, 26 Mar 2020)");
script_tag(name:"creation_date", value:"2014-01-27 18:43:12 +0100 (Mon, 27 Jan 2014)");
script_tag(name:"cvss_base", value:"0.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_name("Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)");
script_category(ACT_GATHER_INFO);
script_family("Product detection");
script_copyright("Copyright (C) 2014 Greenbone Networks GmbH");
script_dependencies("gb_snmp_sysdesc.nasl");
script_require_udp_ports("Services/udp/snmp", 161);
script_mandatory_keys("SNMP/sysdesc/available");
script_tag(name:"summary", value:"The script attempts to extract the version number from a previous gathered
system description from SNMP.");
script_tag(name:"qod_type", value:"remote_banner");
exit(0);
}
include("cpe.inc");
include("host_details.inc");
include("snmp_func.inc");
port = snmp_get_port(default:161);
sysdesc = snmp_get_sysdesc(port:port);
if(!sysdesc) exit(0);
if( sysdesc !~ '^MPU2016 [0-9.]+$' ) exit( 0 );
vers = "unknown";
install = port + "/udp";
version = eregmatch( pattern:'^MPU2016 ([0-9.]+)$', string:sysdesc );
if( ! isnull( version[1] ) ) vers = version[1];
set_kb_item( name:"MPU2016/installed", value:TRUE );
cpe = build_cpe( value:vers, exp:"^([0-9.]+)", base:"cpe:/h:emerson:network_power_avocent_mergepoint_unity_2016_firmware:" );
if( isnull( cpe ) )
cpe = "cpe:/h:emerson:network_power_avocent_mergepoint_unity_2016_firmware";
register_product( cpe:cpe, location:install, port:port, proto:"udp", service:"snmp" );
log_message( data:build_detection_report( app:"Emerson Network Power Avocent MergePoint Unity 2016 KVM",
version:vers,
install:install,
cpe:cpe,
concluded:sysdesc ),
proto:"udp",
port:port );
exit( 0 );
{"id": "OPENVAS:1361412562310108088", "type": "openvas", "bulletinFamily": "scanner", "title": "Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)", "description": "The script attempts to extract the version number from a previous gathered\n system description from SNMP.", "published": "2014-01-27T00:00:00", "modified": "2020-03-26T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310108088", "reporter": "Copyright (C) 2014 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-03-27T16:37:24", "viewCount": 2, "enchantments": {"dependencies": {"references": [], "modified": "2020-03-27T16:37:24", "rev": 2}, "score": {"value": -0.4, "vector": "NONE", "modified": "2020-03-27T16:37:24", "rev": 2}, "vulnersScore": -0.4}, "pluginID": "1361412562310108088", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)\n#\n# Authors:\n# Michael Meyer <michael.meyer@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2014 Greenbone Networks GmbH\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (at your option) any later version\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.108088\");\n script_version(\"2020-03-26T08:48:45+0000\");\n script_tag(name:\"last_modification\", value:\"2020-03-26 08:48:45 +0000 (Thu, 26 Mar 2020)\");\n script_tag(name:\"creation_date\", value:\"2014-01-27 18:43:12 +0100 (Mon, 27 Jan 2014)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_name(\"Emerson Network Power Avocent MergePoint Unity 2016 KVM Detection (SNMP)\");\n script_category(ACT_GATHER_INFO);\n script_family(\"Product detection\");\n script_copyright(\"Copyright (C) 2014 Greenbone Networks GmbH\");\n script_dependencies(\"gb_snmp_sysdesc.nasl\");\n script_require_udp_ports(\"Services/udp/snmp\", 161);\n script_mandatory_keys(\"SNMP/sysdesc/available\");\n\n script_tag(name:\"summary\", value:\"The script attempts to extract the version number from a previous gathered\n system description from SNMP.\");\n\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n\n exit(0);\n}\n\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\ninclude(\"snmp_func.inc\");\n\nport = snmp_get_port(default:161);\nsysdesc = snmp_get_sysdesc(port:port);\nif(!sysdesc) exit(0);\n\nif( sysdesc !~ '^MPU2016 [0-9.]+$' ) exit( 0 );\n\nvers = \"unknown\";\ninstall = port + \"/udp\";\n\nversion = eregmatch( pattern:'^MPU2016 ([0-9.]+)$', string:sysdesc );\nif( ! isnull( version[1] ) ) vers = version[1];\n\nset_kb_item( name:\"MPU2016/installed\", value:TRUE );\n\ncpe = build_cpe( value:vers, exp:\"^([0-9.]+)\", base:\"cpe:/h:emerson:network_power_avocent_mergepoint_unity_2016_firmware:\" );\nif( isnull( cpe ) )\n cpe = \"cpe:/h:emerson:network_power_avocent_mergepoint_unity_2016_firmware\";\n\nregister_product( cpe:cpe, location:install, port:port, proto:\"udp\", service:\"snmp\" );\n\nlog_message( data:build_detection_report( app:\"Emerson Network Power Avocent MergePoint Unity 2016 KVM\",\n version:vers,\n install:install,\n cpe:cpe,\n concluded:sysdesc ),\n proto:\"udp\",\n port:port );\n\nexit( 0 );\n", "naslFamily": "Product detection"}