ID OPENVAS:800158 Type openvas Reporter Copyright (C) 2010 Greenbone Networks GmbH Modified 2017-02-20T00:00:00
Description
This script detects the installed South River WebDrive and
saves the version in KB.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_south_river_webdrive_detect.nasl 5372 2017-02-20 16:26:11Z cfi $
#
# South River WebDrive Version Detection
#
# Authors:
# Veerendra G <veerendragg@secpod.com>
#
# Copyright:
# Copyright (c) 2010 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.
###############################################################################
tag_summary = "This script detects the installed South River WebDrive and
saves the version in KB.";
if(description)
{
script_id(800158);
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_version("$Revision: 5372 $");
script_tag(name:"last_modification", value:"$Date: 2017-02-20 17:26:11 +0100 (Mon, 20 Feb 2017) $");
script_tag(name:"creation_date", value:"2010-01-28 16:24:05 +0100 (Thu, 28 Jan 2010)");
script_tag(name:"cvss_base", value:"0.0");
script_name("South River WebDrive Version Detection");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"registry");
script_copyright("Copyright (C) 2010 Greenbone Networks GmbH");
script_family("Service detection");
script_dependencies("secpod_reg_enum.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_require_ports(139, 445);
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("smb_nt.inc");
include("secpod_smb_func.inc");
include("cpe.inc");
include("host_details.inc");
## Constant values
SCRIPT_OID = "1.3.6.1.4.1.25623.1.0.800158";
SCRIPT_DESC = "South River WebDrive Version Detection";
## Windows Confirmation
if(!get_kb_item("SMB/WindowsVersion")){
exit(0);
}
## South River Web Drive Application confirmation
if(!registry_key_exists(key:"SOFTWARE\South River Technologies\WebDrive")){
exit(0);
}
## Get the South River Web Drive Version
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
if(!registry_key_exists(key:key)) {
exit(0);
}
foreach item (registry_enum_keys(key:key))
{
webDrive = registry_get_sz(key:key + item, item:"DisplayName");
if("WebDrive" >< webDrive)
{
webDriveVer = registry_get_sz(key:key + item, item:"DisplayVersion");
if( webDriveVer != NULL)
{
set_kb_item(name:"SouthRiverWebDrive/Win/Ver", value:webDriveVer);
log_message(data:"South River WebDrive version " + webDriveVer +
" was detected on the host");
## build cpe and store it as host_detail
cpe = build_cpe(value:webDriveVer, exp:"^([0-9.]+)", base:"cpe:/a:south_river_technologies:webdrive:");
if(!isnull(cpe))
register_host_detail(name:"App", value:cpe, nvt:SCRIPT_OID, desc:SCRIPT_DESC);
}
exit(0);
}
}
{"id": "OPENVAS:800158", "type": "openvas", "bulletinFamily": "scanner", "title": "South River WebDrive Version Detection", "description": "This script detects the installed South River WebDrive and\n saves the version in KB.", "published": "2010-01-28T00:00:00", "modified": "2017-02-20T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=800158", "reporter": "Copyright (C) 2010 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2017-07-02T21:09:12", "viewCount": 0, "enchantments": {"score": {"value": -0.1, "vector": "NONE", "modified": "2017-07-02T21:09:12", "rev": 2}, "dependencies": {"references": [], "modified": "2017-07-02T21:09:12", "rev": 2}, "vulnersScore": -0.1}, "pluginID": "800158", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: gb_south_river_webdrive_detect.nasl 5372 2017-02-20 16:26:11Z cfi $\n#\n# South River WebDrive Version Detection\n#\n# Authors:\n# Veerendra G <veerendragg@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2010 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\ntag_summary = \"This script detects the installed South River WebDrive and\n saves the version in KB.\";\n\nif(description)\n{\n script_id(800158);\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_version(\"$Revision: 5372 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-02-20 17:26:11 +0100 (Mon, 20 Feb 2017) $\");\n script_tag(name:\"creation_date\", value:\"2010-01-28 16:24:05 +0100 (Thu, 28 Jan 2010)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_name(\"South River WebDrive Version Detection\");\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"qod_type\", value:\"registry\");\n script_copyright(\"Copyright (C) 2010 Greenbone Networks GmbH\");\n script_family(\"Service detection\");\n script_dependencies(\"secpod_reg_enum.nasl\");\n script_mandatory_keys(\"SMB/WindowsVersion\");\n script_require_ports(139, 445);\n script_tag(name : \"summary\" , value : tag_summary);\n exit(0);\n}\n\n\ninclude(\"smb_nt.inc\");\ninclude(\"secpod_smb_func.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\n## Constant values\nSCRIPT_OID = \"1.3.6.1.4.1.25623.1.0.800158\";\nSCRIPT_DESC = \"South River WebDrive Version Detection\";\n\n## Windows Confirmation\nif(!get_kb_item(\"SMB/WindowsVersion\")){\n exit(0);\n}\n\n## South River Web Drive Application confirmation\nif(!registry_key_exists(key:\"SOFTWARE\\South River Technologies\\WebDrive\")){\n exit(0);\n}\n\n## Get the South River Web Drive Version\nkey = \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\nif(!registry_key_exists(key:key)) {\n exit(0);\n}\n\nforeach item (registry_enum_keys(key:key))\n{\n webDrive = registry_get_sz(key:key + item, item:\"DisplayName\");\n if(\"WebDrive\" >< webDrive)\n {\n webDriveVer = registry_get_sz(key:key + item, item:\"DisplayVersion\");\n if( webDriveVer != NULL)\n {\n set_kb_item(name:\"SouthRiverWebDrive/Win/Ver\", value:webDriveVer);\n log_message(data:\"South River WebDrive version \" + webDriveVer +\n \" was detected on the host\");\n \n ## build cpe and store it as host_detail\n cpe = build_cpe(value:webDriveVer, exp:\"^([0-9.]+)\", base:\"cpe:/a:south_river_technologies:webdrive:\");\n if(!isnull(cpe))\n register_host_detail(name:\"App\", value:cpe, nvt:SCRIPT_OID, desc:SCRIPT_DESC);\n\n }\n exit(0);\n }\n}\n", "naslFamily": "Service detection", "immutableFields": []}