ID OPENVAS:1361412562310111071 Type openvas Reporter Copyright (C) 2015 SCHUTZWERK GmbH Modified 2020-08-24T00:00:00
Description
The script sends a HTTP request
to the server and attempts to extract the version from the reply.
###############################################################################
# OpenVAS Vulnerability Test
#
# ComfortableMexicanSofa CMS Engine Detection
#
# Authors:
# Christian Fischer <info@schutzwerk.com>
#
# Copyright:
# Copyright (C) 2015 SCHUTZWERK GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# 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.111071");
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:"2015-12-15 19:00:00 +0100 (Tue, 15 Dec 2015)");
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("ComfortableMexicanSofa CMS Engine Detection");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2015 SCHUTZWERK GmbH");
script_family("Product detection");
script_dependencies("find_service.nasl", "no404.nasl", "webmirror.nasl", "DDI_Directory_Scanner.nasl", "global_settings.nasl");
script_require_ports("Services/www", 3000);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"summary", value:"The script sends a HTTP request
to the server and attempts to extract the version from the reply.");
script_tag(name:"qod_type", value:"remote_banner");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("list_array_func.inc");
include("host_details.inc");
port = http_get_port( default:3000 );
rootInstalled = 0;
foreach dir ( make_list_unique( "/", "/cms", http_cgi_dirs( port:port ) ) ) {
install = dir;
if( dir == "/" ) dir = "";
if( rootInstalled ) break;
buf = http_get_cache( item: dir + "/", port:port );
if( "/system/comfy/cms/files/" >< buf || "/assets/comfy/" >< buf ||
( "comfy_admin_cms" >< buf && "comfy/admin/cms/base" >< buf ) ) {
if( install == "/" ) rootInstalled = 1;
version = 'unknown';
#CPE not registered/available yet
cpe = 'cpe:/a:comfy:comfy';
set_kb_item( name:"www/" + port + "/comfy", value:version );
set_kb_item( name:"comfy/installed", value:TRUE );
register_product( cpe:cpe, location:install, port:port, service:"www" );
log_message( data: build_detection_report( app:"ComfortableMexicanSofa CMS Engine",
version:version,
install:install,
cpe:cpe),
port:port);
}
}
exit(0);
{"id": "OPENVAS:1361412562310111071", "type": "openvas", "bulletinFamily": "scanner", "title": "ComfortableMexicanSofa CMS Engine Detection", "description": "The script sends a HTTP request\n to the server and attempts to extract the version from the reply.", "published": "2015-12-15T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310111071", "reporter": "Copyright (C) 2015 SCHUTZWERK GmbH", "references": [], "cvelist": [], "lastseen": "2020-10-04T15:17:27", "viewCount": 0, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:27", "rev": 2}, "score": {"value": 0.3, "vector": "NONE", "modified": "2020-10-04T15:17:27", "rev": 2}, "vulnersScore": 0.3}, "pluginID": "1361412562310111071", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# ComfortableMexicanSofa CMS Engine Detection\n#\n# Authors:\n# Christian Fischer <info@schutzwerk.com>\n#\n# Copyright:\n# Copyright (C) 2015 SCHUTZWERK 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 version 2\n# (or any later version), as published by the Free Software Foundation.\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.111071\");\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:\"2015-12-15 19:00:00 +0100 (Tue, 15 Dec 2015)\");\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_name(\"ComfortableMexicanSofa CMS Engine Detection\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2015 SCHUTZWERK GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"find_service.nasl\", \"no404.nasl\", \"webmirror.nasl\", \"DDI_Directory_Scanner.nasl\", \"global_settings.nasl\");\n script_require_ports(\"Services/www\", 3000);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n\n script_tag(name:\"summary\", value:\"The script sends a HTTP request\n to the server and attempts to extract the version from the reply.\");\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\ninclude(\"list_array_func.inc\");\ninclude(\"host_details.inc\");\n\nport = http_get_port( default:3000 );\nrootInstalled = 0;\n\nforeach dir ( make_list_unique( \"/\", \"/cms\", http_cgi_dirs( port:port ) ) ) {\n\n install = dir;\n if( dir == \"/\" ) dir = \"\";\n if( rootInstalled ) break;\n\n buf = http_get_cache( item: dir + \"/\", port:port );\n\n if( \"/system/comfy/cms/files/\" >< buf || \"/assets/comfy/\" >< buf ||\n ( \"comfy_admin_cms\" >< buf && \"comfy/admin/cms/base\" >< buf ) ) {\n\n if( install == \"/\" ) rootInstalled = 1;\n version = 'unknown';\n\n #CPE not registered/available yet\n cpe = 'cpe:/a:comfy:comfy';\n\n set_kb_item( name:\"www/\" + port + \"/comfy\", value:version );\n set_kb_item( name:\"comfy/installed\", value:TRUE );\n\n register_product( cpe:cpe, location:install, port:port, service:\"www\" );\n\n log_message( data: build_detection_report( app:\"ComfortableMexicanSofa CMS Engine\",\n version:version,\n install:install,\n cpe:cpe),\n port:port);\n }\n}\n\nexit(0);\n", "naslFamily": "Product detection"}