ID OPENVAS:100335 Type openvas Reporter This script is Copyright (C) 2009 Greenbone Networks GmbH Modified 2017-03-28T00:00:00
Description
This host is running Sahana, a Free and Open Source Disaster
Management system.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: sahana_detect.nasl 5744 2017-03-28 07:25:23Z cfi $
#
# Sahana Detection
#
# Authors:
# Michael Meyer
#
# Copyright:
# Copyright (c) 2009 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 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.
###############################################################################
tag_summary = "This host is running Sahana, a Free and Open Source Disaster
Management system.";
if(description)
{
script_id(100335);
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_version("$Revision: 5744 $");
script_tag(name:"last_modification", value:"$Date: 2017-03-28 09:25:23 +0200 (Tue, 28 Mar 2017) $");
script_tag(name:"creation_date", value:"2009-11-04 12:36:10 +0100 (Wed, 04 Nov 2009)");
script_tag(name:"cvss_base", value:"0.0");
script_name("Sahana Detection");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_banner");
script_family("Service detection");
script_copyright("This script is Copyright (C) 2009 Greenbone Networks GmbH");
script_dependencies("find_service.nasl", "http_version.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name : "summary" , value : tag_summary);
script_xref(name : "URL" , value : "http://sahana.lk/");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("cpe.inc");
include("host_details.inc");
## Constant values
SCRIPT_OID = "1.3.6.1.4.1.25623.1.0.100335";
SCRIPT_DESC = "Sahana Detection";
port = get_http_port(default:80);
if(!can_host_php(port:port))exit(0);
foreach dir( make_list_unique( "/sahana", cgi_dirs( port:port ) ) ) {
install = dir;
if( dir == "/" ) dir = "";
url = string(dir, "/index.php?mod=home&act=about");
req = http_get(item:url, port:port);
buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if( buf == NULL )continue;
if(egrep(pattern:"<title>Sahana FOSS Disaster Management System</title>", string: buf, icase: TRUE))
{
vers = string("unknown");
string = ereg_replace(string:buf,pattern:'\n',replace:"");
### try to get version
version = eregmatch(string: string, pattern: 'Sahana Version</td>[^<]+<td>([0-9.]+)</td>',icase:TRUE);
if ( !isnull(version[1]) ) {
vers=chomp(version[1]);
}
tmp_version = string(vers," under ",install);
set_kb_item(name: string("www/", port, "/sahana"), value: tmp_version);
## build cpe and store it as host_detail
cpe = build_cpe(value:tmp_version, exp:"^([0-9.]+)", base:"cpe:/a:sahana:sahana:");
if(!isnull(cpe))
register_host_detail(name:"App", value:cpe, nvt:SCRIPT_OID, desc:SCRIPT_DESC);
info = string("\n\nSahana Version '");
info += string(vers);
info += string("' was detected on the remote host in the following directory(s):\n\n");
info += string(install, "\n");
log_message(port:port,data:info);
exit(0);
}
}
exit(0);
{"id": "OPENVAS:100335", "type": "openvas", "bulletinFamily": "scanner", "title": "Sahana Detection", "description": "This host is running Sahana, a Free and Open Source Disaster\nManagement system.", "published": "2009-11-04T00:00:00", "modified": "2017-03-28T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=100335", "reporter": "This script is Copyright (C) 2009 Greenbone Networks GmbH", "references": ["http://sahana.lk/"], "cvelist": [], "lastseen": "2017-07-02T21:09:10", "viewCount": 1, "enchantments": {"score": {"value": -0.3, "vector": "NONE", "modified": "2017-07-02T21:09:10", "rev": 2}, "dependencies": {"references": [], "modified": "2017-07-02T21:09:10", "rev": 2}, "vulnersScore": -0.3}, "pluginID": "100335", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: sahana_detect.nasl 5744 2017-03-28 07:25:23Z cfi $\n#\n# Sahana Detection\n#\n# Authors:\n# Michael Meyer\n#\n# Copyright:\n# Copyright (c) 2009 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 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\ntag_summary = \"This host is running Sahana, a Free and Open Source Disaster\nManagement system.\";\n\nif(description)\n{\n script_id(100335);\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_version(\"$Revision: 5744 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-03-28 09:25:23 +0200 (Tue, 28 Mar 2017) $\");\n script_tag(name:\"creation_date\", value:\"2009-11-04 12:36:10 +0100 (Wed, 04 Nov 2009)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_name(\"Sahana Detection\");\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n script_family(\"Service detection\");\n script_copyright(\"This script is Copyright (C) 2009 Greenbone Networks GmbH\");\n script_dependencies(\"find_service.nasl\", \"http_version.nasl\");\n script_require_ports(\"Services/www\", 80);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_tag(name : \"summary\" , value : tag_summary);\n script_xref(name : \"URL\" , value : \"http://sahana.lk/\");\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\n## Constant values\nSCRIPT_OID = \"1.3.6.1.4.1.25623.1.0.100335\";\nSCRIPT_DESC = \"Sahana Detection\";\n\nport = get_http_port(default:80);\nif(!can_host_php(port:port))exit(0);\n\nforeach dir( make_list_unique( \"/sahana\", cgi_dirs( port:port ) ) ) {\n\n install = dir;\n if( dir == \"/\" ) dir = \"\";\n url = string(dir, \"/index.php?mod=home&act=about\");\n req = http_get(item:url, port:port);\n buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);\n if( buf == NULL )continue;\n\n if(egrep(pattern:\"<title>Sahana FOSS Disaster Management System</title>\", string: buf, icase: TRUE))\n {\n vers = string(\"unknown\");\n string = ereg_replace(string:buf,pattern:'\\n',replace:\"\");\n\n ### try to get version \n version = eregmatch(string: string, pattern: 'Sahana Version</td>[^<]+<td>([0-9.]+)</td>',icase:TRUE);\n\n if ( !isnull(version[1]) ) {\n vers=chomp(version[1]);\n }\n\n tmp_version = string(vers,\" under \",install);\n set_kb_item(name: string(\"www/\", port, \"/sahana\"), value: tmp_version);\n \n ## build cpe and store it as host_detail\n cpe = build_cpe(value:tmp_version, exp:\"^([0-9.]+)\", base:\"cpe:/a:sahana:sahana:\");\n if(!isnull(cpe))\n register_host_detail(name:\"App\", value:cpe, nvt:SCRIPT_OID, desc:SCRIPT_DESC);\n\n info = string(\"\\n\\nSahana Version '\");\n info += string(vers);\n info += string(\"' was detected on the remote host in the following directory(s):\\n\\n\");\n info += string(install, \"\\n\");\n\n log_message(port:port,data:info);\n exit(0);\n }\n}\n\nexit(0);\n", "naslFamily": "Service detection"}