Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
log4j-samples — 공개 테스트 데이터. log4j 스캐너/탐지기가 CVE-2021-45046 및 CVE-2021-44228 탐지 정확도를 높이는 데 도움이 되는 log4j 라이브러리 버전 샘플. TAG_TESTING, OWNER_KEN, DC_PUBLIC | Kitploit
도구/GitHubGitHub/mergebase/log4j-samples
Vulnerability ScannersVulnerability AnalysisSupply Chain SecurityLearning & EducationCurated Resources
GitHubmergebase/log4j-samples

log4j-samples

공개 테스트 데이터. log4j 스캐너/탐지기가 CVE-2021-45046 및 CVE-2021-44228 탐지 정확도를 높이는 데 도움이 되는 log4j 라이브러리 버전 샘플. TAG_TESTING, OWNER_KEN, DC_PUBLIC

저장소 보기
1414년 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

log4j-samples

log4j 라이브러리 버전 샘플로, log4j 스캐너/탐지기(당사의 log4j-detector 포함)가 CVE-2021-45046 및 CVE-2021-44228 탐지 정확도를 개선하는 데 도움을 주기 위한 것입니다.

샘플에는 shaded jar, uber jar, spring-boot 실행 가능 jar, jar 안의 jar, 압축 해제된(exploded) jar 등이 포함됩니다.

디렉토리 구성

  • ./false-hits/ - 여기에 있는 어떤 샘플도 CVE-2021-45046 또는 CVE-2021-44228에 취약하지 않습니다.
  • ./old-hits/ - 여기의 모든 샘플에는 취약점이 존재하지 않을 만큼 오래된 Log4J(1.x 및 2.x) 버전이 포함되어 있습니다.
  • ./true-hits/ - 여기의 모든 샘플은 CVE-2021-45046 및 CVE-2021-44228에 취약합니다.

샘플에 *.zip 파일이 포함된 이유는 무엇인가요?

Java는 *.zip을 *.jar와 정확히 동일하게 취급하며, 지금까지 그래 왔습니다. 공격자가 스캐너를 무력화시키기 위해 "webapp/WEB-INF/lib/log4j-core-2.9.jar"를 "log4j-core-2.9.zip"으로 이름만 바꾸는 것을 원하지 않을 것입니다! 믿기지 않나요? 직접 해보세요:

root@kitploit:~
$ wget https://github.com/mergebase/log4j-samples/raw/master/false-hits/log4j-detector-2021.12.16.zip
$ java -jar log4j-detector-2021.12.16.zip

Usage: java -jar log4j-detector-2021.12.16.jar [--verbose] [paths to scan...]

Exit codes:  0 = No vulnerable Log4J versions found.
             1 = At least one legacy Log4J 1.x version found.
             2 = At least one vulnerable Log4J 2.x version found.

About - MergeBase log4j detector (version 2021.12.16)
Docs  - https://github.com/mergebase/log4j-detector 
(C) Copyright 2021 Mergebase Software Inc. Licensed to you via GPLv3.

(마찬가지로, 이렇게도 동작합니다: java -cp log4j-detector-2021.12.16.zip com.mergebase.log4j.Log4JDetector).

log4j-detector를 이용한 최신 스캔

root@kitploit:~
-- github.com/mergebase/log4j-detector v2021.12.16 (by mergebase.com) analyzing paths (could take a while).
-- Note: specify the '--verbose' flag to have every file examined printed to STDERR.
/opt/mergebase/log4j-samples/false-hits/exploded/2.12.2/org/apache/logging/log4j contains Log4J-2.x   >= 2.12.2 _SAFE_ :-)
/opt/mergebase/log4j-samples/false-hits/log4j-core-2.12.2.jar contains Log4J-2.x   >= 2.12.2 _SAFE_ :-)
/opt/mergebase/log4j-samples/false-hits/log4j-core-2.16.0.jar contains Log4J-2.x   >= 2.16.0 _SAFE_ :-)
/opt/mergebase/log4j-samples/old-hits/log4j-1.1.3.jar contains Log4J-1.x   <= 1.2.17 _OLD_ :-|
/opt/mergebase/log4j-samples/old-hits/log4j-1.2.17.jar contains Log4J-1.x   <= 1.2.17 _OLD_ :-|
/opt/mergebase/log4j-samples/old-hits/log4j-core-2.0-beta2.jar contains Log4J-2.x   <= 2.0-beta8 _POTENTIALLY_SAFE_ :-| (or did you already remove JndiLookup.class?) 
/opt/mergebase/log4j-samples/true-hits/exploded/2.12.1/org/apache/logging/log4j contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/log4j-core-2.0-beta9.jar contains Log4J-2.x   >= 2.0-beta9 (< 2.10.0) _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/log4j-core-2.10.0.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/log4j-core-2.10.0.zip contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/log4j-core-2.15.0.jar contains Log4J-2.x   >= 2.15.0 _OKAY_ :-|
/opt/mergebase/log4j-samples/true-hits/log4j-core-2.9.1.jar contains Log4J-2.x   >= 2.0-beta9 (< 2.10.0) _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/shaded/clt-1.0-SNAPSHOT.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/springboot-executable/spiff-0.0.1-SNAPSHOT.ear!/WEB-INF/lib/log4j-core-2.10.0.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/springboot-executable/spiff-0.0.1-SNAPSHOT.jar!/WEB-INF/lib/log4j-core-2.10.0.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/springboot-executable/spiff-0.0.1-SNAPSHOT.war!/WEB-INF/lib/log4j-core-2.10.0.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/springboot-executable/spiff-0.0.1-SNAPSHOT.zip!/WEB-INF/lib/log4j-core-2.10.0.jar contains Log4J-2.x   >= 2.10.0 _VULNERABLE_ :-(
/opt/mergebase/log4j-samples/true-hits/uber/infinispan-embedded-query-8.2.12.Final.jar contains Log4J-2.x   >= 2.0-beta9 (< 2.10.0) _VULNERABLE_ :-(
도구 다운로드