
Automatisierter PowerShell-Orchestrator zur Anwendung von Secure-Boot-Mitigationen gegen CVE-2023-24932 (BlackLotus). Verwaltet Registrierungsänderungen, Neustarts, Verifizierung und Remote-Bereitstellung auf Windows-Servern.
Automatisiert die vollständige Secure-Boot-Entschärfung für CVE-2023-24932 (BlackLotus). Übernimmt alle Registrierungsänderungen, Neustarts und die Verifizierung automatisch.
# 1. Download & Install (one-liner, run in PowerShell as Admin)
irm https://raw.githubusercontent.com/helleflo1312/Orchestrated-Powershell-for-CVE-2023-24932/main/INSTALL.ps1 | iex
# Or download manually first:
# Invoke-WebRequest -Uri "https://raw.githubusercontent.com/helleflo1312/Orchestrated-Powershell-for-CVE-2023-24932/main/INSTALL.ps1" -OutFile INSTALL.ps1
# .\INSTALL.ps1
# 2. Run the orchestrator (from Desktop\UEFIOrchestrator)
powershell.exe -ExecutionPolicy Bypass -File .\UEFI-Orchestrator.ps1 -RunUnattended -WaitBeforeReboot 60
Das Skript erstellt eine geplante Aufgabe, verwaltet etwa 8 Neustarts und endet bei Schritt 999.
Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\UEFIOrchestrator' -Name 'OrchestratorStep'
# 0-8 = running, 999 = done
# 1. Import the module
Import-Module .\UEFIOrchestrator.psm1
# 2. Connect
$cred = Get-Credential
$sessions = New-PSSession -ComputerName SRV-DC01, SRV-APP01 -Credential $cred
# 3. Install (no reboot yet)
Install-UEFIOrchestrator -Session $sessions -WaitBeforeReboot 60
# 4. Start (reboots begin!)
Start-UEFIOrchestrator -Session $sessions
# 5. Check status (reconnect after reboots)
$sessions = New-PSSession -ComputerName SRV-DC01, SRV-APP01 -Credential $cred
Get-UEFIOrchestratorStatus -Session $sessions | Format-Table -AutoSize
Verfolgen Sie den Patchvorgang in Echtzeit von einem anderen Computer aus:
.\Watch-UEFIOrchestrator.ps1 -ComputerName SRV-DC01, SRV-APP01 -Credential (Get-Credential)
Zeigt Online-/Offline-Status, aktuellen Schritt, Neustart-Zähler und Protokollausgabe. Drücken Sie Ctrl+C zum Beenden.
Unregister-ScheduledTask -TaskName 'SecureBootUpdateOrchestrator' -Confirm:$false
Remove-Item "C:\Windows\Temp\UEFIOrchestrator" -Recurse -Force
Remove-Item "HKLM:\SOFTWARE\UEFIOrchestrator" -Recurse -Force
MIT