CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-48282

CVE-2026-48282: Unauthenticated Path Traversal and Arbitrary File Write in Adobe ColdFusion Remote Development Services

Alon Barad
Alon Barad
Software Engineer

Jul 8, 2026·6 min read·175 visits

Executive Summary (TL;DR)

A critical unauthenticated path traversal vulnerability in Adobe ColdFusion RDS permits arbitrary file writes to the local filesystem, leading directly to unauthenticated remote code execution.

CVE-2026-48282 is a critical unauthenticated path traversal and arbitrary file write vulnerability in the Remote Development Services (RDS) component of Adobe ColdFusion. The vulnerability allows a remote, unauthenticated attacker to bypass directory boundaries and write arbitrary files, including CFML-based web shells, onto the host server. This flaw is actively exploited in the wild and enables full unauthenticated remote code execution under the privileges of the ColdFusion service account.

Vulnerability Overview

Adobe ColdFusion contains a critical vulnerability in its Remote Development Services (RDS) component, tracked under the identifier CVE-2026-48282. This service is designed to facilitate interaction between external development tools and the ColdFusion application server. When enabled, it processes operations such as database queries, directory administration, and file transfers over HTTP.

The vulnerability is classified under CWE-22 as an Improper Limitation of a Pathname to a Restricted Directory, or Path Traversal. The affected endpoints map to the administrative RDS query processing route, specifically accessed via /CFIDE/main/ide.cfm. The vulnerability allows unauthenticated attackers to exploit the filesystem management logic.

If the RDS service is enabled without proper authentication restrictions, an attacker can transmit crafted HTTP POST requests to perform arbitrary file system modifications. Writing malicious ColdFusion Markup Language (CFML) code into web-accessible folders results in full unauthenticated remote code execution.

Root Cause Analysis

The root cause of this vulnerability lies in the input processing of the coldfusion.rds.FileServlet class. When the RDS endpoint receives an HTTP request with the query parameter ACTION=FILEIO, control is dispatched to this servlet to handle filesystem operations. The class maintains several interior command processors including FileReadOperator and FileWriteOperator to service these tasks.

In vulnerable implementations, the FileWriteOperator processes a length-prefixed RDS RPC packet containing a user-specified destination file path. This raw path string is directly passed to the getFile(filename) method, which instantiates a java.io.File object. No path normalization, canonicalization, or sanitization checks are performed on this value before the file write routine is executed.

Because of this design flaw, the application accepts relative pathname sequences such as .. or absolute filesystem paths without restrictions. If RDS is enabled and authentication is disabled, any network attacker can supply a path targeting the server web root, bypassing directory access restrictions completely.

Code Analysis and Security Patch Evaluation

The remediation introduced in the security patch alters the entry point for file instantiation inside the FileServlet class. Instead of invoking the vulnerable getFile(filename) API directly, the patched application routes the path string through getCanonicalFile(filename) which forces the input through the static validator RdsFileSecurity.resolveCanonical(path).

// Vulnerable Implementation in FileServlet.java
public class FileServlet extends RdsCmdProcessorCompositeServlet {
   // ...
   // The vulnerability lies here: filename is trusted directly from input
   File targetFile = FileServlet.this.getFile(filename);
   // Writes content to the file without verifying bounds
   writeFileContent(targetFile, payload);
}

The following code segment shows the patched security validation logic implemented in RdsFileSecurity.java to neutralize path traversal attempts:

package coldfusion.rds;
 
import coldfusion.util.RB;
import java.io.File;
import java.io.IOException;
 
final class RdsFileSecurity {
   // Restricts directory traversal structurally
   static File resolveCanonical(String path) throws IOException {
      if (path == null || path.isEmpty()) {
         throw new IOException("Invalid Path");
      } else if (path.indexOf(0) >= 0) {
         throw new IOException("Null Byte Rejected");
      } else if (containsParentDirSegment(path)) {
         throw new IOException("Traversal Detected");
      } else {
         return new File(normalizeDriveLetter(path)).getCanonicalFile();
      }
   }
 
   private static boolean containsParentDirSegment(String path) {
      String p = path.replace('\\', '/');
      return p.equals("..") || p.startsWith("../") || p.endsWith("/..") || p.contains("/../");
   }
}

