Adobe LiveCycle Designer Version Detection (Windows)
2012-09-11T00:00:00
ID OPENVAS:1361412562310802959 Type openvas Reporter Copyright (c) 2012 Greenbone Networks GmbH Modified 2019-07-31T00:00:00
Description
Detects the installed version of Adobe LiveCycle Designer.
The script logs in via smb, searches for Adobe LiveCycle Designer in the registry
and gets the version from registry
###############################################################################
# OpenVAS Vulnerability Test
#
# Adobe LiveCycle Designer Version Detection (Windows)
#
# Authors:
# Madhuri D <dmadhuri@secpod.com>
#
# Updated By: Thanga Prakash S <tprakash@secpod.com> on 2014-06-10
# Updated to support 32 and 64 bit.
#
# Copyright:
# Copyright (c) 2012 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.802959");
script_version("2019-07-31T09:47:07+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-07-31 09:47:07 +0000 (Wed, 31 Jul 2019)");
script_tag(name:"creation_date", value:"2012-09-11 16:00:34 +0530 (Tue, 11 Sep 2012)");
script_tag(name:"qod_type", value:"registry");
script_name("Adobe LiveCycle Designer Version Detection (Windows)");
script_tag(name:"summary", value:"Detects the installed version of Adobe LiveCycle Designer.
The script logs in via smb, searches for Adobe LiveCycle Designer in the registry
and gets the version from registry");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (c) 2012 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("cpe.inc");
include("host_details.inc");
include("secpod_smb_func.inc");
if(!registry_key_exists(key:"SOFTWARE\Adobe\Designer"))
{
if(!registry_key_exists(key:"SOFTWARE\Wow6432Node\Adobe\Designer")){
exit(0);
}
}
os_arch = get_kb_item("SMB/Windows/Arch");
if(!os_arch){
exit(0);
}
if("x86" >< os_arch){
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
}
## Presently Adobe LiveCycle Designer 64bit application is not available
else if("x64" >< os_arch){
key = "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\";
}
if(!registry_key_exists(key:key)){
exit(0);
}
foreach item (registry_enum_keys(key:key))
{
designName = registry_get_sz(key:key + item, item:"DisplayName");
if("Adobe LiveCycle Designer" >< designName)
{
esName = eregmatch(pattern:"ES([0-9.]+)", string:designName);
designPath = registry_get_sz(key:key + item, item:"InstallLocation");
if(designPath)
{
designVer = fetch_file_version(sysPath:designPath, file_name:"FormDesigner.exe");
if(designVer)
{
set_kb_item(name:"Adobe/LiveCycle/Designer", value:designVer);
if(esName[0])
{
esName[0] = tolower(esName[0]);
cpe = build_cpe(value:designVer, exp:"^([0-9.]+)",
base:"cpe:/a:adobe:livecycle_designer_" + esName[0] + ":");
}
else{
cpe = build_cpe(value:designVer, exp:"^([0-9.]+)", base:"cpe:/a:adobe:livecycle_designer:");
}
if(isnull(cpe))
cpe = "cpe:/a:adobe:livecycle_designer";
register_product(cpe:cpe, location:designPath);
log_message(data: build_detection_report(app:"Adobe LiveCycle Designer",
version:designVer, install:designPath,
cpe:cpe, concluded: designVer));
}
}
}
}
{"id": "OPENVAS:1361412562310802959", "type": "openvas", "bulletinFamily": "scanner", "title": "Adobe LiveCycle Designer Version Detection (Windows)", "description": "Detects the installed version of Adobe LiveCycle Designer.\n\nThe script logs in via smb, searches for Adobe LiveCycle Designer in the registry\nand gets the version from registry", "published": "2012-09-11T00:00:00", "modified": "2019-07-31T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310802959", "reporter": "Copyright (c) 2012 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2019-08-01T13:43:52", "viewCount": 1, "enchantments": {"dependencies": {"references": [], "modified": "2019-08-01T13:43:52", "rev": 2}, "score": {"value": 0.3, "vector": "NONE", "modified": "2019-08-01T13:43:52", "rev": 2}, "vulnersScore": 0.3}, "pluginID": "1361412562310802959", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Adobe LiveCycle Designer Version Detection (Windows)\n#\n# Authors:\n# Madhuri D <dmadhuri@secpod.com>\n#\n# Updated By: Thanga Prakash S <tprakash@secpod.com> on 2014-06-10\n# Updated to support 32 and 64 bit.\n#\n# Copyright:\n# Copyright (c) 2012 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.802959\");\n script_version(\"2019-07-31T09:47:07+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-07-31 09:47:07 +0000 (Wed, 31 Jul 2019)\");\n script_tag(name:\"creation_date\", value:\"2012-09-11 16:00:34 +0530 (Tue, 11 Sep 2012)\");\n script_tag(name:\"qod_type\", value:\"registry\");\n script_name(\"Adobe LiveCycle Designer Version Detection (Windows)\");\n\n\n script_tag(name:\"summary\", value:\"Detects the installed version of Adobe LiveCycle Designer.\n\nThe script logs in via smb, searches for Adobe LiveCycle Designer in the registry\nand gets the version from registry\");\n\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (c) 2012 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(\"cpe.inc\");\ninclude(\"host_details.inc\");\ninclude(\"secpod_smb_func.inc\");\n\nif(!registry_key_exists(key:\"SOFTWARE\\Adobe\\Designer\"))\n{\n if(!registry_key_exists(key:\"SOFTWARE\\Wow6432Node\\Adobe\\Designer\")){\n exit(0);\n }\n}\n\nos_arch = get_kb_item(\"SMB/Windows/Arch\");\nif(!os_arch){\n exit(0);\n}\n\nif(\"x86\" >< os_arch){\n key = \"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\";\n}\n\n## Presently Adobe LiveCycle Designer 64bit application is not available\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\nforeach item (registry_enum_keys(key:key))\n{\n designName = registry_get_sz(key:key + item, item:\"DisplayName\");\n\n if(\"Adobe LiveCycle Designer\" >< designName)\n {\n esName = eregmatch(pattern:\"ES([0-9.]+)\", string:designName);\n designPath = registry_get_sz(key:key + item, item:\"InstallLocation\");\n\n if(designPath)\n {\n designVer = fetch_file_version(sysPath:designPath, file_name:\"FormDesigner.exe\");\n\n if(designVer)\n {\n set_kb_item(name:\"Adobe/LiveCycle/Designer\", value:designVer);\n\n if(esName[0])\n {\n esName[0] = tolower(esName[0]);\n cpe = build_cpe(value:designVer, exp:\"^([0-9.]+)\",\n base:\"cpe:/a:adobe:livecycle_designer_\" + esName[0] + \":\");\n }\n else{\n cpe = build_cpe(value:designVer, exp:\"^([0-9.]+)\", base:\"cpe:/a:adobe:livecycle_designer:\");\n }\n\n if(isnull(cpe))\n cpe = \"cpe:/a:adobe:livecycle_designer\";\n\n register_product(cpe:cpe, location:designPath);\n\n log_message(data: build_detection_report(app:\"Adobe LiveCycle Designer\",\n version:designVer, install:designPath,\n cpe:cpe, concluded: designVer));\n }\n }\n }\n}\n", "naslFamily": "Product detection"}