CVE-2026-54617

LaunchServer FileServerHandler Unauthenticated Path Traversal (CVE-2026-54617)

Initial Access Collection Last updated:

Detects exploitation attempts against pro.gravit.launcher:launchserver-api's FileServerHandler, which is vulnerable to an unauthenticated path traversal (CWE-22) allowing arbitrary file read (CWE-200) and disclosure of sensitive data such as credentials or keys (CWE-522) in versions <= 5.7.11. Attackers send crafted HTTP requests containing traversal sequences (../, encoded variants, absolute paths) to the LaunchServer file-serving endpoint to read files outside the intended web root, including server configs, private keys, and auth databases.

Vulnerability Intelligence

Public PoC

Affected Software

Vendor
maven
Product
pro.gravit.launcher:launchserver-api
Versions
<= 5.7.11

Weakness (CWE)

Timeline

Disclosed
July 2, 2026

CVSS

9.8
Critical (9.0–10)
CVSS vector not yet published
Read the write-up →

What is CVE-2026-54617 LaunchServer FileServerHandler Unauthenticated Path Traversal (CVE-2026-54617)?

LaunchServer FileServerHandler Unauthenticated Path Traversal (CVE-2026-54617) (CVE-2026-54617) maps to the Initial Access and Collection tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for LaunchServer FileServerHandler Unauthenticated Path Traversal (CVE-2026-54617), covering the data sources and telemetry it touches: IIS Logs, Azure Application Gateway WAF Logs. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Collection
Microsoft Sentinel / Defender
kusto
let TraversalPatterns = dynamic(["..%2f","..%5c","..\\","../","%2e%2e%2f","%2e%2e/","..%c0%af"]);
W3CIISLog
| where cs_uri_stem has "FileServerHandler" or cs_uri_query has "FileServerHandler"
| where cs_uri_stem has_any (TraversalPatterns) or cs_uri_query has_any (TraversalPatterns)
| extend SourceIP = c_ip
| project TimeGenerated, SourceIP, cs_method, cs_uri_stem, cs_uri_query, sc_status
| union (
  AzureDiagnostics
  | where ResourceType == "APPLICATIONGATEWAYS" or Category == "ApplicationGatewayFirewallLog"
  | where requestUri_s has "FileServerHandler" and (requestUri_s has_any (TraversalPatterns))
  | project TimeGenerated, SourceIP = clientIp_s, cs_method = "", cs_uri_stem = requestUri_s, cs_uri_query = "", sc_status = 0
)
| sort by TimeGenerated desc

Detects HTTP requests to LaunchServer's FileServerHandler endpoint containing path traversal sequences, indicating exploitation attempts of CVE-2026-54617.

critical severity medium confidence

Data Sources

IIS Logs Azure Application Gateway WAF Logs

Required Tables

W3CIISLog AzureDiagnostics

False Positives

  • Legitimate URL-encoded characters in filenames used by launcher assets
  • Vulnerability scanners performing authorized path traversal testing
  • Proxy/CDN rewriting of URIs that coincidentally contains dot-dot sequences

Sigma rule & cross-platform mapping

The detection logic for LaunchServer FileServerHandler Unauthenticated Path Traversal (CVE-2026-54617) (CVE-2026-54617) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  product: azure

Browse the community-maintained Sigma rules for this technique:


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 1Basic path traversal against FileServerHandler

    Expected signal: Web/proxy access log entry showing GET request to FileServerHandler with '../' sequences and response body containing /etc/passwd content or a 200 status.

  2. Test 2URL-encoded traversal against FileServerHandler

    Expected signal: Access log entry with percent-encoded traversal sequences in the request URI/query targeting FileServerHandler.

  3. Test 3Windows-style backslash traversal against FileServerHandler

    Expected signal: IIS/web log entry showing a request to FileServerHandler containing '..%5c' sequences and an unusual response size for win.ini content.


Response Playbook

Triage

  1. Identify the source IP and confirm whether the request targeted the FileServerHandler endpoint with traversal sequences in the URI or query string.
  2. Check the HTTP response status and size to determine if the traversal attempt was successful (200 OK with unexpected file content vs 403/404 blocked).
  3. Determine the LaunchServer version in use; versions <= 5.7.11 of pro.gravit.launcher:launchserver-api are vulnerable.
  4. Review requested file paths for sensitive targets such as configuration files, private keys, database files, or credential stores.

