CVE-2018-4063 Splunk · SPL

Detect Sierra Wireless AirLink ALEOS Unrestricted File Upload Exploitation in Splunk

Detects exploitation of CVE-2018-4063, an unrestricted file upload vulnerability (CWE-434) in Sierra Wireless AirLink ALEOS firmware. Attackers can upload files with dangerous types via the ACEmanager web interface, enabling remote code execution on cellular gateway devices. This vulnerability is listed in CISA KEV and has been exploited in the wild against critical infrastructure.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

SPL Detection Query

Splunk (SPL)
spl
index=network OR index=syslog OR index=proxy
| eval time_window=relative_time(now(), "-1h")
| where _time >= time_window
(
  [search sourcetype IN (cisco:asa, pan:traffic, paloalto:firewall)
   dest_port IN (9443, 443, 80, 8080)
   (url="*acemanager*" OR url="*/upload*" OR url="*/cgi-bin*" OR uri_path="*/firmware*")
   http_method=POST]
OR
  [search sourcetype=sierrawireless:aleos
   (message="*upload*" OR message="*file*" OR message="*POST*")]
OR
  [search sourcetype IN (access_combined, iis)
   method=POST
   (uri_path="*acemanager*" OR uri_path="*/upload*" OR uri_path="*/cgi-bin*")
   (uri_path="*.php" OR uri_path="*.asp" OR uri_path="*.aspx" OR uri_path="*.jsp" OR uri_path="*.cgi" OR uri_path="*.sh" OR uri_path="*.elf")]
)
| eval dangerous_ext=if(match(uri_path, "\.(php|asp|aspx|jsp|cgi|sh|py|pl|exe|elf)$"), "true", "false")
| eval cve="CVE-2018-4063"
| eval vendor="Sierra Wireless"
| eval product="AirLink ALEOS"
| stats count min(_time) as first_seen max(_time) as last_seen values(src_ip) as source_ips values(uri_path) as upload_paths values(dangerous_ext) as file_types by dest_ip dest_port
| where count > 0
| sort -last_seen
critical severity medium confidence

Detects POST requests targeting Sierra Wireless AirLink ALEOS ACEmanager upload endpoints with dangerous file extensions across network proxy, IIS, and device syslog sources.

Data Sources

Proxy LogsIIS Access LogsSierra Wireless SyslogNetwork Firewall Logs

Required Sourcetypes

access_combinediiscisco:asapan:trafficsierrawireless:aleos

False Positives & Tuning

  • Authorized firmware upgrades uploaded by network operations teams via ACEmanager web portal
  • Legitimate configuration backups or restore operations involving file uploads to ALEOS devices
  • Authorized penetration testing or vulnerability scanning activity targeting ALEOS management interfaces
  • Automated monitoring scripts performing scheduled health-check uploads to cellular gateway devices

Other platforms for CVE-2018-4063


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 1Simulate File Upload to ALEOS ACEmanager Endpoint

    Expected signal: HTTP POST to port 9443 with multipart/form-data body containing a .php file extension; network flow from attacker IP to ALEOS management IP

  2. Test 2Upload ELF Binary to ALEOS CGI Directory

    Expected signal: POST request to /cgi-bin/upload with Content-Disposition header containing filename ending in .elf; successful HTTP 200 response if device is unpatched

  3. Test 3Enumerate ALEOS ACEmanager Upload Endpoints

    Expected signal: Sequential GET requests from a single source IP to multiple ALEOS management paths within a short time window; HTTP response codes indicating which paths are accessible


Response Playbook

Triage

  1. Identify the source IP of the POST request and determine whether it belongs to a known authorized administrator IP range or NAT address used by the network operations team.
  2. Inspect the uploaded file extension and content type in proxy or web server logs — prioritize PHP, CGI, shell scripts, and ELF binaries as they indicate likely webshell or implant staging.
  3. Determine the specific ALEOS device targeted (by destination IP) and cross-reference against your asset inventory to assess criticality — prioritize devices in OT/ICS environments, remote sites, or those with access to internal networks.
  4. Check whether the upload resulted in a successful HTTP 200 response, which would indicate the file was accepted by the ALEOS ACEmanager interface.

Containment

  1. If exploitation is confirmed, immediately isolate the affected Sierra Wireless AirLink device by blocking its management port (default 9443/TCP) at the upstream firewall or network access control boundary.
  2. Revoke and rotate all credentials (ACEmanager admin password, VPN certificates, API keys) associated with the compromised ALEOS device to prevent lateral movement via established sessions.
  3. If the device provides cellular WAN connectivity to critical infrastructure, evaluate a controlled failover to a backup link before isolation to preserve availability during the incident response.

Evidence Collection

  1. Capture and preserve ACEmanager web server access logs from the ALEOS device, including the raw HTTP request containing the uploaded file name, content type header, and source IP.
  2. If physically accessible, obtain a firmware dump or system snapshot of the ALEOS device to identify any unauthorized files deposited in web-accessible directories or persistent storage.
  3. Collect NetFlow or PCAP data showing outbound connections from the ALEOS device in the 24 hours following the suspicious upload event to detect C2 callbacks or data exfiltration.

