← Back to Feed CACHED · 2026-07-30 03:53:14 · CACHE_KEY CVE-2026-48283
CVE-2026-48283 · CWE-434 · Disclosed 2026-06-30

ColdFusion versions 2025

ASSESSED — NOISGATE V0.5
Vendor
Reassessed
Verdict:
Do you agree?
01 · The Real Story

Someone left the cargo bay door open and the lock was never installed

CVE-2026-48283 is an unauthenticated unrestricted file upload vulnerability in the CKEditor filemanager connector (/cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm) that ships by default with every Adobe ColdFusion installation. Affected versions are ColdFusion 2025 Update 9 and earlier and ColdFusion 2023 Update 20 and earlier. An attacker sends a single HTTP POST — no credentials, no user click, no special headers — and drops a malicious .cfm webshell into the ColdFusion webroot via a path traversal in the path parameter. The uploaded file executes as NT AUTHORITY\SYSTEM on Windows. Fixed in ColdFusion 2025 Update 10 and ColdFusion 2023 Update 21 (bulletin APSB26-68, released June 30, 2026).

Adobe's CVSS 10.0 CRITICAL rating is essentially correct. The vendor used Scope:Changed (S:C), which is technically debatable since code execution occurs on the same host, yielding a more precise 9.8 with S:U — but in practical terms this is a zero-friction, unauthenticated, internet-reachable RCE that runs as SYSTEM. The sibling flaw CVE-2026-48282 was exploited within *two hours* of the watchTowr writeup and is now KEV-listed. CVE-2026-48283 targets a different, arguably easier attack surface (CKEditor upload vs. RDS FILEIO), meaning weaponization is a matter of days, not weeks. The vendor severity matches reality.

"Unauth file upload to SYSTEM shell on ColdFusion — sibling CVE already in the wild."
02 · The Attack Path

5 steps from start to impact.

STEP 01

Discover ColdFusion instance

The attacker identifies a ColdFusion server by fingerprinting HTTP headers (Server: ColdFusion, /CFIDE/ directory presence) or using Shodan/FOFA dorks. Shadowserver tracks approximately 800 internet-facing ColdFusion instances; internal enterprise deployments add significantly to the attack surface. ColdFusion's default landing page and /CFIDE/administrator/ path leak version information.
Conditions required:
  • Network path to ColdFusion HTTP/HTTPS port
Where this breaks in practice:
  • Small internet-facing population (~800 per Shadowserver) limits external mass exploitation
  • Internal ColdFusion instances require prior network access
Detection/coverage: Shodan query http.component:coldfusion; Nuclei template coldfusion-detect; GreyNoise tags for ColdFusion scanning activity.
STEP 02

Probe CKEditor upload endpoint

The attacker sends an unauthenticated GET or HEAD request to /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm to confirm the endpoint exists and is reachable. This endpoint is part of the CKEditor filemanager plugin that ships with ColdFusion by default. A 200 response confirms vulnerability; a 404 or WAF block indicates the endpoint is removed or protected.
Conditions required:
  • CKEditor filemanager connector not removed or blocked by WAF/reverse proxy
Where this breaks in practice:
  • Some hardened installs lock down /cf_scripts/ via reverse proxy rules
  • Adobe hardening guides recommend disabling the filemanager connector, but few deployments follow this
Detection/coverage: WAF rules matching upload.cfm in the CKEditor path; HTTP access logs for the specific URI pattern.
STEP 03

Upload malicious .cfm webshell

The attacker sends a multipart POST to the upload endpoint with a path traversal in the path parameter (e.g., home/../../../../../../../ColdFusion2025/cfusion/wwwroot/) and a .cfm file containing a webshell payload such as <cfexecute name="cmd.exe" arguments="/c whoami" />. No authentication token, session cookie, or CSRF token is required. The file is written to disk with SYSTEM privileges.
Conditions required:
  • Upload endpoint reachable and functional
  • ColdFusion not patched to Update 10 (2025) or Update 21 (2023)
