CONTACT US
forrester wave report 2023

Close your ransomware case with Open NDR

SEE HOW

ad-nav-crowdstrike

Corelight now powers CrowdStrike solutions and services

READ MORE

ad-images-nav_0013_IDS

Alerts, meet evidence.

LEARN MORE ABOUT OUR IDS SOLUTION

ad-images-nav_white-paper

5 Ways Corelight Data Helps Investigators Win

READ WHITE PAPER

glossary-icon

10 Considerations for Implementing an XDR Strategy

READ NOW

ad-images-nav_0006_Blog

Don't trust. Verify with evidence

READ BLOG

ad-nav-NDR-for-dummies

NDR for Dummies

GET THE WHITE PAPER

video

The Power of Open-Source Tools for Network Detection and Response

WATCH THE WEBCAST

ad-nav-ESG

The Evolving Role of NDR

DOWNLOAD THE REPORT

ad-images-nav_0006_Blog

Detecting 5 Current APTs without heavy lifting

READ BLOG

g2-medal-best-support-ndr-winter-2024

Network Detection and Response

SUPPORT OVERVIEW

 

Detecting Log4j exploits via Zeek when Java downloads Java

We have published an initial blog on the Log4j exploit and a followup blog with a second detection method for detecting the first stage of exploits occurring over LDAP.  Today, we will discuss a third detection method, this one focused on the second-stage download that happens after the first stage completes. In this case, the JVM will download additional Java code payloads over HTTP.  Note that the technique we outline here works even if a vector other than LDAP is used for the first stage, as has been recently reported.

If you download this PCAP and open it in Wireshark, you will see the following headers in the exploit’s HTTP GET:

java-get

The User-Agent is “Java/1.8.0_51”, signifying Java initiated this download.  It is downloading a file called “Exploit.class”, which is a Java class file.  The server reports this file as having a MIME type of “application/java-vm”:

java-returned

We can code a detection for this scenario using Zeek.  We added this detection to our CVE-2020-44228 Zeek package in a file named “CVE_2021_44228_java_GET.zeek”.  At the top of the file, we set up our new notices for this detection type (lines 3-5).  In lines 7-9, we add a variable to the connection record to save some associated state.  You will see in lines 12 and 14 regular expressions to detect Java in the User-Agent and MIME fields.

Screencap of code snippet of CVE_2021_44228_java_GET.zeek

Next, we handle the event “http_header”.  In that event handler, we use our patterns to search for the Java MIME type in the HTTP headers.  If we find a match, we note it in the connection record variable we created previously. We skip this processing, however, if (1) the request method was something other than “GET”, (2) the headers are from the client rather than server, or (3) we’ve already seen what we’re looking for.

CVE_2021_44228_java_GET.zeek

Lastly, we process the “http_end_entity” event.  HTTP entities can be nested, so first we check to see that we’re processing the outermost (non-nested) entity. We then see whether either we’d already seen an HTTP header indicating that this entity is Java, or that Zeek assigned one or more MIME types to the entity (which it does by “sniffing” the body of the entity) and one of those matches the pattern we’re looking for.  If either of these hold, and if the user agent indicates the request came from Java, then we mark the connection as reflecting a successful log4j RCE, and generate a Notice.

CVE_2021_44228_java_GET.zeek

When this detection occurs, a Notice of type “LOG4J_JAVA_CLASS_DOWNLOAD” will be written to your notice log.

With this detection, we have now covered all stages of the most common LDAP based Log4j exploits that are currently found on the Internet. 

  1. We have identified the inbound attack attempts and harvested the sites that they will reach out to if successful.
  2. We have identified LDAP connections used in the first stage of an attack to induce downloading of Java code.
  3. We have found instances where a now-compromised JVM proceeds to the second stage and downloads the final payload.
An important benefit of this final detection is that it works even in the presence of a first stage vector other than LDAP.

By Corelight Labs Team

Recent Posts