資料介紹
軟件簡介
Log4-detector 是一個(gè)可以在任何應(yīng)用程序中的文件系統(tǒng)上檢測易受攻擊的 Log4J 版本(CVE-2021-44228、CVE-2021-45046 等)的掃描程序。
甚至能夠找到隱藏在幾層深處的 Log4J 實(shí)例。適用于 Linux、Windows 和 Mac,也適用于 Java 運(yùn)行的其他任何地方。
用法
java -jar log4j-detector-2021.12.22.jar
Usage: java -jar log4j-detector-2021.12.22.jar [--verbose] [--json] [--stdin] [--exclude=X] [paths to scan...]
--json - Output STDOUT results in JSON. (Errors/warning still emitted to STDERR)
--stdin - Read STDIN for paths to explore (one path per line)
--exclude=X - Where X is a JSON list containing full paths to exclude. Must be valid JSON.
Example:
Exit codes: 0 = No vulnerable Log4J versions found.
1 = At least one legacy Log4J 1.x version found.
2 = At least one vulnerable Log4J version found.
About - MergeBase log4j detector (version 2021.12.22)
Docs - https://github.com/mergebase/log4j-detector
(C) Copyright 2021 Mergebase Software Inc. Licensed to you via GPLv3.
示例
java -jar log4j-detector-2021.12.22.jar [path-to-scan] > hits.txt
更多示例
java -jar log4j-detector-2021.12.22.jar ./samples
-- github.com/mergebase/log4j-detector v2021.12.22 (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-detector/samples/clt-1.0-SNAPSHOT.jar contains Log4J-2.x >= 2.10.0 _VULNERABLE_
/opt/mergebase/log4j-detector/samples/infinispan-embedded-query-8.2.12.Final.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-1.1.3.jar contains Log4J-1.x <= 1.2.17 _OLD_
/opt/mergebase/log4j-detector/samples/log4j-1.2.13.jar contains Log4J-1.x <= 1.2.17 _OLD_
/opt/mergebase/log4j-detector/samples/log4j-1.2.17.jar contains Log4J-1.x <= 1.2.17 _OLD_
/opt/mergebase/log4j-detector/samples/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-detector/samples/log4j-core-2.0-beta9.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.0.2.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.0.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.10.0.jar contains Log4J-2.x >= 2.10.0 _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.12.1.jar contains Log4J-2.x >= 2.10.0 _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.12.2.jar contains Log4J-2.x == 2.12.2 _OKAY_
/opt/mergebase/log4j-detector/samples/log4j-core-2.12.3.jar contains Log4J-2.x >= 2.12.3 _SAFE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.14.1.jar contains Log4J-2.x >= 2.10.0 _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.15.0.jar contains Log4J-2.x == 2.15.0 _OKAY_
/opt/mergebase/log4j-detector/samples/log4j-core-2.16.0.jar contains Log4J-2.x == 2.16.0 _OKAY_
/opt/mergebase/log4j-detector/samples/log4j-core-2.17.0.jar contains Log4J-2.x >= 2.17.0 _SAFE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.3.1.jar contains Log4J-2.x == 2.3.1 _SAFE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.4.1.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
/opt/mergebase/log4j-detector/samples/log4j-core-2.9.1.jar contains Log4J-2.x >= 2.0-beta9 (< 2.10.0) _VULNERABLE_
掃描結(jié)果
Log4-detector 會(huì)將 log4j-core 版本 2.3.1、2.12.3 和 2.17.0 報(bào)告為 _SAFE_ ,將2.12.2、2.15.0和 2.16.0 報(bào)告為_OKAY_,將所有其他版本 報(bào)告為 _VULNERABLE_,將舊的log4j-1.x版本報(bào)告為 _OLD_。
可以正確檢測可執(zhí)行 spring-boot jars/wars 中的 log4j、混合到 uber jars 中的依賴項(xiàng)、shaded jars,甚至是未壓縮的jar 文件(又名*.class)。
- _VULNERABLE_?-> 需要升級(jí)或刪除此文件。
- _OKAY_?-> 僅針對(duì) Log4J 版本 2.12.2、2.15.0 和 2.16.0 報(bào)告此問題,建議升級(jí)到 2.17.0。
- _SAFE_?-> 目前僅針對(duì) Log4J 版本 2.3.1、2.12.3 和 2.17.0(及更高版本)報(bào)告此問題。
- _OLD_?-> 可以免受 CVE-2021-44228 的影響,但應(yīng)該計(jì)劃升級(jí),因?yàn)?Log4J 1.2.x 已經(jīng)停產(chǎn) 7 年并且有幾個(gè)已知的漏洞。
- _POTENTIALLY_SAFE_?-> “JndiLookup.class”文件不存在,要么是因?yàn)槟?Log4J 版本很舊(2.0-beta9 之前),要么因?yàn)橛腥艘呀?jīng)刪除了這個(gè)文件。如果是這種情況,請(qǐng)確保是團(tuán)隊(duì)或公司的成員刪除“JndiLookup.class”,因?yàn)楣粽邥?huì)自己刪除此文件,以防止其他競爭攻擊者獲得對(duì)受感染系統(tǒng)的訪問權(quán)限。
- PTP Clock Manager for Linux Message Log 手冊(cè)
- C#上位機(jī)開發(fā)(十三)之使用Log4net添加日志記錄功能
- PTP Clock Manager for Linux Message Log 手冊(cè)
- SafeLog4j解決log4shell漏洞
- log4j-finder Log4Shell漏洞掃描工具
- fix_log4j2 log4j2漏洞緩解工具
- gos-log日志檢索系統(tǒng)
- log-monitor QPS接口耗時(shí)統(tǒng)計(jì)
- 嵌入式系統(tǒng)log模塊設(shè)計(jì)
- Android中Log相關(guān)介紹 4次下載
- LOG算子在FPGA中的實(shí)現(xiàn) 50次下載
- LOG112,LOG2112,pdf(Precision Logarithmic and Log Ratio Ampli
- LOG102,pdf(Precision Logarithm
- LOG101,pdf(Precision Logarithm
- LoG轉(zhuǎn)換器--Log Converters
- 用U盤記錄系統(tǒng)LOG信息的簡單步驟和方法 310次閱讀
- 瑞薩RZ/G2L核心板Linux Log目錄文件詳解 358次閱讀
- 保護(hù)Log4j日志中的敏感數(shù)據(jù),兩步搞定! 546次閱讀
- 基于Rust的Log日志庫介紹 3121次閱讀
- LOG-LIO: 一種高效局部幾何信息估計(jì)的激光雷達(dá)慣性里程計(jì)方法 735次閱讀
- 基于python的漏洞掃描器 966次閱讀
- 高通Camera Log Debug 907次閱讀
- 一款網(wǎng)絡(luò)攝像頭漏洞掃描工具 3690次閱讀
- 常見的漏洞掃描工具 1511次閱讀
- ExpDemo-JavaFX項(xiàng)目分析 433次閱讀
- 批量漏洞挖掘工具安裝教程 856次閱讀
- TPS61376升壓轉(zhuǎn)換器助力更高集成度條碼掃描器方案 682次閱讀
- log4j日志框架分析 975次閱讀
- 不用串口,如何打印STM32單片機(jī)log 2485次閱讀
- 條碼掃描器四種技術(shù)工作原理解析 1.8w次閱讀
下載排行
本周
- 1Keysight B1500A 半導(dǎo)體器件分析儀用戶手冊(cè)、說明書 (中文)
- 19.00 MB | 4次下載 | 免費(fèi)
- 2使用TL431設(shè)計(jì)電源
- 0.67 MB | 2次下載 | 免費(fèi)
- 3BT134雙向可控硅手冊(cè)
- 1.74 MB | 2次下載 | 1 積分
- 4一種新型高效率的服務(wù)器電源系統(tǒng)
- 0.85 MB | 1次下載 | 1 積分
- 5LabVIEW環(huán)形控件
- 0.01 MB | 1次下載 | 1 積分
- 6PR735,使用UCC28060的600W交錯(cuò)式PFC轉(zhuǎn)換器
- 540.03KB | 1次下載 | 免費(fèi)
- 751單片機(jī)核心板原理圖
- 0.12 MB | 1次下載 | 5 積分
- 8BP2879DB支持調(diào)光調(diào)滅的非隔離低 PF LED 驅(qū)動(dòng)器
- 1.44 MB | 1次下載 | 免費(fèi)
本月
- 1開關(guān)電源設(shè)計(jì)原理手冊(cè)
- 1.83 MB | 54次下載 | 免費(fèi)
- 2FS5080E 5V升壓充電兩串鋰電池充電管理IC中文手冊(cè)
- 8.45 MB | 23次下載 | 免費(fèi)
- 3DMT0660數(shù)字萬用表產(chǎn)品說明書
- 0.70 MB | 13次下載 | 免費(fèi)
- 4UC3842/3/4/5電源管理芯片中文手冊(cè)
- 1.75 MB | 12次下載 | 免費(fèi)
- 5ST7789V2單芯片控制器/驅(qū)動(dòng)器英文手冊(cè)
- 3.07 MB | 11次下載 | 1 積分
- 6TPS54202H降壓轉(zhuǎn)換器評(píng)估模塊用戶指南
- 1.02MB | 8次下載 | 免費(fèi)
- 7STM32F101x8/STM32F101xB手冊(cè)
- 1.69 MB | 8次下載 | 1 積分
- 8基于MSP430FR6043的超聲波氣體流量計(jì)快速入門指南
- 2.26MB | 7次下載 | 免費(fèi)
總榜
- 1matlab軟件下載入口
- 未知 | 935119次下載 | 10 積分
- 2開源硬件-PMP21529.1-4 開關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計(jì)
- 1.48MB | 420061次下載 | 10 積分
- 3Altium DXP2002下載入口
- 未知 | 233084次下載 | 10 積分
- 4電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191367次下載 | 10 積分
- 5十天學(xué)會(huì)AVR單片機(jī)與C語言視頻教程 下載
- 158M | 183335次下載 | 10 積分
- 6labview8.5下載
- 未知 | 81581次下載 | 10 積分
- 7Keil工具M(jìn)DK-Arm免費(fèi)下載
- 0.02 MB | 73807次下載 | 10 積分
- 8LabVIEW 8.6下載
- 未知 | 65987次下載 | 10 積分
評(píng)論
查看更多