ID OPENVAS:1361412562310800807 Type openvas Reporter Copyright (C) 2009 Greenbone Networks GmbH Modified 2019-11-05T00:00:00
Description
This script detects the installed version of ICQ Client.
###############################################################################
# OpenVAS Vulnerability Test
#
# ICQ Version Detection
#
# Authors:
# Sharath S <sharaths@secpod.com>
#
# Copyright:
# Copyright (c) 2009 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.800807");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_version("2019-11-05T16:13:01+0000");
script_tag(name:"last_modification", value:"2019-11-05 16:13:01 +0000 (Tue, 05 Nov 2019)");
script_tag(name:"creation_date", value:"2009-06-09 08:37:33 +0200 (Tue, 09 Jun 2009)");
script_tag(name:"cvss_base", value:"0.0");
script_name("ICQ Version Detection");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"executable_version");
script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("smb_reg_service_pack.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_require_ports(139, 445);
script_tag(name:"summary", value:"This script detects the installed version of ICQ Client.");
exit(0);
}
include("smb_nt.inc");
include("secpod_smb_func.inc");
include("cpe.inc");
include("host_details.inc");
SCRIPT_DESC = "ICQ Version Detection";
if(!get_kb_item("SMB/WindowsVersion")){
exit(0);
}
if(!(registry_key_exists(key:"SOFTWARE\Mirabilis\ICQ") ||
registry_key_exists(key:"SOFTWARE\ICQ"))){
exit(0);
}
# To Get the Installed Location
icqPath = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion"+
"\App Paths\ICQ.exe", item:"Path");
if(icqPath == NULL){
exit(0);
}
share = ereg_replace(pattern:"([A-Z]):.*", replace:"\1$", string:icqPath);
file = ereg_replace(pattern:"[A-Z]:(.*)", replace:"\1", string:icqPath + "\icq.exe");
icqVer = GetVer(share:share, file:file);
if(icqVer != NULL)
{
set_kb_item(name:"ICQ/Ver", value:icqVer);
log_message(data:"ICQ version " + icqVer + " running at location" + icqPath +
" was detected on the host");
cpe = build_cpe(value:icqVer, exp:"^([0-9]\.[0-9])", base:"cpe:/a:icq:icq:");
if(!isnull(cpe))
register_host_detail(name:"App", value:cpe, desc:SCRIPT_DESC);
}
{"id": "OPENVAS:1361412562310800807", "type": "openvas", "bulletinFamily": "scanner", "title": "ICQ Version Detection", "description": "This script detects the installed version of ICQ Client.", "published": "2009-06-09T00:00:00", "modified": "2019-11-05T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310800807", "reporter": "Copyright (C) 2009 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2019-11-07T16:02:10", "viewCount": 0, "enchantments": {"dependencies": {"references": [], "modified": "2019-11-07T16:02:10", "rev": 2}, "score": {"value": -0.2, "vector": "NONE", "modified": "2019-11-07T16:02:10", "rev": 2}, "vulnersScore": -0.2}, "pluginID": "1361412562310800807", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# ICQ Version Detection\n#\n# Authors:\n# Sharath S <sharaths@secpod.com>\n#\n# Copyright:\n# Copyright (c) 2009 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.800807\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_version(\"2019-11-05T16:13:01+0000\");\n script_tag(name:\"last_modification\", value:\"2019-11-05 16:13:01 +0000 (Tue, 05 Nov 2019)\");\n script_tag(name:\"creation_date\", value:\"2009-06-09 08:37:33 +0200 (Tue, 09 Jun 2009)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_name(\"ICQ Version Detection\");\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"qod_type\", value:\"executable_version\");\n script_copyright(\"Copyright (C) 2009 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"smb_reg_service_pack.nasl\");\n script_mandatory_keys(\"SMB/WindowsVersion\");\n script_require_ports(139, 445);\n script_tag(name:\"summary\", value:\"This script detects the installed version of ICQ Client.\");\n exit(0);\n}\n\n\ninclude(\"smb_nt.inc\");\ninclude(\"secpod_smb_func.inc\");\ninclude(\"cpe.inc\");\ninclude(\"host_details.inc\");\n\nSCRIPT_DESC = \"ICQ Version Detection\";\n\nif(!get_kb_item(\"SMB/WindowsVersion\")){\n exit(0);\n}\n\nif(!(registry_key_exists(key:\"SOFTWARE\\Mirabilis\\ICQ\") ||\n registry_key_exists(key:\"SOFTWARE\\ICQ\"))){\n exit(0);\n}\n\n# To Get the Installed Location\nicqPath = registry_get_sz(key:\"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\"+\n \"\\App Paths\\ICQ.exe\", item:\"Path\");\nif(icqPath == NULL){\n exit(0);\n}\n\nshare = ereg_replace(pattern:\"([A-Z]):.*\", replace:\"\\1$\", string:icqPath);\nfile = ereg_replace(pattern:\"[A-Z]:(.*)\", replace:\"\\1\", string:icqPath + \"\\icq.exe\");\nicqVer = GetVer(share:share, file:file);\n\nif(icqVer != NULL)\n{\n set_kb_item(name:\"ICQ/Ver\", value:icqVer);\n log_message(data:\"ICQ version \" + icqVer + \" running at location\" + icqPath +\n \" was detected on the host\");\n\n cpe = build_cpe(value:icqVer, exp:\"^([0-9]\\.[0-9])\", base:\"cpe:/a:icq:icq:\");\n if(!isnull(cpe))\n register_host_detail(name:\"App\", value:cpe, desc:SCRIPT_DESC);\n\n}\n", "naslFamily": "Product detection"}