This validator performs a sequence of verification steps. It screens the path parameter for empty input and rejects null bytes to avoid extension termination attacks. It then normalizes backward slashes to forward slashes and scans for the parent directory pattern ... Finally, the path is converted to its canonical form using the native filesystem API, ensuring that any directory escaping attempt is caught and rejected before filesystem interaction occurs.

RDS RPC Protocol Analysis and Exploitation Flow

To successfully trigger the arbitrary file write, the attacker must construct a request conforming to the custom RDS Remote Procedure Call (RPC) protocol. The body of the HTTP POST request uses a length-prefixed serialization mechanism. Each payload field is parsed sequentially according to a predefined index scheme.

The custom protocol header begins with an integer specifying the field count, followed by a colon separator. Each field is composed of a four-byte zero-padded length descriptor, a colon separator, and the raw payload data. For a file write operation, four distinct fields must be serialized in the RPC body: the target file path, the command indicator WRITE, an operational write flag, and the binary or text content of the target file.

An example of a serialized packet targeting a Windows environment appears as follows: 4:000043:C:\ColdFusion2025\cfusion\wwwroot\shell.cfm00005:WRITE00001:0000025:<cfoutput>Pwned</cfoutput>. The ColdFusion runtime parses this byte-by-byte, extracts the target destination path without verification, and proceeds to write the exact string payload to the filesystem inside the web application directory. When a subsequent HTTP GET request is issued to /shell.cfm, the server executes the newly added CFML tags.

Impact Assessment

The impact of CVE-2026-48282 is characterized by unauthenticated remote code execution. Because the vulnerability does not require authentication or user interaction, any network-adjacent or external attacker can exploit the vulnerability if the RDS service is exposed to the internet. This results in a CVSS v3.1 score of 10.0.

Successful execution of arbitrary CFML scripts allows full control over the underlying operating system. On Windows servers, ColdFusion historically runs under high-privilege system accounts such as NT AUTHORITY\SYSTEM, facilitating total host compromise. On Linux distributions, depending on configuration, attackers can execute commands as root or the designated service user, facilitating privilege escalation, lateral movement, or data exfiltration.

Active exploitation has been observed in the wild, which prompted CISA to add the vulnerability to its Known Exploited Vulnerabilities catalog. The rapid transition from initial vendor patch release to public, weaponized exploits makes this vulnerability a critical threat to unpatched instances.

Remediation and Defensive Engineering

Defensive engineering requires the immediate application of official software updates. Organizations must deploy ColdFusion 2025 Update 10 or ColdFusion 2023 Update 21 to ensure the sanitization code is loaded into the Java runtime environment. These updates fully replace the vulnerable class structures within the core jar archives.

If patches cannot be deployed immediately, the primary workaround is to disable the RDS service. This is accomplished in the ColdFusion Administrator panel under Security > RDS, or by commenting out the corresponding servlet mappings inside the web.xml deployment descriptor. Disabling RDS entirely removes the endpoint /CFIDE/main/ide.cfm from the active servlet dispatcher, neutralizing the attack path.

For instances where RDS is required for operational development, strict access control lists must be enforced. Administrators should restrict HTTP access to the administrative URI through reverse proxies, firewalls, or Web Application Firewalls (WAFs), allowing connections only from trusted developer subnetworks. Furthermore, strong password authentication must be enforced within the RDS configuration.

Official Patches

AdobeAdobe Security Bulletin APSB26-68 addressing multiple ColdFusion vulnerabilities

Technical Appendix

CVSS Score
10.0/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
EPSS Probability
1.02%
Top 41% most exploited

Affected Systems

Adobe ColdFusion 2025Adobe ColdFusion 2023
AttributeDetail
CWE IDCWE-22
Attack VectorNetwork (Unauthenticated)
CVSS Score10.0
EPSS Score0.01021 (Percentile: 59.24%)
ImpactRemote Code Execution (RCE) / Arbitrary File Write
Exploit StatusActive / Weaponized
KEV StatusListed (July 7, 2026)
CWE-22
Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')

The software uses external input to construct a pathname that is intended to identify a file or directory that is located under a restricted directory, but the software does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

Known Exploits & Detection

GitHubFunctional Proof of Concept script executing unauthenticated file write on vulnerable ColdFusion deployments
GitHub LabsLab validation and incident triage reports demonstrating detection strategies
NucleiDetection Template Available

