CVE-2026-48908 CrowdStrike LogScale · LogScale

Detect CVE-2026-48908 - JoomShaper SP Page Builder Unrestricted File Upload in CrowdStrike LogScale

Detects exploitation of CVE-2026-48908, an unrestricted file upload vulnerability (CWE-434) in JoomShaper SP Page Builder for Joomla. Attackers can upload files with dangerous types (e.g., PHP webshells) through the page builder interface, leading to remote code execution. This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName IN ("HttpRequest", "NetworkConnectIP4", "WriteFile", "CreateFile")
| filter HttpMethod = "POST"
| filter match(TargetUrl, "(?i)/components/com_sppagebuilder")
| filter HttpStatusCode IN ("200", "201", "202")
| eval file_path = coalesce(FilePath, TargetFilename, "")
| eval dangerous_upload =
    if(match(TargetUrl, "(?i)\\.(php\\d?|phtml|phar|asp|aspx|jsp|cgi|pl|py|sh|bash)"), 1,
    if(match(file_path, "(?i)\\.(php\\d?|phtml|phar|asp|aspx|jsp)"), 1, 0))
| filter dangerous_upload = 1
| eval cve = "CVE-2026-48908"
| eval risk_score = 90
| eval mitre = "T1190,T1505.003"
| groupBy([SourceIP, TargetUrl, HttpStatusCode, file_path, cve, risk_score], function=[count(aid, as=event_count), min(timestamp, as=first_seen), max(timestamp, as=last_seen)])
| sort -event_count
critical severity high confidence

CrowdStrike Falcon LogScale query correlating HTTP POST events to SP Page Builder endpoints with dangerous file extensions, detecting CVE-2026-48908 unrestricted upload exploitation.

Data Sources

CrowdStrike Falcon Network TelemetryFalcon Sensor HTTP EventsProcess/File Events

Required Tables

HttpRequestWriteFileCreateFileNetworkConnectIP4

False Positives & Tuning

  • Falcon sensor telemetry gaps causing legitimate POST requests to appear suspicious without full context
  • Joomla CLI maintenance tasks writing PHP files to component directories outside web context
  • Web application deployments where PHP files are copied to component paths by DevOps pipelines

Other platforms for CVE-2026-48908


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 1Unauthenticated PHP Webshell Upload via SP Page Builder

    Expected signal: Web server access log entry: POST /index.php?option=com_sppagebuilder&task=file.upload HTTP/1.1 200; multipart/form-data body containing filename=shell.php with PHP content

  2. Test 2Double Extension Bypass Upload Attempt

    Expected signal: POST request to SP Page Builder upload endpoint with filename containing double extension (.php.jpg); web server logs showing 200 response and file write event to upload directory

  3. Test 3Webshell Execution Verification Post-Upload

    Expected signal: Web server access log entries: GET /images/shell.php HTTP/1.1 200; process execution events showing php-fpm or apache spawning child processes (id, hostname, uname); potential outbound network connections from web server process

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections