Detect Oracle WebLogic Server CVE-2024-21182 Exploitation Attempt in CrowdStrike LogScale
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
LogScale Detection Query
#event_simpleName IN ("NetworkConnectIP4", "NetworkConnectIP6", "HttpRequest")
| $RemotePort IN (7001, 7002, 4848, 9002)
OR $TargetURL IN ["*wls-wsat*", "*_async*", "*uddiexplorer*", "*bea_wls_internal*"]
| eval SuspiciousPath = case(
$TargetURL = "*wls-wsat*", "Deserialization - WSAT",
$TargetURL = "*_async*", "Deserialization - Async",
$TargetURL = "*uddiexplorer*", "SSRF - UDDI",
$TargetURL = "*bea_wls_internal*", "Internal Endpoint",
"WebLogic Port Access"
)
| groupBy([RemoteAddressIP4, LocalAddressIP4, RemotePort, SuspiciousPath, TargetURL, HttpMethod], function=[count(aid, as=RequestCount), min(timestamp, as=FirstSeen), max(timestamp, as=LastSeen)])
| sort RequestCount desc
| $RequestCount > 0 CrowdStrike Falcon LogScale (CQL) detection for CVE-2024-21182 Oracle WebLogic exploitation. Monitors endpoint network telemetry for connections to WebLogic ports and URL patterns associated with known exploit vectors.
Data Sources
Required Tables
False Positives & Tuning
- WebLogic server-to-server communication on standard ports within application clusters
- Authorized penetration testing activity against WebLogic systems
- Application deployment tools connecting to WebLogic admin ports
- Load balancer health check probes targeting WebLogic listener ports
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.
- 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.
- 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.
- 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.
- 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.