| Reporter | Title | Published | Views | Family All 4 |
|---|---|---|---|---|
| CVE-2006-3623 | 14 Jul 200623:00 | – | cve | |
| CVE-2006-3623 | 14 Jul 200623:00 | – | cvelist | |
| EUVD-2006-3618 | 7 Oct 202500:30 | – | euvd | |
| CVE-2006-3623 | 18 Jul 200615:46 | – | nvd |
| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(22046);
script_version("1.28");
script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
script_cve_id("CVE-2006-3623");
script_bugtraq_id(18979);
script_name(english:"McAfee Common Management Agent Traversal Arbitrary File Write");
script_summary(english:"Checks the version of McAfee CMA.");
script_set_attribute(attribute:"synopsis", value:
"A security management service running on the remote host is affected
by a directory traversal vulnerability.");
script_set_attribute(attribute:"description", value:
"According to its banner, the McAfee Common Management Agent (CMA)
running on the remote host is affected by a directory traversal
vulnerability in the Framework Service component due to improper
sanitization of user-supplied input. An unauthenticated, remote
attacker can exploit this, via a specially crafted request, to write
arbitrary files outside of the web path.");
# http://web.archive.org/web/20060818184552/http://knowledge.mcafee.com/SupportSite/search.do?cmd=displayKC&docType=kc&externalId=9925498&sliceId=SAL_Public&dialogID=1615017&stateId=0%200%201613017
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?df0c46df");
script_set_attribute(attribute:"solution", value:
"Upgrade to McAfee Common Management Agent version 3.5.5 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:P/A:N");
script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"vuln_publication_date", value:"2006/07/13");
script_set_attribute(attribute:"patch_publication_date", value:"2006/07/13");
script_set_attribute(attribute:"plugin_publication_date", value:"2006/07/14");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:mcafee:common_management_agent");
script_set_attribute(attribute:"cpe", value:"cpe:/a:mcafee:epolicy_orchestrator");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2006-2021 Tenable Network Security, Inc.");
script_dependencies("mcafee_cma_detect.nasl");
script_require_ports("Services/www", 8081);
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("install_func.inc");
appname = "McAfee Agent";
port = get_http_port(default:8081, embedded: 1);
install = get_single_install(app_name:appname, port:port, exit_if_unknown_ver:TRUE);
ver = install['version'];
ver_fields = split(ver, sep:'.', keep:FALSE);
major = int(ver_fields[0]);
minor = int(ver_fields[1]);
rev = int(ver_fields[2]);
update = int(ver_fields[3]);
fix = '';
# There's a problem if it's under 3.5.5.438.
if (major < 3 ||
(major == 3 && minor < 5) ||
(major == 3 && minor == 5 && rev < 5) ||
(major == 3 && minor == 5 && rev == 5 && update < 438))
fix = '3.5.5.438';
if(fix != '')
{
report =
'\n Installed Version : ' + ver +
'\n Fixed Version : ' + fix + '\n';
security_report_v4(severity:SECURITY_WARNING, port:port, extra:report);
}
else audit(AUDIT_LISTEN_NOT_VULN, "McAfee Common Management Agent", port, ver);
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation