CVE-2024-21182 Sumo Logic CSE · Sumo

Detect Oracle WebLogic Server CVE-2024-21182 Exploitation Attempt in Sumo Logic CSE

Detects exploitation attempts targeting CVE-2024-21182, an unspecified vulnerability in Oracle WebLogic Server. This CVE is listed in CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Oracle WebLogic Server is a high-value target for threat actors due to its prevalence in enterprise Java EE environments. Exploitation may enable remote code execution, unauthorized data access, or server compromise.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=weblogic OR _sourceCategory=access_logs OR _sourceCategory=iis
| parse regex "(?P<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}).*?(?P<method>GET|POST|PUT|DELETE|HEAD|OPTIONS)\s+(?P<uri_path>/[^\s]*)" nodrop
| where uri_path matches "/wls-wsat/*"
  OR uri_path matches "/_async/*"
  OR uri_path matches "/uddiexplorer/*"
  OR uri_path matches "/bea_wls_internal/*"
  OR uri_path matches "/console/*"
| parse regex "(?P<status_code>\d{3})" nodrop
| eval suspicious_category = if(uri_path matches "/wls-wsat/*" OR uri_path matches "/_async/*", "Deserialization Vector",
    if(uri_path matches "/uddiexplorer/*", "SSRF Vector",
    if(uri_path matches "/bea_wls_internal/*", "Internal Endpoint Access", "Console Access")))
| timeslice 1h
| stats
    count AS requests,
    countDistinct(uri_path) AS unique_paths,
    values(uri_path) AS paths,
    values(status_code) AS status_codes
    by src_ip, method, suspicious_category, _timeslice
| where requests > 0
| sort by requests desc
critical severity medium confidence

Sumo Logic query for CVE-2024-21182 Oracle WebLogic exploitation detection. Parses web access logs to identify requests targeting known vulnerable WebLogic endpoint patterns.

Data Sources

WebLogic access logsWeb server logsApplication gateway logs

Required Tables

weblogicaccess_logsiis

False Positives & Tuning

  • Legitimate WebLogic application using WSAT for distributed transaction coordination
  • Internal monitoring solutions probing WebLogic endpoints for health status
  • Security audits with authorized scanning tools targeting WebLogic
  • WebLogic domain configuration tools accessing management console endpoints

Other platforms for CVE-2024-21182


Testing Methodology

Validate this detection against 4 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 1WebLogic WSAT Endpoint Probe

    Expected signal: HTTP GET request logged in WebLogic access.log to /wls-wsat/CoordinatorPortType from attacker IP on port 7001. Network flow data showing connection to WebLogic port.

  2. Test 2WebLogic Async Servlet POST Probe

    Expected signal: HTTP POST to /_async/AsyncResponseService visible in WebLogic access logs and network proxy logs. Process audit logs may show WebLogic JVM processing the request.

  3. Test 3WebLogic UDDI Explorer SSRF Probe

    Expected signal: HTTP GET request to /uddiexplorer/ path logged in WebLogic access log. If SSRF is active, outbound connection attempt from WebLogic server to 127.0.0.1:22 visible in network monitoring.

  4. Test 4WebLogic Admin Console Access Attempt

    Expected signal: HTTP GET to /console/login/LoginForm.jsp in WebLogic access logs. Windows Security event logs may show network logon attempts if authentication is attempted. Network flow logs capture the connection.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections