ID OPENVAS:1361412562310141262 Type openvas Reporter Copyright (C) 2018 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
Detection of NuCom devices.
The script sends a connection request to the server and attempts to detect NuCom devices.
###############################################################################
# OpenVAS Vulnerability Test
#
# NuCom Device Detection
#
# Authors:
# Christian Kuersteiner <christian.kuersteiner@greenbone.net>
#
# Copyright:
# Copyright (C) 2018 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.141262");
script_version("2020-08-24T15:18:35+0000");
script_tag(name:"last_modification", value:"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)");
script_tag(name:"creation_date", value:"2018-07-03 10:57:39 +0200 (Tue, 03 Jul 2018)");
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_tag(name:"qod_type", value:"remote_banner");
script_name("NuCom Device Detection");
script_tag(name:"summary", value:"Detection of NuCom devices.
The script sends a connection request to the server and attempts to detect NuCom devices.");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2018 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
script_require_ports("Services/www", 80, 443, 8080);
script_exclude_keys("Settings/disable_cgi_scanning");
script_xref(name:"URL", value:"http://www.nucom.es/");
exit(0);
}
include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
port = http_get_port(default: 80);
res = http_get_cache(port: port, item: "/page/login/login.html");
if ("getLogStr('LK_Usernamee')" >< res && "var G_language = " >< res) {
version = "unknown";
mod = eregmatch(pattern: 'var Manufacturer = "([^"]+)', string: res);
if (isnull(mod[1]))
exit(0);
model = mod[1];
set_kb_item(name: "nucom_device/detected", value: TRUE);
set_kb_item(name: "nucom_device/model", value: model);
cpe = 'cpe:/h:nucom:' + tolower(model);
register_product(cpe: cpe, location: "/", port: port, service: "www");
log_message(data: build_detection_report(app: "NuCom " + model, version: version, install: "/", cpe: cpe),
port: port);
exit(0);
}
exit(0);
{"id": "OPENVAS:1361412562310141262", "type": "openvas", "bulletinFamily": "scanner", "title": "NuCom Device Detection", "description": "Detection of NuCom devices.\n\nThe script sends a connection request to the server and attempts to detect NuCom devices.", "published": "2018-07-03T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310141262", "reporter": "Copyright (C) 2018 Greenbone Networks GmbH", "references": ["http://www.nucom.es/"], "cvelist": [], "lastseen": "2020-10-04T15:17:28", "viewCount": 3, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:28", "rev": 2}, "score": {"value": 0.1, "vector": "NONE", "modified": "2020-10-04T15:17:28", "rev": 2}, "vulnersScore": 0.1}, "pluginID": "1361412562310141262", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# NuCom Device Detection\n#\n# Authors:\n# Christian Kuersteiner <christian.kuersteiner@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2018 Greenbone Networks GmbH\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (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.141262\");\n script_version(\"2020-08-24T15:18:35+0000\");\n script_tag(name:\"last_modification\", value:\"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-07-03 10:57:39 +0200 (Tue, 03 Jul 2018)\");\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\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n\n script_name(\"NuCom Device Detection\");\n\n script_tag(name:\"summary\", value:\"Detection of NuCom devices.\n\nThe script sends a connection request to the server and attempts to detect NuCom devices.\");\n\n script_category(ACT_GATHER_INFO);\n\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"find_service.nasl\", \"httpver.nasl\", \"global_settings.nasl\");\n script_require_ports(\"Services/www\", 80, 443, 8080);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n\n script_xref(name:\"URL\", value:\"http://www.nucom.es/\");\n\n exit(0);\n}\n\ninclude(\"host_details.inc\");\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\n\nport = http_get_port(default: 80);\n\nres = http_get_cache(port: port, item: \"/page/login/login.html\");\n\nif (\"getLogStr('LK_Usernamee')\" >< res && \"var G_language = \" >< res) {\n version = \"unknown\";\n\n mod = eregmatch(pattern: 'var Manufacturer = \"([^\"]+)', string: res);\n if (isnull(mod[1]))\n exit(0);\n\n model = mod[1];\n set_kb_item(name: \"nucom_device/detected\", value: TRUE);\n set_kb_item(name: \"nucom_device/model\", value: model);\n\n cpe = 'cpe:/h:nucom:' + tolower(model);\n\n register_product(cpe: cpe, location: \"/\", port: port, service: \"www\");\n\n log_message(data: build_detection_report(app: \"NuCom \" + model, version: version, install: \"/\", cpe: cpe),\n port: port);\n exit(0);\n}\n\nexit(0);\n", "naslFamily": "Product detection"}