Containment

  1. Block the offending source IP(s) at the WAF/firewall and rate-limit or disable public access to the FileServerHandler endpoint until patched.
  2. Upgrade pro.gravit.launcher:launchserver-api to a fixed version beyond 5.7.11 or apply vendor-recommended mitigations restricting file server path resolution.

Evidence Collection

  1. Preserve raw web/proxy access logs covering the exploitation window, including full request URIs, headers, and response bodies where feasible.
  2. Collect a copy of any files that may have been disclosed (server configs, key material, auth databases) to assess the scope of exposure and rotate any exposed secrets.

Escalation Criteria

  • ! Escalate immediately if response evidence indicates successful retrieval of credentials, private keys, or session/auth database contents.
  • ! Escalate if multiple distinct source IPs are observed probing the same endpoint, suggesting mass scanning or automated exploitation campaigns.

Investigation Guide

Forensic Artifacts

  • > Web/proxy access logs showing FileServerHandler requests with traversal payloads and response status/size
  • > LaunchServer application logs showing file access errors or unexpected file paths resolved outside the intended directory

Tuning Guidance

Baseline normal FileServerHandler traffic from legitimate launcher clients (mod/asset downloads) to reduce false positives from benign encoded characters. Exclude known internal scanner/pentest IP ranges. Tighten matching to include only requests where traversal sequences resolve outside the expected asset directory depth, and correlate with response status 200 plus unusual response size to prioritize alerts on likely successful exploitation.


Hunting Queries

Hunts for source IPs making an abnormally high number of distinct requests to the FileServerHandler endpoint, indicative of automated traversal fuzzing.

Hunting — KQL
kql
W3CIISLog
| where cs_uri_stem has "FileServerHandler"
| summarize RequestCount=count(), DistinctURIs=dcount(cs_uri_query) by c_ip
| where DistinctURIs > 5
| sort by RequestCount desc
Hunting — SPL
spl
index=web_proxy uri="*FileServerHandler*"
| stats count dc(uri) as distinct_uris by src_ip
| where distinct_uris > 5
| sort -count

Atomic Red Team Tests

Test 1 Basic path traversal against FileServerHandler
linux

Sends a crafted GET request with ../ sequences to attempt reading /etc/passwd via the FileServerHandler endpoint in a lab LaunchServer instance.

Command

bash
curl -s 'http://TARGET_HOST:PORT/FileServerHandler?file=../../../../etc/passwd' -o /tmp/traversal_test_output.txt

Cleanup

bash
rm -f /tmp/traversal_test_output.txt

Expected Telemetry

Web/proxy access log entry showing GET request to FileServerHandler with '../' sequences and response body containing /etc/passwd content or a 200 status.

Expected Detection

KQL and SPL rules alert on the FileServerHandler request containing '../' traversal patterns.

Test 2 URL-encoded traversal against FileServerHandler
linux

Sends a URL-encoded traversal payload (%2e%2e%2f) to the FileServerHandler endpoint to bypass naive string filters and read a sensitive config file.

Command

bash
curl -s 'http://TARGET_HOST:PORT/FileServerHandler?file=%2e%2e%2f%2e%2e%2f%2e%2e%2fconfig%2fserver.cfg' -o /tmp/traversal_encoded_output.txt

Cleanup

bash
rm -f /tmp/traversal_encoded_output.txt

Expected Telemetry

Access log entry with percent-encoded traversal sequences in the request URI/query targeting FileServerHandler.

Expected Detection

Elastic EQL and QRadar AQL rules match on '%2e%2e%2f' pattern in the URL targeting FileServerHandler.

Test 3 Windows-style backslash traversal against FileServerHandler
windows

Sends a request using backslash and double-encoded traversal sequences targeting a Windows-hosted LaunchServer instance to read a file outside the web root.

Command

powershell
powershell -Command "Invoke-WebRequest -Uri 'http://TARGET_HOST:PORT/FileServerHandler?file=..%5c..%5c..%5cWindows%5cwin.ini' -OutFile 'C:\Temp\traversal_win_output.txt'"

Cleanup

powershell
powershell -Command "Remove-Item -Path 'C:\Temp\traversal_win_output.txt' -Force -ErrorAction SilentlyContinue"

Expected Telemetry

IIS/web log entry showing a request to FileServerHandler containing '..%5c' sequences and an unusual response size for win.ini content.

Expected Detection

KQL rule alerts on backslash-encoded traversal sequence ('..%5c') within FileServerHandler requests.

Related Detections