CVE-2025-32975 CrowdStrike LogScale · LogScale

Detect Quest KACE SMA Improper Authentication Exploitation Detected in CrowdStrike LogScale

Detects exploitation attempts against CVE-2025-32975, an improper authentication vulnerability (CWE-287) in Quest KACE Systems Management Appliance (SMA). This KEV-listed vulnerability allows attackers to bypass authentication controls, potentially enabling unauthorized access to the SMA management interface and downstream managed endpoints. Successful exploitation could lead to full appliance compromise and lateral movement across managed systems.

MITRE ATT&CK

Tactic
Initial Access Persistence Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4 OR #event_simpleName=HttpRequest
| TargetPort IN (80, 443, 8080, 8443)
| HttpRequestUrl IN CIREGEX ("(?i)/admin", "(?i)/userui", "(?i)/api/users", "(?i)/service/ambari")
| stats count(HttpRequestUrl) AS request_count, dc(HttpRequestUrl) AS distinct_endpoints, values(HttpRequestUrl) AS endpoints, min(timestamp) AS first_seen, max(timestamp) AS last_seen BY RemoteAddressIP4, TargetPort, HttpResponseCode
| where request_count > 10 OR (HttpResponseCode IN (200, 302) AND distinct_endpoints > 2)
| eval risk = if(HttpResponseCode IN (200, 302) AND distinct_endpoints > 3, "CRITICAL", if(request_count > 30, "HIGH", "MEDIUM"))
| fields first_seen, last_seen, RemoteAddressIP4, TargetPort, request_count, distinct_endpoints, endpoints, HttpResponseCode, risk
| sort -request_count
critical severity medium confidence

CrowdStrike Falcon Query Language detection for suspicious HTTP request patterns targeting Quest KACE SMA administrative endpoints, particularly successful responses (200/302) to privileged paths from single source IPs indicating potential CVE-2025-32975 exploitation.

Data Sources

CrowdStrike Falcon Network EventsFalcon HTTP Telemetry

Required Tables

NetworkConnectIP4HttpRequest

False Positives & Tuning

  • CrowdStrike-protected endpoints running KACE agents making legitimate management callbacks
  • Authorized security operations staff accessing KACE management portal from monitored endpoints
  • Scheduled KACE inventory and patch compliance checks triggering multiple API requests
  • Network segmentation testing or firewall rule validation targeting KACE management ports

Other platforms for CVE-2025-32975


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 1KACE SMA Unauthenticated Admin Endpoint Enumeration

    Expected signal: Web server access logs showing GET requests to /admin, /userui, /api/users, /service/ambari without authentication cookies; network flow records showing HTTP connections to KACE SMA on port 443

  2. Test 2KACE SMA Authentication Bypass Simulation via Missing Auth Header

    Expected signal: Web server logs showing requests to /admin/, /admin/index.php, /api/users with empty or missing authentication cookies; HTTP response codes indicating whether bypass was successful (200/302) or properly rejected (401/403)

  3. Test 3Post-Exploitation KACE Agent Script Deployment Simulation

    Expected signal: KACE SMA audit log entry showing script creation by the test account; network logs showing authentication followed by POST request to /api/script; SIEM alert on new script creation event from an account that recently logged in from an unusual IP

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections