ID OPENVAS:1361412562310113303 Type openvas Reporter Copyright (C) 2018 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
Checks if the target device is a Netis Router
and if so, tries to figure out the installed firmware version.
###############################################################################
# OpenVAS Vulnerability Test
#
# Netis Router Detection
#
# Authors:
# Jan Philipp Schulte <jan.schulte@greenbone.net>
#
# Copyright:
# Copyright (C) 2018 Greenbone Networks GmbH, https://www.greenbone.net
#
# 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.113303");
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-11-15 10:13:37 +0100 (Thu, 15 Nov 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("Netis Router Detection");
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", 8080);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"summary", value:"Checks if the target device is a Netis Router
and if so, tries to figure out the installed firmware version.");
script_xref(name:"URL", value:"http://www.netis-systems.com/Home/info/id/2.html");
script_xref(name:"URL", value:"http://www.netis-systems.com/Business/info/id/2.html");
exit(0);
}
CPE = "cpe:/h:netis:";
include("host_details.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("misc_func.inc");
include("cpe.inc");
port = http_get_port( default: 8080 );
concl_url = "/index.htm";
buf = http_get_cache( port: port, item: concl_url );
model = "unknown";
version = "unknown";
mod = eregmatch( string: buf, pattern: 'Basic realm[ ]*=[ ]*"(WF[0-9]+[A-Z]*)_?[A-Z]*"', icase: TRUE );
if( ! isnull( mod[1] ) ) {
model = mod[1];
}
else {
post_data = make_array( 'mode_name', 'netcore_get', 'no', 'no' );
concl_url = "/netcore_get.cgi";
req = http_post_put_req( port: port, url: concl_url, data: post_data, accept_header: '*/*', host_header_use_ip: TRUE );
res = http_keepalive_send_recv( port: port, data: req );
mod = eregmatch( string: res, pattern: '"hw_version_mode"[ ]*[:][ ]*"(WF[0-9]+[A-Z]*)"', icase: TRUE );
if( ! isnull( mod[1] ) ) {
model = mod[1];
ver = eregmatch( string: res, pattern: '"version"[ ]*[:][ ]*"[^"]*-V([0-9.]+)', icase: TRUE );
if( ! isnull( ver[1] ) ) {
version = ver[1];
set_kb_item( name: "netis/router/fw_version", value: version );
}
}
else {
exit( 0 );
}
}
set_kb_item( name: "netis/router/detected", value: TRUE );
set_kb_item( name: "netis/router/model", value: tolower( model ) );
CPE += tolower( model ) + ":";
register_and_report_cpe( app: "Netis " + model,
ver: version,
concluded: mod[0],
base: CPE,
expr: '([0-9.]+)',
insloc: "/",
regPort: port,
conclUrl: concl_url );
exit( 0 );
{"id": "OPENVAS:1361412562310113303", "type": "openvas", "bulletinFamily": "scanner", "title": "Netis Router Detection", "description": "Checks if the target device is a Netis Router\n and if so, tries to figure out the installed firmware version.", "published": "2018-11-15T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310113303", "reporter": "Copyright (C) 2018 Greenbone Networks GmbH", "references": ["http://www.netis-systems.com/Business/info/id/2.html", "http://www.netis-systems.com/Home/info/id/2.html"], "cvelist": [], "lastseen": "2020-10-04T15:17:28", "viewCount": 107, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:28", "rev": 2}, "score": {"value": 0.4, "vector": "NONE", "modified": "2020-10-04T15:17:28", "rev": 2}, "vulnersScore": 0.4}, "pluginID": "1361412562310113303", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Netis Router Detection\n#\n# Authors:\n# Jan Philipp Schulte <jan.schulte@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2018 Greenbone Networks GmbH, https://www.greenbone.net\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.113303\");\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-11-15 10:13:37 +0100 (Thu, 15 Nov 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(\"Netis Router Detection\");\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\", 8080);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n\n script_tag(name:\"summary\", value:\"Checks if the target device is a Netis Router\n and if so, tries to figure out the installed firmware version.\");\n\n script_xref(name:\"URL\", value:\"http://www.netis-systems.com/Home/info/id/2.html\");\n script_xref(name:\"URL\", value:\"http://www.netis-systems.com/Business/info/id/2.html\");\n\n exit(0);\n}\n\nCPE = \"cpe:/h:netis:\";\n\ninclude(\"host_details.inc\");\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"cpe.inc\");\n\nport = http_get_port( default: 8080 );\n\nconcl_url = \"/index.htm\";\n\nbuf = http_get_cache( port: port, item: concl_url );\nmodel = \"unknown\";\nversion = \"unknown\";\nmod = eregmatch( string: buf, pattern: 'Basic realm[ ]*=[ ]*\"(WF[0-9]+[A-Z]*)_?[A-Z]*\"', icase: TRUE );\nif( ! isnull( mod[1] ) ) {\n model = mod[1];\n}\nelse {\n post_data = make_array( 'mode_name', 'netcore_get', 'no', 'no' );\n concl_url = \"/netcore_get.cgi\";\n req = http_post_put_req( port: port, url: concl_url, data: post_data, accept_header: '*/*', host_header_use_ip: TRUE );\n res = http_keepalive_send_recv( port: port, data: req );\n mod = eregmatch( string: res, pattern: '\"hw_version_mode\"[ ]*[:][ ]*\"(WF[0-9]+[A-Z]*)\"', icase: TRUE );\n if( ! isnull( mod[1] ) ) {\n model = mod[1];\n ver = eregmatch( string: res, pattern: '\"version\"[ ]*[:][ ]*\"[^\"]*-V([0-9.]+)', icase: TRUE );\n if( ! isnull( ver[1] ) ) {\n version = ver[1];\n set_kb_item( name: \"netis/router/fw_version\", value: version );\n }\n }\n else {\n exit( 0 );\n }\n}\n\nset_kb_item( name: \"netis/router/detected\", value: TRUE );\nset_kb_item( name: \"netis/router/model\", value: tolower( model ) );\n\nCPE += tolower( model ) + \":\";\n\nregister_and_report_cpe( app: \"Netis \" + model,\n ver: version,\n concluded: mod[0],\n base: CPE,\n expr: '([0-9.]+)',\n insloc: \"/\",\n regPort: port,\n conclUrl: concl_url );\n\nexit( 0 );\n", "naslFamily": "Product detection"}