Vulnerability Timeline

Adobe Security Bulletin APSB26-68 Published
2026-06-30
Technical Writeup and JVM Diff Disclosed by watchTowr Labs
2026-07-02
Added to CISA Known Exploited Vulnerabilities (KEV) Catalog
2026-07-07
Weaponized Proof-of-Concept Exploit Released Publicly
2026-07-08
CISA Remediation Due Date for Federal Agencies
2026-07-10

References & Sources

  • [1]Adobe Security Bulletin APSB26-68
  • [2]watchTowr Labs Deep Dive Analysis
  • [3]CISA Known Exploited Vulnerabilities Catalog

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•38 minutes ago•CVE-2026-76904
9.8

CVE-2026-76904: Unauthenticated SQL Injection in GeoTools PostGIS DataStore Component

A critical SQL injection vulnerability exists in the GeoTools open-source Java library. This vulnerability is situated within the post-processing phase of OGC Filter conversion inside the PostGIS DataStore module. Specifically, the `jsonArrayContains` function does not validate or sanitize its arguments before constructing PostgreSQL SQL/JSON path evaluation queries. An unauthenticated remote attacker can exploit this weakness by submitting crafted filters via standard OGC services like WFS or WMS to execute arbitrary SQL commands on the underlying database system.

Alon Barad
Alon Barad
0 views•5 min read
•about 2 hours ago•CVE-2026-61824
8.2

CVE-2026-61824: High-Severity Cross-Site Scripting (XSS) via Unsanitized Site Extractors in Defuddle

CVE-2026-61824 is a high-severity Cross-Site Scripting (XSS) vulnerability in kepano/defuddle before version 0.19.1. Custom site extractors for platforms such as X/Twitter, Substack, and YouTube constructed HTML representations via template string interpolation without output escaping. This allowed malicious pages to bypass standard parser sanitization routines and execute arbitrary JavaScript.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 3 hours ago•CVE-2026-63421
7.5

CVE-2026-63421: Query Limit Bypass via Negative Integer Input in KeystoneJS core resolvers

A high-severity vulnerability exists in KeystoneJS, a popular Node.js CMS and GraphQL framework, where the query resolution engine fails to validate signed negative integers within the pagination subsystem. Unauthenticated remote attackers can leverage this flaw to bypass the 'graphql.maxTake' safety boundary. By sending large negative values in the 'take' query parameter, the underlying Prisma ORM interprets the value as an instruction to fetch rows from the end of the collection, allowing malicious actors to bypass pagination limits, trigger database resource exhaustion, and execute application-level Denial of Service (DoS) attacks.

Alon Barad
Alon Barad
3 views•6 min read
•about 4 hours ago•CVE-2026-64679
8.1

CVE-2026-64679: Directory Traversal via Workspace Parameter in Atlantis

A critical path traversal vulnerability in Atlantis allows authenticated users or repository contributors to execute directory operations outside of the repository directory boundary via crafted workspace parameters in configuration files or API requests.

Amit Schendel
Amit Schendel
6 views•6 min read
•about 5 hours ago•CVE-2026-76905
7.5

CVE-2026-76905: Denial of Service via Nil-Pointer Dereference in getkin/kin-openapi openapi3filter

CVE-2026-76905 is a high-severity Denial of Service (DoS) vulnerability in the getkin/kin-openapi library, specifically inside the openapi3filter sub-package. When processing multipart/form-data request validation errors, a missing nil-pointer guard causes a Go runtime panic during error formatting. This panic terminates the active server process if no recovery handler is present, resulting in a total denial of service. The vulnerability affects versions from v0.10.0 to v0.140.0, and is resolved in v0.141.0.

Alon Barad
Alon Barad
5 views•6 min read
•about 6 hours ago•CVE-2026-59989
9.2

CVE-2026-59989: Remote Code Execution via Server-Side Template Injection in Phalcon Volt Engine

A critical server-side template injection (SSTI) vulnerability exists in the Volt template engine of the Phalcon PHP framework. In versions 5.15.0 and earlier, raw AST token values for filter arguments in the 'join' filter are directly spliced into the generated PHP template code. This allows an attacker who can influence Volt templates to execute arbitrary PHP code during template rendering.

Amit Schendel
Amit Schendel
5 views•5 min read