CVE-2024-7399 Sumo Logic CSE · Sumo

Detect Samsung MagicINFO 9 Server Path Traversal and Arbitrary File Upload in Sumo Logic CSE

Detects exploitation of CVE-2024-7399, a path traversal and unrestricted file upload vulnerability in Samsung MagicINFO 9 Server. Successful exploitation allows unauthenticated or low-privileged attackers to upload arbitrary files outside the intended directory, potentially leading to remote code execution. This CVE is actively exploited in the wild (CISA KEV).

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=web/access OR _sourceCategory=network/proxy
| parse regex "(?<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}).*?(?<method>GET|POST|PUT|DELETE|PATCH)\s+(?<uri>\S+).*?(?<status>\d{3})"
| where (
    uri matches "*../*" or
    uri matches "*%2e%2e%2f*" or
    uri matches "*%2e%2e/*" or
    uri matches "*..%2f*" or
    uri matches "*%2e%2e%5c*"
  )
| where (
    uri matches "*magicinfo*" or
    uri matches "*.jsp" or
    uri matches "*.aspx" or
    uri matches "*.php"
  )
| timeslice 5m
| count as attempts by src_ip, uri, method, status, _timeslice
| where attempts > 1
| sort by attempts desc
| fields _timeslice, src_ip, uri, method, status, attempts
critical severity medium confidence

Sumo Logic query detecting path traversal and file upload exploitation patterns in web access logs targeting Samsung MagicINFO 9 Server.

Data Sources

Sumo Logic HTTP source for web logsInstalled collector with web access log source

Required Tables

web/accessnetwork/proxy

False Positives & Tuning

  • Legitimate MagicINFO administrative uploads containing dot-separated path components
  • Sumo Logic collectors ingesting logs from authorized security scanners
  • MagicINFO integrations with third-party CMS platforms using URL-encoded characters

Other platforms for CVE-2024-7399


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-2024-7399 Path Traversal Directory Enumeration

    Expected signal: Web access logs show GET requests with '../', '%2e%2e%2f', or '..%2f' in the URI path targeting MagicINFO endpoints. Network monitoring captures HTTP requests to port 8080 with traversal sequences.

  2. Test 2CVE-2024-7399 Web Shell Upload via Path Traversal

    Expected signal: IIS or servlet container logs show POST request to upload endpoint with path traversal in query parameter. Filesystem monitoring detects new .jsp file created in webroot. Process monitoring may show java.exe or tomcat process writing to unexpected directory.

  3. Test 3CVE-2024-7399 Web Shell Execution Verification

    Expected signal: Access logs show GET request to the uploaded shell path returning HTTP 200. EDR/process monitoring captures cmd.exe, sh, or powershell.exe spawned as a child of the Java/Tomcat process. Network connections from MagicINFO server process to external IPs if a reverse shell payload is used.

Last updated: 2026-06-19 Research depth: standard
References (2)

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections