ID OPENVAS:1361412562310811732 Type openvas Reporter Copyright (C) 2017 Greenbone Networks GmbH Modified 2019-12-05T00:00:00
Description
Detects the installed version of
DocuWorks Viewer Light.
The script logs in via smb, searches for
####################################################################################
# OpenVAS Vulnerability Test
#
# DocuWorks Viewer Light Detection (Windows)
#
# Authors:
# Shakeel <bshakeel@secpod.com>
#
# Copyright:
# Copyright (C) 2017 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.811732");
script_version("2019-12-05T15:10:00+0000");
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:"last_modification", value:"2019-12-05 15:10:00 +0000 (Thu, 05 Dec 2019)");
script_tag(name:"creation_date", value:"2017-09-08 15:22:17 +0530 (Fri, 08 Sep 2017)");
script_tag(name:"qod_type", value:"registry");
script_name("DocuWorks Viewer Light Detection (Windows)");
script_tag(name:"summary", value:"Detects the installed version of
DocuWorks Viewer Light.
The script logs in via smb, searches for 'Xerox DocuWorks Viewer Light' string and
gets the version from 'DisplayVersion' string from registry.");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2017 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("smb_reg_service_pack.nasl");
script_mandatory_keys("SMB/WindowsVersion", "SMB/Windows/Arch");
script_require_ports(139, 445);
exit(0);
}
include("smb_nt.inc");
include("secpod_smb_func.inc");
include("cpe.inc");
include("host_details.inc");
os_arch = get_kb_item("SMB/Windows/Arch");
if(!os_arch){
exit(0);
}
## Application confirmation, Only 32-bit application is available
if(!registry_key_exists(key:"SOFTWARE\FujiXerox\DocuWorks Viewer Light"))
{
if(!registry_key_exists(key:"SOFTWARE\Wow6432Node\FujiXerox\DocuWorks Viewer Light")){
exit(0);
}
}
if("x86" >< os_arch){
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
}
else if("x64" >< os_arch){
key = "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\";
}
if(!registry_key_exists(key:key)){
exit(0);
}
## Enumerate all keys
foreach item (registry_enum_keys(key:key))
{
appName = registry_get_sz(key:key + item, item:"DisplayName");
if("Xerox DocuWorks Viewer Light" >< appName)
{
appVer = registry_get_sz(key:key + item, item:"DisplayVersion");
if(appVer)
{
insloc = registry_get_sz(key:key + item, item:"InstallLocation");
if(!insloc){
insloc = "Could not find install location.";
}
set_kb_item(name:"DocuWorks/Viewer/Light/Win/Ver", value:appVer);
cpe = build_cpe(value:appVer, exp:"([0-9.]+)", base:"cpe:/a:fujixerox:docuworks_viewer_light:");
if(isnull(cpe))
cpe = "cpe:/a:fujixerox:docuworks_viewer_light";
register_product(cpe:cpe, location:insloc);
log_message(data: build_detection_report(app: "DocuWorks Viewer Light",
version: appVer,
install: insloc,
cpe: cpe,
concluded: appVer));
exit(0);
}
}
}
exit(0);
{"id": "OPENVAS:1361412562310811732", "type": "openvas", "bulletinFamily": "scanner", "title": "DocuWorks Viewer Light Detection (Windows)", "description": "Detects the installed version of\n DocuWorks Viewer Light.\n\n The script logs in via smb, searches for ", "published": "2017-09-08T00:00:00", "modified": "2019-12-05T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310811732", "reporter": "Copyright (C) 2017 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2019-12-06T15:25:41", "viewCount": 4, "enchantments": {"dependencies": {"references": [], "modified": "2019-12-06T15:25:41", "rev": 2}, "score": {"value": 0.4, "vector": "NONE", "modified": "2019-12-06T15:25:41", "rev": 2}, "vulnersScore": 0.4}, "pluginID": "1361412562310811732", "sourceData": "####################################################################################\n# OpenVAS Vulnerability Test\n#\n# DocuWorks Viewer Light Detection (Windows)\n#\n# Authors:\n# Shakeel <bshakeel@secpod.com>\n#\n# Copyright:\n# Copyright (C) 2017 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.811732\");\n script_version(\"2019-12-05T15:10:00+0000\");\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:\"last_modification\", value:\"2019-12-05 15:10:00 +0000 (Thu, 05 Dec 2019)\");\n script_tag(name:\"creation_date\", value:\"2017-09-08 15:22:17 +0530 (Fri, 08 Sep 2017)\");\n script_tag(name:\"qod_type\", value:\"registry\");\n script_name(\"DocuWorks Viewer Light Detection (Windows)\");\n\n script_tag(name:\"summary\", value:\"Detects the installed version of\n DocuWorks Viewer Light.\n\n The script logs in via smb, searches for 'Xerox DocuWorks Viewer Light' string and\n gets the version from 'DisplayVersion' string from registry.\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2017 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"smb_reg_service_pack.nasl\");\n script_mandatory_keys(\"SMB/WindowsVersion\", \"SMB/Windows/Arch\");\n script_require_ports(139, 445);\n exit(0);\n}\n\ninclude(\"smb_nt.inc\");\ninclude(\"secpod_smb_func.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\n\nos_arch = get_kb_item(\"SMB/Windows/Arch\");\nif(!os_arch){\n exit(0);\n}\n\n## Application confirmation, Only 32-bit application is available\nif(!registry_key_exists(key:\"SOFTWARE\\FujiXerox\\DocuWorks Viewer Light\"))\n{\n if(!registry_key_exists(key:\"SOFTWARE\\Wow6432Node\\FujiXerox\\DocuWorks Viewer Light\")){\n exit(0);\n }\n}\n\nif(\"x86\" >< os_arch){\n key = \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\n}\n\nelse if(\"x64\" >< os_arch){\n key = \"SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\n}\n\nif(!registry_key_exists(key:key)){\n exit(0);\n}\n\n## Enumerate all keys\nforeach item (registry_enum_keys(key:key))\n{\n appName = registry_get_sz(key:key + item, item:\"DisplayName\");\n if(\"Xerox DocuWorks Viewer Light\" >< appName)\n {\n appVer = registry_get_sz(key:key + item, item:\"DisplayVersion\");\n if(appVer)\n {\n insloc = registry_get_sz(key:key + item, item:\"InstallLocation\");\n if(!insloc){\n insloc = \"Could not find install location.\";\n }\n set_kb_item(name:\"DocuWorks/Viewer/Light/Win/Ver\", value:appVer);\n\n cpe = build_cpe(value:appVer, exp:\"([0-9.]+)\", base:\"cpe:/a:fujixerox:docuworks_viewer_light:\");\n if(isnull(cpe))\n cpe = \"cpe:/a:fujixerox:docuworks_viewer_light\";\n\n register_product(cpe:cpe, location:insloc);\n\n log_message(data: build_detection_report(app: \"DocuWorks Viewer Light\",\n version: appVer,\n install: insloc,\n cpe: cpe,\n concluded: appVer));\n exit(0);\n }\n }\n}\nexit(0);\n", "naslFamily": "Product detection"}