Where this breaks in practice:
  • File extension blocklist in patched versions blocks .cfm, .jsp, .jspf, .war, .cfmail — but pre-patch versions have no such restriction
Detection/coverage: File integrity monitoring on wwwroot; EDR alerting on new .cfm file creation by the ColdFusion process; IDS signatures for path traversal sequences in POST bodies.
STEP 04

Execute webshell for SYSTEM code execution

The attacker issues a GET request to the uploaded webshell (e.g., https://target/shell.cfm). ColdFusion processes the template and executes the embedded commands as NT AUTHORITY\SYSTEM on Windows or the ColdFusion service account on Linux. From here the attacker has arbitrary code execution: credential harvesting (datasource passwords in neo-datasource.xml), lateral movement, persistence via scheduled tasks, or ransomware deployment.
Conditions required:
  • Uploaded file lands in a web-accessible directory
  • ColdFusion service is running
Where this breaks in practice:
  • Application-layer EDR should detect cfexecute spawning child processes like cmd.exe or /bin/sh
  • Network segmentation may limit lateral movement from the ColdFusion tier
Detection/coverage: EDR process-tree alerts for coldfusion.execmd.exe; Sysmon EventID 1 with cfexecute parent; web shell scanners (YARA rules for common CFM shells).
STEP 05

Harvest credentials and pivot

ColdFusion stores database connection strings in neo-datasource.xml with reversible encryption. The attacker decrypts these credentials using well-known tooling (e.g., ColdFusionPwn) to obtain database admin passwords. With SYSTEM access the attacker can also dump LSASS, extract service account credentials, and pivot into Active Directory. ColdFusion servers frequently have direct database connectivity to production SQL instances holding regulated data.
Conditions required:
  • Database credentials stored in ColdFusion datasource configuration
  • Network path from ColdFusion host to database tier
Where this breaks in practice:
  • MFA on database connections (rare for service accounts)
  • Network microsegmentation between app tier and data tier
Detection/coverage: Database audit logs showing anomalous queries from the ColdFusion service account; LSASS access alerts from EDR; credential decryption tool signatures.
03 · Intelligence Metadata

The supporting signals.

In-the-wild statusCVE-2026-48283 itself: no confirmed exploitation yet. However, sibling CVE-2026-48282 (same bulletin, same affected versions) was exploited within 2 hours of watchTowr's technical writeup and is KEV-listed since July 7, 2026. Treat CVE-2026-48283 as imminent.
Proof-of-conceptHorizon3.ai published a technical advisory pairing CVE-2026-48283 with CVE-2026-48313 (path traversal). watchTowr Labs published a detailed writeup covering the CKEditor upload endpoint and path parameter abuse. A historical Metasploit module (exploit/multi/http/coldfusion_ckeditor_file_upload) for CVE-2018-15961 targets the same endpoint pattern — adaptation for 2026 variants is trivial.
EPSS0.01553 (1.55%) — 30-day exploitation probability. This is relatively low but is expected to spike as PoC code proliferates and sibling CVE exploitation widens. EPSS lags real-world activity for newly disclosed CVEs.
KEV statusCVE-2026-48283: Not listed. Sibling CVE-2026-48282: Added July 7, 2026. Given identical affected versions and fixes, KEV addition for -48283 is probable once exploitation is observed.
CVSS vectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H = 10.0. The S:C (Scope Changed) is debatable — code executes on the same host. With S:U the score would be 9.8. Either way, the vector reflects zero-friction unauthenticated RCE.
Affected versionsColdFusion 2025 ≤ Update 9; ColdFusion 2023 ≤ Update 20. All prior major versions (2021, 2018, etc.) are end-of-life and likely also vulnerable but will not receive patches.
Fixed versionsColdFusion 2025 Update 10; ColdFusion 2023 Update 21. Released June 30, 2026 in bulletin APSB26-68. Adobe Priority Rating 1 (highest urgency).
Exposure dataShadowserver tracks ~800 internet-facing ColdFusion instances globally. GreyNoise has documented coordinated scanning campaigns targeting ColdFusion endpoints. Many more instances exist behind corporate firewalls, especially in government and financial sectors.
Disclosure dateJune 30, 2026 (APSB26-68 publication). Credited researchers: Anirudh Anand (a0xnirudh), Matan Sandori, and 2Bsecure.
Historical precedentColdFusion CKEditor/FCKEditor upload vulns are a recurring pattern: CVE-2018-15961, CVE-2018-4939, CVE-2023-26360, CVE-2023-29298. Each was actively exploited. ColdFusion is consistently targeted by APT groups and ransomware operators.
04 · The Call

noisgate verdict.

Final Verdict
= UNCHANGED to CRITICAL (9.8/10)

The single most decisive factor is zero-friction unauthenticated RCE through a default-shipped endpoint — no credentials, no user interaction, one HTTP POST to SYSTEM-level code execution. The sibling CVE-2026-48282 was weaponized within two hours and is KEV-listed, establishing that attackers are actively targeting this exact bulletin and attack surface.

HIGH Vulnerability existence and unauthenticated exploitability
HIGH Attack chain mechanics (CKEditor upload + path traversal = RCE)
MEDIUM Imminent exploitation of CVE-2026-48283 specifically (sibling confirmed, this CVE not yet)
LOW Exact count of vulnerable internal ColdFusion deployments

Why this verdict

  • Zero authentication friction: AV:N/AC:L/PR:N/UI:N — the attacker needs nothing but HTTP access to the ColdFusion port. No credentials, no social engineering, no prior foothold. This is the lowest-friction attack class possible.
  • Default attack surface: The CKEditor filemanager connector with upload.cfm ships with every ColdFusion installation. It is not an optional module or a feature that must be enabled. The endpoint exists out of the box on all affected versions.
  • SYSTEM-level execution: Uploaded files execute as NT AUTHORITY\SYSTEM on Windows. This is not constrained to the ColdFusion application sandbox — it is full host compromise with the highest local privilege level.
  • Sibling exploitation confirms active targeting: CVE-2026-48282 (same bulletin, same versions, same fix) was exploited within 2 hours of disclosure and is now KEV-listed. Attackers are already probing ColdFusion instances patched by APSB26-68. Weaponization of -48283 is imminent.
  • Role multiplier: ColdFusion occupies the application-tier server role in enterprise architectures. It is not a canonical high-value-role component (not a DC, hypervisor, or IdP), but it commonly holds database credentials in neo-datasource.xml with reversible encryption, making it a credential-harvesting pivot point to production databases containing regulated data. In government agencies (ColdFusion's largest vertical), these servers often connect directly to citizen-data stores. The blast radius is host → database tier → regulated data exfiltration. This keeps the floor at HIGH; combined with zero-friction unauth RCE and active campaign context, the verdict remains CRITICAL.
  • Historical exploitation pattern: Every prior ColdFusion CKEditor/FCKEditor upload vulnerability (CVE-2018-15961, CVE-2023-26360) was exploited in the wild, often by APT groups. This is a proven, reliable attack class with established tooling.

Why not higher?

A CVSS 10.0 is the mathematical ceiling, and this is already CRITICAL. The minor 0.2-point reduction to 9.8 reflects the debatable Scope:Changed vector — code execution occurs on the same host, not a separate security authority. In every practical dimension this is at the top of the severity scale.

Why not lower?

Despite the relatively small internet-facing population (~800 per Shadowserver), downgrading below CRITICAL would ignore three decisive factors: (1) the attack requires zero authentication and zero user interaction through a default endpoint; (2) the sibling CVE is already KEV-listed with confirmed active exploitation against the same target population; and (3) ColdFusion's historical track record shows 100% exploitation rate for CKEditor upload vulnerabilities. The small external footprint is offset by significant internal deployment in government and financial sectors where ColdFusion is still widely used.

05 · Compensating Control

What to do — in priority order.

  1. Block the CKEditor upload endpoint at the reverse proxy / WAF immediately — Add a deny rule for URI path matching */ckeditor/plugins/filemanager/upload.cfm* on your reverse proxy (Apache, Nginx, IIS ARR) or WAF. This eliminates the attack surface entirely without touching ColdFusion. Deploy within the noisgate mitigation SLA of 3 days for CRITICAL. Test by confirming the endpoint returns 403.
  2. Restrict access to the entire /cf_scripts/ directory — The /cf_scripts/ virtual directory serves ColdFusion client-side libraries and the CKEditor connector. Block external access to this path at the network edge. Internal applications that rely on CKEditor rich-text editing will need explicit allowlisting. This is a defense-in-depth measure that also mitigates CVE-2026-48313 and future CKEditor-related issues.
  3. Deploy file integrity monitoring on ColdFusion webroot — Configure FIM (OSSEC, Wazuh, CrowdStrike, or Carbon Black) to alert on any new .cfm, .jsp, .jspf, or .war file creation under the ColdFusion wwwroot directory. This provides detection of successful exploitation even if the endpoint block is bypassed. Trigger immediate incident response on any alert.
  4. Network-segment ColdFusion hosts away from domain controllers and database tiers — Place ColdFusion servers in a dedicated VLAN with explicit firewall rules allowing only required database ports (e.g., 1433 for MSSQL) and no SMB/RPC/LDAP access to domain controllers. This limits post-exploitation lateral movement and credential relay attacks. Apply within 3 days.
  5. Rotate database credentials stored in ColdFusion datasources — After patching, rotate all database passwords configured in the ColdFusion Administrator datasources. These credentials are stored in neo-datasource.xml with reversible encryption that attackers can trivially decrypt with publicly available tools like ColdFusionPwn. Assume they are compromised if the server was exposed.
What doesn't work
  • Network-level IP allowlisting alone — if any allowed source IP is compromised (VPN, jump box, partner network), the attacker inherits the allowlist. The endpoint itself must be blocked or removed, not just access-controlled by IP.
  • ColdFusion Administrator lockdown — disabling ColdFusion Administrator access (/CFIDE/administrator/) does not protect the CKEditor upload endpoint, which is under /cf_scripts/ — a completely separate path. Administrators often confuse these two attack surfaces.
  • Disabling RDS — RDS lockdown mitigates the sibling CVE-2026-48282 but has no effect on CVE-2026-48283, which uses the CKEditor connector, not the RDS FILEIO interface.
06 · Verification

Crowdsourced verification payload.

Run this script from any Linux/macOS workstation (or WSL) that has network access to the target ColdFusion server. Invoke with: bash check_cve_2026_48283.sh https://coldfusion.example.com. No special privileges required — it only performs HTTP requests.

noisgate-verify.sh
BASHREAD-ONLYSAFE
#!/usr/bin/env bash
# check_cve_2026_48283.sh — CVE-2026-48283 ColdFusion CKEditor Upload Check
# Usage: bash check_cve_2026_48283.sh <BASE_URL>
# Example: bash check_cve_2026_48283.sh https://coldfusion.example.com
# Requires: curl
# Exit codes: 1=VULNERABLE, 0=PATCHED, 2=UNKNOWN

set -euo pipefail

if [ $# -lt 1 ]; then
  echo "Usage: $0 <BASE_URL>"
  echo "Example: $0 https://coldfusion.example.com"
  exit 2
fi

BASE_URL="${1%/}"
UPLOAD_PATH="/cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm"
TARGET="${BASE_URL}${UPLOAD_PATH}"

echo "[*] Checking CVE-2026-48283 against: ${BASE_URL}"
echo "[*] Probing CKEditor upload endpoint: ${TARGET}"

# Step 1: Check if the upload endpoint is reachable
HTTP_CODE=$(curl -sk -o /dev/null -w '%{http_code}' --max-time 10 "${TARGET}" 2>/dev/null || echo "000")

if [ "${HTTP_CODE}" = "000" ]; then
  echo "[!] Could not connect to ${BASE_URL}"
  echo "UNKNOWN"
  exit 2
fi

if [ "${HTTP_CODE}" = "404" ] || [ "${HTTP_CODE}" = "403" ]; then
  echo "[+] Upload endpoint returned HTTP ${HTTP_CODE} — endpoint blocked or removed."
  echo "[+] This suggests the endpoint is not reachable (patched, WAF-blocked, or hardened)."
  echo "PATCHED"
  exit 0
fi

if [ "${HTTP_CODE}" = "200" ] || [ "${HTTP_CODE}" = "405" ] || [ "${HTTP_CODE}" = "500" ]; then
  echo "[!] Upload endpoint returned HTTP ${HTTP_CODE} — endpoint EXISTS and is reachable!"
  echo "[!] ColdFusion CKEditor filemanager upload.cfm is accessible."
  
  # Step 2: Try to detect ColdFusion version from headers or admin page
  CF_VERSION=$(curl -sk --max-time 10 "${BASE_URL}/CFIDE/adminapi/base.cfc?wsdl" 2>/dev/null | grep -oP 'ColdFusion[^<"]+' | head -1 || echo "")
  if [ -n "${CF_VERSION}" ]; then
    echo "[*] Detected: ${CF_VERSION}"
  fi
  
  echo ""
  echo "[!!!] VULNERABLE — The CKEditor upload endpoint is reachable without authentication."
  echo "[!!!] CVE-2026-48283 is likely exploitable on this host."
  echo "[!!!] ACTION: Apply ColdFusion 2025 Update 10 or ColdFusion 2023 Update 21 immediately."
  echo "[!!!] INTERIM: Block /cf_scripts/scripts/ajax/ckeditor/ at your reverse proxy or WAF."
  echo "VULNERABLE"
  exit 1
fi

echo "[?] Unexpected HTTP response code: ${HTTP_CODE}"
echo "UNKNOWN"
exit 2
07 · Bottom Line

If you remember one thing.

TL;DR
This is a patch-now situation. CVE-2026-48283 is an unauthenticated, zero-click RCE through a default ColdFusion endpoint, and the sibling CVE-2026-48282 is already being actively exploited and KEV-listed. Under the noisgate mitigation SLA for CRITICAL, deploy the compensating control (block the CKEditor upload endpoint at your WAF or reverse proxy) within 3 days — which means by Saturday August 2nd. Under the noisgate remediation SLA, apply ColdFusion 2025 Update 10 or ColdFusion 2023 Update 21 within 90 days. However, given active exploitation of the sibling CVE and the near-certainty that -48283 will be weaponized imminently, treat this as an emergency patch — push the update to all ColdFusion instances this week, starting with any internet-facing or DMZ-hosted servers Monday morning. If you have ColdFusion instances on end-of-life versions (2021 and earlier), begin decommission planning immediately; they will not receive patches. After patching, rotate all database credentials stored in ColdFusion datasources and hunt for webshells in your ColdFusion webroot directories.

Sources

  1. Adobe Security Bulletin APSB26-68
  2. Horizon3.ai — CVE-2026-48283 / CVE-2026-48313 Advisory
  3. watchTowr Labs — ColdFusion APSB26-68 Analysis
  4. BleepingComputer — ColdFusion flaw exploited in attacks
  5. Greenbone — CVE-2026-48282 Active Exploitation
  6. The Hacker News — Adobe Patches 7 CVSS 10.0 Flaws
  7. Rapid7 — ColdFusion CKEditor File Upload Module
  8. CISA KEV — ColdFusion CVE-2026-48282
Peer Review

What defenders are saying.

Submit a review attribution: handle + country only
0 flags selected · stored anonymously
Validation Results

Crowdsourced verification outputs.

Results submitted by users who ran the verification payload against their environment.