CVE-2026-48558 CrowdStrike LogScale · LogScale

Detect CVE-2026-48558 — SimpleHelp Authentication Bypass (CWE-347) in CrowdStrike LogScale

Detects exploitation of CVE-2026-48558, an authentication bypass vulnerability in SimpleHelp remote support software caused by improper verification of cryptographic signatures (CWE-347). This KEV-listed vulnerability allows unauthenticated attackers to bypass authentication controls. SimpleHelp is commonly used by MSPs and IT support teams, making it a high-value target for initial access and lateral movement.

MITRE ATT&CK

Tactic
Initial Access Persistence Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName IN ("NetworkConnectIP4", "NetworkConnectIP6", "NetworkReceiveAcceptIP4")
| RemotePort IN [80, 443, 5850, 5900]
| LocalAddressIP4 = *
| HttpMethod IN ["GET", "POST"]
| HttpUrl MATCH "/admin|/operator|/technician|/api/admin"
| HttpStatusCode IN ["200", "302"]
| (HttpUsername = "" OR HttpUsername = "-" OR HttpUsername = null)
| groupBy([RemoteAddressIP4, LocalAddressIP4, HttpUrl, HttpStatusCode, HttpMethod, HttpUsername])
| sort(count, order=desc)
| rename(RemoteAddressIP4, source_ip)
| rename(LocalAddressIP4, dest_ip)
| rename(HttpUrl, requested_path)
| rename(HttpStatusCode, response_code)
critical severity low confidence

CrowdStrike Falcon LogScale CQL query identifying unauthenticated network connections to SimpleHelp-associated ports with successful HTTP responses to privileged paths, indicating CVE-2026-48558 exploitation.

Data Sources

CrowdStrike Falcon Sensor - Network EventsCrowdStrike Falcon Network Containment

Required Tables

NetworkConnectIP4NetworkReceiveAcceptIP4

False Positives & Tuning

  • CrowdStrike sensor network telemetry that does not capture HTTP-layer authentication fields in all configurations
  • SimpleHelp clients connecting from CrowdStrike-protected endpoints using token-based authentication not visible at network layer
  • Internal IT staff accessing SimpleHelp operator panel from managed endpoints
  • Automated deployment or configuration pipelines accessing SimpleHelp APIs with service tokens

Other platforms for CVE-2026-48558


Testing Methodology

Validate this detection against 3 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 1CVE-2026-48558 — Unauthenticated Admin Endpoint Access Probe

    Expected signal: Web server access logs will show GET requests to /admin, /operator, /technician, and /api/admin from the test host IP. Network flow data will show connections from test host to SimpleHelp port. IDS/IPS may generate HTTP policy violation alerts.

  2. Test 2CVE-2026-48558 — Signature Verification Bypass via Malformed Token

    Expected signal: Application logs should show authentication attempts with malformed tokens. Web server logs will record requests with Authorization headers containing invalid credentials. Endpoint detection may flag the curl process making connections to internal services.

  3. Test 3CVE-2026-48558 — Post-Bypass Operator Account Enumeration

    Expected signal: Multiple sequential API requests to /api/admin/* paths from single source IP within short timeframe. Application logs show operator/technician/config endpoint access. UEBA tools may flag unusual API access patterns if baselining is in place.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections