ID OPENVAS:1361412562310801869 Type openvas Reporter Copyright (C) 2011 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
The script detects the version of Horde Gollem on remote host
and sets the KB.
###############################################################################
# OpenVAS Vulnerability Test
#
# Horde Gollem Version Detection
#
# Authors:
# Sooraj KS <kssooraj@secpod.com>
#
# Copyright:
# Copyright (C) 2011 Greenbone Networks GmbH, http://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 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.801869");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
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:"2011-04-11 14:40:00 +0200 (Mon, 11 Apr 2011)");
script_tag(name:"cvss_base", value:"0.0");
script_name("Horde Gollem Version Detection");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2011 Greenbone Networks 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", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"summary", value:"The script detects the version of Horde Gollem on remote host
and sets the KB.");
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("cpe.inc");
include("host_details.inc");
port = http_get_port( default:80 );
if( ! http_can_host_php( port:port ) ) exit( 0 );
foreach dir(make_list_unique( "/horde/gollem", "/gollem", http_cgi_dirs( port:port ) ) ) {
install = dir;
if( dir == "/" ) dir = "";
rcvRes = http_get_cache( item: dir + "/index.php", port:port );
if( ">File Manager Login<" >< rcvRes ) {
version = "unknown";
sndReq = http_get( item: dir + "/test.php", port:port );
rcvRes = http_keepalive_send_recv( port:port, data:sndReq, bodyonly:TRUE );
ver = eregmatch( pattern:">Gollem: H. \(([0-9.]+)\)<", string:rcvRes );
if( ver[1] == NULL ) {
sndReq = http_get( item: dir + "/docs/CHANGES", port:port );
rcvRes = http_keepalive_send_recv( port:port, data:sndReq, bodyonly:TRUE );
ver = eregmatch( pattern:"v([0-9.]+)", string:rcvRes );
if( ver[1] ) version = ver[1];
} else {
version = ver[1];
}
tmp_version = version + " under " + install;
set_kb_item( name:"www/" + port + "/gollem", value:tmp_version );
set_kb_item( name:"horde/gollem/installed", value:TRUE );
cpe = build_cpe( value:version, exp:"^([0-9.]+)", base:"cpe:/a:horde:gollem:" );
if( isnull( cpe ) )
cpe = 'cpe:/a:horde:gollem';
register_product( cpe:cpe, location:install, port:port, service:"www" );
log_message( data:build_detection_report( app:"Horde Gollem",
version:version,
install:install,
cpe:cpe,
concluded:version ),
port:port );
exit(0);
}
}
exit( 0 );
{"id": "OPENVAS:1361412562310801869", "type": "openvas", "bulletinFamily": "scanner", "title": "Horde Gollem Version Detection", "description": "The script detects the version of Horde Gollem on remote host\n and sets the KB.", "published": "2011-04-11T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310801869", "reporter": "Copyright (C) 2011 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-10-04T15:17:28", "viewCount": 1, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:28", "rev": 2}, "score": {"value": -0.2, "vector": "NONE", "modified": "2020-10-04T15:17:28", "rev": 2}, "vulnersScore": -0.2}, "pluginID": "1361412562310801869", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Horde Gollem Version Detection\n#\n# Authors:\n# Sooraj KS <kssooraj@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2011 Greenbone Networks GmbH, http://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 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.801869\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\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:\"2011-04-11 14:40:00 +0200 (Mon, 11 Apr 2011)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_name(\"Horde Gollem Version Detection\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2011 Greenbone Networks 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\", 80);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n\n script_tag(name:\"summary\", value:\"The script detects the version of Horde Gollem on remote host\n and sets the KB.\");\n\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\ninclude(\"list_array_func.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\nport = http_get_port( default:80 );\n\nif( ! http_can_host_php( port:port ) ) exit( 0 );\n\nforeach dir(make_list_unique( \"/horde/gollem\", \"/gollem\", http_cgi_dirs( port:port ) ) ) {\n\n install = dir;\n if( dir == \"/\" ) dir = \"\";\n\n rcvRes = http_get_cache( item: dir + \"/index.php\", port:port );\n\n if( \">File Manager Login<\" >< rcvRes ) {\n\n version = \"unknown\";\n\n sndReq = http_get( item: dir + \"/test.php\", port:port );\n rcvRes = http_keepalive_send_recv( port:port, data:sndReq, bodyonly:TRUE );\n\n ver = eregmatch( pattern:\">Gollem: H. \\(([0-9.]+)\\)<\", string:rcvRes );\n\n if( ver[1] == NULL ) {\n sndReq = http_get( item: dir + \"/docs/CHANGES\", port:port );\n rcvRes = http_keepalive_send_recv( port:port, data:sndReq, bodyonly:TRUE );\n ver = eregmatch( pattern:\"v([0-9.]+)\", string:rcvRes );\n if( ver[1] ) version = ver[1];\n } else {\n version = ver[1];\n }\n\n\n tmp_version = version + \" under \" + install;\n set_kb_item( name:\"www/\" + port + \"/gollem\", value:tmp_version );\n set_kb_item( name:\"horde/gollem/installed\", value:TRUE );\n\n cpe = build_cpe( value:version, exp:\"^([0-9.]+)\", base:\"cpe:/a:horde:gollem:\" );\n if( isnull( cpe ) )\n cpe = 'cpe:/a:horde:gollem';\n\n register_product( cpe:cpe, location:install, port:port, service:\"www\" );\n\n log_message( data:build_detection_report( app:\"Horde Gollem\",\n version:version,\n install:install,\n cpe:cpe,\n concluded:version ),\n port:port );\n exit(0);\n }\n}\nexit( 0 );\n", "naslFamily": "Product detection"}