log4j-shell-poc
A Proof-Of-Concept for the recently found CVE-2021-44228 vulnerability.
Recently there was a new vulnerability in log4j, a java logging library that is very widely used in the likes of elasticsearch, minecraft and numerous others.
In this repository there is an example vulnerable application and proof-of-concept (POC) exploit of it.
Proof-of-concept (POC)
As a PoC there is a python file that automates the process.
Requirements:
Usage:
Start a netcat listener to accept reverse shell connection.
Launch the exploit.
Note: For this to work, the extracted java archive has to be named:jdk1.8.0_20
, and be in the same directory.
This script will setup the HTTP server and the LDAP server for you, and it will also create the payload that you can use to paste into the vulnerable parameter. After this, if everything went well, you should get a shell on the lport.
Vulnerable application
There is a Dockerfile with the vulnerable webapp. You can use this by following the steps below:
Once it is running, you can access it on localhost:8080
Getting the Java version.
Oracle thankfully provides an archive for all previous java versions:
https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html.
Scroll down to 8u20
and download the appropriate files for your operating system and hardware.
Note: You do need to make an account to be able to download the package.
Once you have downloaded and extracted the archive, you can find java
and a few related binaries in jdk1.8.0_20/bin
.
Note: Make sure to extract the jdk folder into this repository with the same name in order for it to work.
Disclaimer
This repository is not intended to be a one-click exploit to CVE-2021-44228. The purpose of this project is to help people learn about this vulnerability, and perhaps test their own applications (however there are better applications for this purpose, ei: https://log4shell.tools/).