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

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

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

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

工具目录

分类

查看所有分类
Loading categories
BlackLotus-Detection — Public repo for anything CVE-2022-21894 | Kitploit
工具/GitHubGitHub/qjawls2003/blacklotus-detection
Vulnerability AnalysisForensicsMalware AnalysisThreat IntelligenceLearning & EducationIncident Response
GitHubqjawls2003/blacklotus-detection

BlackLotus-Detection

Public repo for anything CVE-2022-21894

查看仓库
3年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2022-21894

关于 CVE-2022-21894 的公开仓库

主页面

https://www.microsoft.com/en-us/security/blog/2023/04/11/guidance-for-investigating-attacks-using-cve-2022-21894-the-blacklotus-campaign/

Windows Defender 现在能够移除此威胁“可能易受攻击的 EFI 引导加载程序”

基础检测

挂载指定驱动器的 EFI 系统分区。

$ mountvol /s

搜索存在异常时间戳的 .efi 文件

$ dir E:\EFI\Microsoft\Boot*efi

获取所有引导加载程序文件的文件哈希,查看是否有任何文件产生 ERROR_SHARING_VIOLATION

$ Get-FileHash -Algorithm MD5 -Path (Get-ChildItem "E:\EFI\Microsoft\Boot*.*" -Recurse)

检测暂存目录是否存在

检查自定义目录(如 ESP:\system32\)中是否存在已被删除文件的历史记录 BalckLotus 安装后该目录不会被删除。

检查 HVCI 完整性(如果存在)

$ reg query HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity

检查特定的 Windows Defender 事件(是否存在篡改 Defender 的行为)

$ Get-EventLog -LogName System -InstanceId 3006

$ Get-EventLog -LogName System -InstanceId 7023

检查通过 winlogon.exe 端口 80 与 C2 服务器的连接

$ netstat -ano | findstr ":80"

$ tasklist /V | findstr "winlogon.exe"

使用 sysmon 并向 sysmonconfig.xml 添加新配置

winlogon.exe

Sysmon

https://github.com/olafhartong/sysmon-modular

漏洞

方法

https://github.com/Wack0/CVE-2022-21894

下载工具