Skip to content

Instantly share code, notes, and snippets.

View arvinzx20's full-sized avatar
๐Ÿ˜„
I may be slow to respond.

arvinzx20

๐Ÿ˜„
I may be slow to respond.
View GitHub Profile
@arvinzx20
arvinzx20 / HPUnlocker.py
Created November 20, 2024 16:24 — forked from schorschii/HPUnlocker.py
HP Unlocker: Remove admin passwords from HP UEFI/BIOS images. Need help? Contact me for professional BIOS repair services in Germany: https://georg-sieber.de/?page=blog-bios
#!/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]
@schorschii
schorschii / HPUnlocker.py
Last active March 12, 2025 01:25
HP Unlocker: Remove admin passwords from HP UEFI/BIOS images. Need help? Contact me for professional BIOS repair services in Germany: https://georg-sieber.de/?page=blog-bios
#!/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]