CVE-2026-48282 CrowdStrike LogScale · LogScale

Detect CVE-2026-48282: Adobe ColdFusion Path Traversal Exploitation in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2026-48282, a path traversal vulnerability (CWE-22) in Adobe ColdFusion. Active exploitation confirmed by CISA KEV listing. Attackers may use directory traversal sequences in HTTP requests to read sensitive files outside the web root, including configuration files containing credentials, or to achieve remote code execution via file write primitives.

MITRE ATT&CK

Tactic
Initial Access Credential Access Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkReceiveAcceptIP4 OR #event_simpleName=NetworkReceiveAcceptIP6
| TargetPort in (80, 443, 8500, 8300, 8400)
| LocalAddressIP4 != "127.0.0.1"
| join
    {
        #event_simpleName=ProcessRollup2
        | ImageFileName matches "(?i)(coldfusion|jrun|cf|w3wp|httpd|nginx)(\.exe)?$"
        | CommandLine != null
    }
    field=[aid, ContextProcessId]
    kind=inner
| ImageFileName matches "(?i)(coldfusion|jrun|cf|w3wp|httpd|nginx)(\.exe)?$"
| (CommandLine matches "(?i)(\.\./|\.\.\\ |\.%2[eE])" OR ImageFileName matches "(?i)(cfusion|coldfusion)")
| groupBy([aid, RemoteAddressIP4, LocalPort, ImageFileName, CommandLine], function=([count(aid, as=connection_count), min(timestamp, as=first_seen), max(timestamp, as=last_seen)]))
| sort connection_count desc
high severity medium confidence

CrowdStrike Falcon CQL query correlating network receive events on common ColdFusion ports with ColdFusion process activity. Surfaces ColdFusion processes receiving inbound connections that may correspond to path traversal exploitation, enabling host-level context for web log findings.

Data Sources

CrowdStrike Falcon EDRCrowdStrike Falcon Network EventsFalcon Process Telemetry

Required Tables

NetworkReceiveAcceptIP4NetworkReceiveAcceptIP6ProcessRollup2

False Positives & Tuning

  • Legitimate administrative connections to ColdFusion Administrator interface on port 8500
  • ColdFusion scheduled tasks initiating outbound connections that appear as process-network correlations
  • Health check systems polling ColdFusion service ports generating high connection counts
  • Internal application servers making API calls to ColdFusion REST endpoints on non-standard ports

Other platforms for CVE-2026-48282


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1ColdFusion Path Traversal - Read neo-security.xml via URL traversal

    Expected signal: IIS/Apache access log entry: GET /CFIDE/administrator/../../lib/neo-security.xml with source IP of test host. HTTP response code 200 if vulnerable, 400/403 if patched or WAF-blocked.

  2. Test 2ColdFusion Path Traversal - URL-encoded traversal to password.properties

    Expected signal: Web server access log entry with URL-encoded traversal sequence. If server decodes before logging, DecodedURI will contain '../lib/password.properties'. If logged raw, csUriStem will contain '%2e%2e%2f%2e%2e%2f'.

  3. Test 3ColdFusion Path Traversal - Double-encoded traversal sequence (%252e%252e)

    Expected signal: WAF logs should show the double-encoded payload. ColdFusion access logs may show decoded single-percent-encoded form if WAF decodes once before forwarding. Both log sources should be checked.

  4. Test 4ColdFusion Path Traversal - Enumerate ColdFusion web root via automated scan simulation

    Expected signal: Multiple web server access log entries from the same source IP within a short window, each containing traversal sequences targeting different ColdFusion configuration file paths. HTTP response sizes will differ based on file accessibility.

Unlock Pro Content

Get the full detection package for CVE-2026-48282 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections