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

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

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

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

工具目录

分类

查看所有分类
Loading categories
Orchestrated-Powershell-for-CVE-2023-24932 — 自动化PowerShell编排器,用于应用针对CVE-2023-24932(BlackLotus)的Secure Boot缓解措施。处理注册表更改、重启、验证以及跨Windows服务器的远程部署。 | Kitploit
工具/GitHubGitHub/helleflo1312/orchestrated-powershell-for-cve-2023-24932
漏洞分析脚本与自动化配置审计云安全错误配置事件响应
GitHubhelleflo1312/orchestrated-powershell-for-cve-2023-24932

Orchestrated-Powershell-for-CVE-2023-24932

自动化PowerShell编排器,用于应用针对CVE-2023-24932(BlackLotus)的Secure Boot缓解措施。处理注册表更改、重启、验证以及跨Windows服务器的远程部署。

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
查看仓库
125个月前尚未审核
分享

安全启动编排器 (CVE-2023-24932)

自动完成针对 CVE-2023-24932 (BlackLotus) 的完整安全启动缓解措施。自动处理所有注册表更改、重启和验证。

要求

  • Windows 10/11 或 Server 2016+
  • 管理员权限
  • 已启用安全启动
  • 已安装 2024 年 7 月及之后的累积更新
  • 已备份 BitLocker 恢复密钥 (如果 BitLocker 已启用)

快速入门(单台服务器)

root@kitploit:~
# 1. 下载并安装(单行命令,以管理员身份在 PowerShell 中运行)
irm https://raw.githubusercontent.com/helleflo1312/Orchestrated-Powershell-for-CVE-2023-24932/main/INSTALL.ps1 | iex

# 或者先手动下载:
# Invoke-WebRequest -Uri "https://raw.githubusercontent.com/helleflo1312/Orchestrated-Powershell-for-CVE-2023-24932/main/INSTALL.ps1" -OutFile INSTALL.ps1
# .\INSTALL.ps1

# 2. 运行编排器(从 Desktop\UEFIOrchestrator)
powershell.exe -ExecutionPolicy Bypass -File .\UEFI-Orchestrator.ps1 -RunUnattended -WaitBeforeReboot 60

该脚本会创建一个计划任务,管理约 8 次重启,并在第 999 步完成。

检查进度

root@kitploit:~
Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\UEFIOrchestrator' -Name 'OrchestratorStep'
# 0-8 = 运行中, 999 = 完成

远程部署(多台服务器)

root@kitploit:~
# 1. 导入模块
Import-Module .\UEFIOrchestrator.psm1

# 2. 连接
$cred = Get-Credential
$sessions = New-PSSession -ComputerName SRV-DC01, SRV-APP01 -Credential $cred

# 3. 安装(尚未重启)
Install-UEFIOrchestrator -Session $sessions -WaitBeforeReboot 60

# 4. 启动(开始重启!)
Start-UEFIOrchestrator -Session $sessions

# 5. 检查状态(重启后重新连接)
$sessions = New-PSSession -ComputerName SRV-DC01, SRV-APP01 -Credential $cred
Get-UEFIOrchestratorStatus -Session $sessions | Format-Table -AutoSize

实时监控

从另一台机器实时观看补丁过程:

root@kitploit:~
.\Watch-UEFIOrchestrator.ps1 -ComputerName SRV-DC01, SRV-APP01 -Credential (Get-Credential)

显示在线/离线状态、当前步骤、重启计数器和日志输出。按 Ctrl+C 停止。

警告

  • 第 5 步不可逆 — DBX 更新后,旧的启动管理器将被永久阻止
  • 先更新恢复介质 — 2024 年之前的介质补丁后将无法启动
  • BitLocker — 系统重启后可能进入恢复模式,请准备好密钥
  • 先测试 — 在生产环境中部署前务必在测试环境中运行

清理(第 999 步之后)

root@kitploit:~
Unregister-ScheduledTask -TaskName 'SecureBootUpdateOrchestrator' -Confirm:$false
Remove-Item "C:\Windows\Temp\UEFIOrchestrator" -Recurse -Force
Remove-Item "HKLM:\SOFTWARE\UEFIOrchestrator" -Recurse -Force

参考

  • Microsoft CVE-2023-24932 指南 (KB5025885)

许可证

MIT

下载工具