Escalation Criteria

  • !Escalate immediately to the incident response team if the uploaded file has been accessed (subsequent GET request to the same path), indicating a deployed webshell or reverse shell has been triggered.
  • !Escalate to OT/ICS security team and notify CISA if the compromised ALEOS device bridges IT and operational technology networks, given the ICS advisory context (ICSA-19-122-03) for this vulnerability.

Investigation Guide

Related Techniques

Forensic Artifacts

  • >ACEmanager HTTP access log entries showing POST requests to /upload, /cgi-bin, or /firmware paths with non-standard file extensions
  • >ALEOS device filesystem artifacts: unexpected files in web-accessible directories (/www, /cgi-bin) with executable permissions
  • >Outbound network connections from the ALEOS device IP to non-Sierra-Wireless external IPs on uncommon ports following the upload event
  • >Authentication logs showing repeated or anomalous ACEmanager login attempts immediately preceding the file upload

Tuning Guidance

Reduce false positives by building an allowlist of authorized ACEmanager administrator source IPs and scheduled maintenance windows. Restrict alerting to file extensions that are definitively executable on ALEOS firmware (ELF, CGI, SH) for higher-confidence alerts, and use the broader extension list (PHP, ASP, JSP) as a medium-confidence supplemental hunt. If Sierra Wireless devices are managed by a central NMS, exclude that NMS IP from triggering. Consider baselining normal firmware upgrade frequency per device and alerting on deviations.


Hunting Queries

Broad hunt across 7 days for any repeated upload or POST activity against Sierra Wireless ALEOS management interfaces, surfacing low-and-slow attack patterns that single-event rules may miss.

Hunting — KQL
kql
CommonSecurityLog
| where TimeGenerated > ago(7d)
| where DeviceVendor =~ "Sierra Wireless" or DeviceProduct =~ "ALEOS"
| where Activity has_any ('upload', 'POST', 'file', 'firmware')
| summarize count() by SourceIP, DestinationIP, Activity, bin(TimeGenerated, 1h)
| where count_ > 3
| order by TimeGenerated desc
Hunting — SPL
spl
index=network sourcetype IN (sierrawireless:aleos, access_combined)
(message="*upload*" OR method=POST) (uri_path="*acemanager*" OR uri_path="*/cgi-bin*")
| stats count by src_ip, dest_ip, uri_path, _time
| where count > 1
| sort -_time

Atomic Red Team Tests

Test 1 Simulate File Upload to ALEOS ACEmanager Endpoint
linux

Simulates an attacker uploading a PHP webshell to the ACEmanager web interface of a Sierra Wireless AirLink device. Run only in an isolated lab with a test ALEOS unit.

Command

bash
curl -k -X POST https://TARGET_ALEOS_IP:9443/upload -u admin:admin -F 'file=@/tmp/test_shell.php' -H 'Content-Type: multipart/form-data' -v

Cleanup

bash
curl -k -X DELETE https://TARGET_ALEOS_IP:9443/upload/test_shell.php -u admin:admin

Expected Telemetry

HTTP POST to port 9443 with multipart/form-data body containing a .php file extension; network flow from attacker IP to ALEOS management IP

Expected Detection

Alert triggers on POST request matching acemanager/upload path with .php extension in proxy logs or network telemetry

Test 2 Upload ELF Binary to ALEOS CGI Directory
linux

Simulates uploading a compiled ELF binary (reverse shell) to the ALEOS CGI directory, which would execute with device-level privileges if successful.

Command

bash
# Create a benign ELF placeholder for lab testing
echo 'ELF_PLACEHOLDER' > /tmp/test_implant.elf
curl -k -X POST https://TARGET_ALEOS_IP:9443/cgi-bin/upload -u admin:admin -F 'firmware=@/tmp/test_implant.elf' -v

Cleanup

bash
rm /tmp/test_implant.elf

Expected Telemetry

POST request to /cgi-bin/upload with Content-Disposition header containing filename ending in .elf; successful HTTP 200 response if device is unpatched

Expected Detection

Alert triggers on POST to /cgi-bin path with .elf file extension in network monitoring or web proxy logs

Test 3 Enumerate ALEOS ACEmanager Upload Endpoints
linux

Simulates attacker reconnaissance of Sierra Wireless ALEOS management interface to identify upload-capable endpoints before exploitation.

Command

bash
# Discovery phase — enumerate known ALEOS management paths
for path in /acemanager /upload /cgi-bin /firmware /config /update; do
  curl -k -o /dev/null -s -w "%{http_code} %{url_effective}\n" https://TARGET_ALEOS_IP:9443${path}
done

Cleanup

bash
# No cleanup needed — read-only enumeration

Expected Telemetry

Sequential GET requests from a single source IP to multiple ALEOS management paths within a short time window; HTTP response codes indicating which paths are accessible

Expected Detection

Behavioral detection on rapid sequential requests to management paths from a non-whitelisted IP; triggers on scanning pattern in network logs

Related Detections