Skip to content

Instantly share code, notes, and snippets.

@schorschii
Created June 16, 2022 09:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schorschii/752b3a06f7bc3b33ce7b65ff22c27337 to your computer and use it in GitHub Desktop.
Save schorschii/752b3a06f7bc3b33ce7b65ff22c27337 to your computer and use it in GitHub Desktop.
Remove admin passwords from HP UEFI/BIOS images
#!/usr/bin/python3
# Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)]
import mmap, shutil, sys
if len(sys.argv) != 2:
print('Please provide a HP BIOS image .bin file as first parameter!')
sys.exit(1)
path = sys.argv[1]
splitpath = path.split('.')
newpath = splitpath[0] + '_unlocked.' + splitpath[1]
shutil.copyfile(path, newpath)
loc_old = 0
word = b'U\x00s\x00e\x00r\x00C\x00r\x00e\x00d'
oldword = b'$VSS'
oldword_key = b'B\x00i\x00o\x00s\x00U\x00s\x00e\x00r'
oldword_end = b'\xaaU'
with open(newpath, 'r+') as (f):
with mmap.mmap(f.fileno(), 0) as (m):
m.seek(0)
loc = m.find(oldword)
if loc == -1:
m.seek(0)
loc = m.find(word)
if loc == -1:
print('ERROR: Unable to find HP BIOS password - is this a correct HP BIOS image?')
sys.exit(1)
print('New BIOS detected')
for j in range(0, 100):
if j > 9 and j < 14:
m[loc + 16 + j:loc + 17 + j] = b'\xff'
else:
m[loc + 16 + j:loc + 17 + j] = b'\x00'
else:
print('Old BIOS detected')
while True:
loc_start = m.find(oldword_key, loc_old + 2)
loc_len = m.find(oldword_end, loc_start) - loc_start - 22
print(loc_start)
if loc_start == -1:
break
for i in range(0, loc_len):
m[loc_start + 22 + i:loc_start + 23 + i] = b'\xff'
loc_old = loc_start
m.flush()
m.seek(0)
f.seek(0)
print('OK')
@cesarbarbozarueda
Copy link

Hello, do you have to drop the bin on this file and it generates an unlocked bin?

@schorschii
Copy link
Author

If you compile this script with pyinstaller into an .exe, you can drop a .bin file on it.

Otherwise, if you just execute it with python, simply provide the path to the .bin as first command line parameter.
python3 HPUnlocker.py myfile.bin

(Dropping a file onto an .exe is exactly the same: Windows appends the path of the dropped file as first command line parameter.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment