ID OPENVAS:96012 Type openvas Reporter Copyright (c) 2009 Greenbone Networks GmbH Modified 2017-09-05T00:00:00
Description
Tests WMI Drives Status.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: GSHB_WMI_BootDrive.nasl 7061 2017-09-05 11:50:40Z teissa $
#
# WMI Drives Test
#
# Authors:
# Thomas Rotter <T.Rotter@dn-systems.de>
#
# Copyright:
# Copyright (c) 2009 Greenbone Networks GmbH, http://www.greenbone.net
#
# Set in an Workgroup Environment under Vista with enabled UAC this DWORD to access WMI:
# HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\system\LocalAccountTokenFilterPolicy to 1
#
# 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 = "Tests WMI Drives Status.";
if(description)
{
script_id(96012);
script_version("$Revision: 7061 $");
script_tag(name:"last_modification", value:"$Date: 2017-09-05 13:50:40 +0200 (Tue, 05 Sep 2017) $");
script_tag(name:"creation_date", value:"2009-10-23 12:32:24 +0200 (Fri, 23 Oct 2009)");
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:"registry");
script_name("WMI Drives Status (win)");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (c) 2009 Greenbone Networks GmbH");
script_family("IT-Grundschutz");
script_mandatory_keys("Compliance/Launch/GSHB");
script_mandatory_keys("Tools/Present/wmi");
# script_require_ports(139, 445);
script_dependencies("secpod_reg_enum.nasl", "GSHB_WMI_OSInfo.nasl");
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("wmi_file.inc");
host = get_host_ip();
usrname = get_kb_item("SMB/login");
domain = get_kb_item("SMB/domain");
if (domain){
usrname = domain + '\\' + usrname;
}
passwd = get_kb_item("SMB/password");
OSVER = get_kb_item("WMI/WMI_OSVER");
OSTYPE = get_kb_item("WMI/WMI_OSTYPE");
if(!OSVER || OSVER >< "none"){
set_kb_item(name:"WMI/FS", value:"error");
set_kb_item(name:"WMI/FDD", value:"error");
set_kb_item(name:"WMI/CD", value:"error");
set_kb_item(name:"WMI/USB", value:"error");
set_kb_item(name:"WMI/BOOTINI", value:"error");
set_kb_item(name:"WMI/BOOTDRIVE/log", value:"No access to SMB host.\nFirewall is activated or there is not a Windows system.");
exit(0);
}
handle = wmi_connect(host:host, username:usrname, password:passwd);
if(!handle){
set_kb_item(name:"WMI/FS", value:"error");
set_kb_item(name:"WMI/FDD", value:"error");
set_kb_item(name:"WMI/CD", value:"error");
set_kb_item(name:"WMI/USB", value:"error");
set_kb_item(name:"WMI/BOOTINI", value:"error");
set_kb_item(name:"WMI/BOOTDRIVE/log", value:"wmi_connect: WMI Connect failed.");
wmi_close(wmi_handle:handle);
exit(0);
}
query1 = 'select DeviceID from WIN32_FloppyDrive';
query2 = 'select DeviceID from WIN32_CDROMDrive';
query3 = 'select DeviceID from WIN32_USBController';
query4 = 'select FileSystem from WIN32_LogicalDisk WHERE DriveType = 3';
WMIFDD = wmi_query(wmi_handle:handle, query:query1);
WMICD = wmi_query(wmi_handle:handle, query:query2);
WMIUSB = wmi_query(wmi_handle:handle, query:query3);
WMIFS = wmi_query(wmi_handle:handle, query:query4);
if (OSVER < 6){
BOOTINI = wmi_file_is_file_writeable(handle:handle, filePath:"c:\\boot.ini");
}else BOOTINI = "No boot.ini";
if(!WMIFDD) WMIFDD = "None";
if(!WMICD) WMICD = "None";
if(!WMIUSB) WMIUSB = "None";
if(!WMIFS) WMIFS = "None";
if(!BOOTINI) BOOTINI = "None";
set_kb_item(name:"WMI/FS", value:WMIFS);
set_kb_item(name:"WMI/FDD", value:WMIFDD);
set_kb_item(name:"WMI/CD", value:WMICD);
set_kb_item(name:"WMI/USB", value:WMIUSB);
set_kb_item(name:"WMI/BOOTINI", value:BOOTINI);
wmi_close(wmi_handle:handle);
exit(0);
{"id": "OPENVAS:96012", "type": "openvas", "bulletinFamily": "scanner", "title": "WMI Drives Status (win)", "description": "Tests WMI Drives Status.", "published": "2009-10-23T00:00:00", "modified": "2017-09-05T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=96012", "reporter": "Copyright (c) 2009 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2017-09-06T09:56:16", "viewCount": 0, "enchantments": {"score": {"value": -0.1, "vector": "NONE", "modified": "2017-09-06T09:56:16", "rev": 2}, "dependencies": {"references": [], "modified": "2017-09-06T09:56:16", "rev": 2}, "vulnersScore": -0.1}, "pluginID": "96012", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: GSHB_WMI_BootDrive.nasl 7061 2017-09-05 11:50:40Z teissa $\n#\n# WMI Drives Test\n#\n# Authors:\n# Thomas Rotter <T.Rotter@dn-systems.de>\n#\n# Copyright:\n# Copyright (c) 2009 Greenbone Networks GmbH, http://www.greenbone.net\n#\n# Set in an Workgroup Environment under Vista with enabled UAC this DWORD to access WMI:\n# HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\system\\LocalAccountTokenFilterPolicy to 1\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 = \"Tests WMI Drives Status.\";\n\nif(description)\n{\n script_id(96012);\n script_version(\"$Revision: 7061 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-09-05 13:50:40 +0200 (Tue, 05 Sep 2017) $\");\n script_tag(name:\"creation_date\", value:\"2009-10-23 12:32:24 +0200 (Fri, 23 Oct 2009)\");\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 script_tag(name:\"qod_type\", value:\"registry\"); \n script_name(\"WMI Drives Status (win)\");\n\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (c) 2009 Greenbone Networks GmbH\");\n script_family(\"IT-Grundschutz\");\n script_mandatory_keys(\"Compliance/Launch/GSHB\");\n script_mandatory_keys(\"Tools/Present/wmi\");\n \n# script_require_ports(139, 445);\n script_dependencies(\"secpod_reg_enum.nasl\", \"GSHB_WMI_OSInfo.nasl\");\n script_tag(name : \"summary\" , value : tag_summary);\n exit(0);\n}\n\ninclude(\"wmi_file.inc\");\n\nhost = get_host_ip();\nusrname = get_kb_item(\"SMB/login\");\ndomain = get_kb_item(\"SMB/domain\");\nif (domain){\n usrname = domain + '\\\\' + usrname;\n}\npasswd = get_kb_item(\"SMB/password\");\nOSVER = get_kb_item(\"WMI/WMI_OSVER\");\nOSTYPE = get_kb_item(\"WMI/WMI_OSTYPE\");\n\nif(!OSVER || OSVER >< \"none\"){\n set_kb_item(name:\"WMI/FS\", value:\"error\");\n set_kb_item(name:\"WMI/FDD\", value:\"error\");\n set_kb_item(name:\"WMI/CD\", value:\"error\");\n set_kb_item(name:\"WMI/USB\", value:\"error\");\n set_kb_item(name:\"WMI/BOOTINI\", value:\"error\");\n set_kb_item(name:\"WMI/BOOTDRIVE/log\", value:\"No access to SMB host.\\nFirewall is activated or there is not a Windows system.\");\n exit(0);\n}\n\nhandle = wmi_connect(host:host, username:usrname, password:passwd);\n\nif(!handle){\n set_kb_item(name:\"WMI/FS\", value:\"error\");\n set_kb_item(name:\"WMI/FDD\", value:\"error\");\n set_kb_item(name:\"WMI/CD\", value:\"error\");\n set_kb_item(name:\"WMI/USB\", value:\"error\");\n set_kb_item(name:\"WMI/BOOTINI\", value:\"error\");\n set_kb_item(name:\"WMI/BOOTDRIVE/log\", value:\"wmi_connect: WMI Connect failed.\");\n wmi_close(wmi_handle:handle);\n exit(0);\n}\n\nquery1 = 'select DeviceID from WIN32_FloppyDrive';\nquery2 = 'select DeviceID from WIN32_CDROMDrive';\nquery3 = 'select DeviceID from WIN32_USBController';\nquery4 = 'select FileSystem from WIN32_LogicalDisk WHERE DriveType = 3';\n\nWMIFDD = wmi_query(wmi_handle:handle, query:query1);\nWMICD = wmi_query(wmi_handle:handle, query:query2);\nWMIUSB = wmi_query(wmi_handle:handle, query:query3);\nWMIFS = wmi_query(wmi_handle:handle, query:query4);\nif (OSVER < 6){\n BOOTINI = wmi_file_is_file_writeable(handle:handle, filePath:\"c:\\\\boot.ini\");\n}else BOOTINI = \"No boot.ini\";\n\n\nif(!WMIFDD) WMIFDD = \"None\";\nif(!WMICD) WMICD = \"None\";\nif(!WMIUSB) WMIUSB = \"None\";\nif(!WMIFS) WMIFS = \"None\";\nif(!BOOTINI) BOOTINI = \"None\";\n\nset_kb_item(name:\"WMI/FS\", value:WMIFS);\nset_kb_item(name:\"WMI/FDD\", value:WMIFDD);\nset_kb_item(name:\"WMI/CD\", value:WMICD);\nset_kb_item(name:\"WMI/USB\", value:WMIUSB);\nset_kb_item(name:\"WMI/BOOTINI\", value:BOOTINI);\n\nwmi_close(wmi_handle:handle);\n\nexit(0);\n\n", "naslFamily": "IT-Grundschutz"}