Installatie bevestigen van een herstelde ControlVault3-versie vermeld in DSA-2025-228
Samenvatting: De installatie bevestigen van een herstelde ControlVault3-versie die wordt vermeld in DSA-2025-228.
Dit artikel is van toepassing op
Dit artikel is niet van toepassing op
Dit artikel is niet gebonden aan een specifiek product.
Niet alle productversies worden in dit artikel vermeld.
Instructies
Deze instructies zijn bedoeld om rechtstreeks op de te testen computer uit te voeren met behulp van het onderstaande PowerShell-script. Dit script:
- Maak met behulp van het script onder aan dit artikel een bestand met de naam:
Verify_ControlVault_dsa-2025-228.ps1- Dit script:
- Controleert of de Dell Control Vault-driver op de computer is geïnstalleerd en retourneert de resultaten naar
$ControlVaultDriver - Als de Control Vault-driver wordt gevonden, trekt u de laatste regel van
CVFirmwareUpgradeLog.txten vergelijk de firmwarerevisie (FW) met de vereiste FW-revisie van DSA voor CV3 en CV3+. Indien nodig voldoet de firmware aan de firmware, uitvoer naar de console
- Controleert of de Dell Control Vault-driver op de computer is geïnstalleerd en retourneert de resultaten naar
- Dit script:
- PowerShell openen
- Druk op de Windows-toets + R, typ
PowerShellen druk op Enter
of, - Zoek PowerShell in het startmenu en selecteer het
- Druk op de Windows-toets + R, typ
- PowerShell kan scripts blokkeren, afhankelijk van het beleid van uw computer. U moet deze beperking tijdelijk wijzigen door dit script te kopiëren en te plakken in PowerShell en op Enter te drukken:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
- Gebruik cd om de directory te wijzigen naar waar uw script is opgeslagen, bijvoorbeeld:
cd “C:\Users\UserName\Documents\Scripts"
- Kopieer en plak het volgende in PowerShell en druk op Enter om het script uit te voeren:
.\Verify_ControlVault_dsa-2025-228.ps1
- Een van de volgende resultaten wordt geretourneerd:
- De firmware van ControlVault moet worden bijgewerkt.
- Verificatie geslaagd: ControlVault-firmware bevat mitigaties voor DSA-2025-228
- Verificatie geslaagd: Uw computer beschikt niet over ControlVault
- ControlVault is mogelijk bijgewerkt, maar moet de validatie van de firmware-update voltooien. Start de computer opnieuw op
- Er lijkt een probleem te zijn met het parseren van de CVFirmwareUpgradeLog.txt; Dit wordt waarschijnlijk veroorzaakt doordat de laatste vermelding in dit logboek niet de verwachte data bevat
<#PSScriptInfo
.VERSION V1 - 11/12/2025
#>
<#
.DESCRIPTION
This script is intended to verify a Dell system against the vulnerabilities disclosed here https://www.dell.com/support/kbdoc/000276106/dsa-2025-228
and is not intended to be supported/updated
It is not intended to be used for keeping ControlVault firmware or drivers up-to-date
Checks if Dell Control Vault Driver is installed on System and returns result to $ControlVaultDriver
If Control Vault Driver is found, pull the last line from CVFirmwareUpgradeLog.txt and compare the FW revision to the
required FW revision from DSA for CV3 and CV3+. If required firmware meet, output to console
.USEAGE
This script, Verify_ControlVault_dsa-2025-228_Standalone_RC01.ps1 is intended to be run directly on the system intended for testing.
RETURNS: ControlVault firmware should be updated.
RETURNS: Verification Success: ControlVault firmware includes mitigations for DSA-2025-228
RETURNS: Verification Success: Your computer does not have ControlVault
RETRUNS: ControlVault maybe updated but needs to complete firmware update validation, Please reboot computer
RETRUNS: There appears to be an issue parsing the CVFirmwareUpgradeLog.txt; this is likely caused by the last entry of this log not containing the expected data
#>
# Static variables with firmware versions with remediation for ControlVault3 and ControlVault3+
$cv3_required_FWver = [Version]"5.15.10.0"
$cv3plus_required_FWver = [Version]"6.2.30.0"
# Static variables for messaging
$DSA_URL = "https://www.dell.com/support/kbdoc/000276106/dsa-2025-228"
$checkmark = [char]0x2705
$xmark = [char]0x2612
$CVoutofdate = "$xmark ControlVault firmware should be updated. Please refer to $DSA_URL"
$CVcompliant = "$checkmark Verification Success: ControlVault firmware includes mitigations for DSA-2025-228"
$CVnotfound = "Verification Success: Your computer does not have ControlVault"
$CVerror = "There appears to be an issue parsing the CVFirmwareUpgradeLog.txt; this is likely caused by the last entry of this log not containing the expected data"
$CVreboot = "ControlVault maybe updated but needs to complete firmware update validation, Please reboot computer"
# Checks if Dell Control Vault Driver is installed on System and returns result to $ControlVaultDriver
$controlVaultDriver = Get-WmiObject Win32_PnPSignedDriver | Where-Object { $_.DeviceName -like "*Control Vault*" }
$resultstatus = 3
# Find the last entry of the firmwareupgrade log and determine if the firmware version is greater than the firmware version required
if ($ControlVaultDriver){
$matchingLines = Get-Content "c:\Windows\System32\CVFirmwareUpgradeLog.txt" | Where-Object { $_ -match "Will not update ControlVault firmware from" -or $_ -match "Updating ControlVault firmware from" }
$lastLine = $matchingLines | Select-Object -Last 1
if ($lastLine -match "Updating ControlVault firmware from") {
$resultstatus = 5
Write-Host "$CVreboot"
}
else{
if ($lastLine -match "Will not update ControlVault firmware from\s+(\d+\.\d+\.\d+\.\d+)") {
$versionStr = $matches[1]
$version = [Version]$versionStr
if (($version.Major -eq 5 -and $version -ge $cv3_required_FWver) -or
($version.Major -eq 6 -and $version -ge $cv3plus_required_FWver)) {
$resultstatus = 4
Write-Host "$CVcompliant"
}
else{
$resultstatus = 2
Write-Host "$CVoutofdate"
}
}
else{
$resultstatus = 3
Write-Host "$CVerror"
}
}
}
else{
$resultstatus = 1
Write-Host "$CVnotfound"
}
# Create result object
$result = [PSCustomObject]@{
ComputerName = $env:COMPUTERNAME
Timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
ControlVaultInstalled = $null -ne $controlVaultDriver
Resultstatus = $resultstatus
DriverDetails = if ($controlVaultDriver) {
$controlVaultDriver | Select-Object DeviceName
} else {
$null
}
}
# Return as JSON
$result | ConvertTo-Json -Depth 3
Extra informatie
Raadpleeg DSA-2025-228 voor meer informatie.
Getroffen producten
Dell Pro Max 14 MC14250, Dell Pro Max 16 MC16250, Dell Pro 13 Plus PB13250, Dell Pro 14 Plus PB14250, Dell Pro 16 Plus PB16250, Dell Pro Rugged 13 RA13250, Dell Pro Rugged 14 RB14250, Latitude 7030 Rugged Extreme Tablet, Latitude 7200 2-in-1
, Latitude 7210 2-in-1, Latitude 7220EX Rugged Extreme Tablet, Latitude 7220 Rugged Extreme Tablet, Latitude 7230 Rugged Extreme Tablet, Latitude 5300 2-in-1, Latitude 5300, Latitude 5310 2-in-1, Latitude 5310, Latitude 5320, Latitude 5330, Latitude 5340, Latitude 5350, Latitude 7300, Latitude 7310, Latitude 7320, Latitude 7320 Detachable, Latitude 7330, Latitude 7330 Rugged Extreme, Latitude 7340, Latitude 7350, Latitude 7350 Detachable, Latitude 9330, Latitude 5400, Latitude 5401, Latitude 5410, Latitude 5411, Latitude 5421, Latitude 5430 Rugged, Latitude 5431, Latitude 5440, Latitude 5450, Latitude 7400 2-in-1, Latitude 7400, Latitude 7410, Latitude 7420, Latitude 7430, Latitude 7440, Latitude 7450, Latitude 9410, Latitude 9420, Latitude 9430, Latitude 9440 2-in-1, Latitude 9450 2-in-1, Latitude 5500, Latitude 5501, Latitude 5510, Latitude 5511, Latitude 5520, Latitude 5521, Latitude 5530, Latitude 5531, Latitude 5540, Latitude 5550, Latitude 7520, Latitude 7530, Latitude 9510, Latitude 9520, Latitude 7640, Latitude 7650, Latitude 5420, Latitude 5430, Precision 3470, Precision 3480, Precision 3490, Precision 5470, Precision 5480, Precision 5490, Precision 3540, Precision 3541, Precision 3550, Precision 3551, Precision 3560, Precision 3561, Precision 3570, Precision 3571, Precision 3580, Precision 3581, Precision 3590, Mobile Precision 3591, Precision 7540, Precision 7550, Precision 7560, Precision 5680, Mobile Precision 5690, Precision 7670, Precision 7680, Precision 7740, Precision 7750, Precision 7760, Precision 7770, Precision 7780
...
Artikeleigenschappen
Artikelnummer: 000393940
Artikeltype: How To
Laatst aangepast: 19 nov. 2025
Versie: 1
Vind antwoorden op uw vragen via andere Dell gebruikers
Support Services
Controleer of uw apparaat wordt gedekt door Support Services.