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]
@arvinzx20
arvinzx20 / bitcoind-ubuntu-install
Created March 16, 2020 20:45
Install Bitcoind Ubuntu
** Add repository and install bitcoind **
sudo apt-get install build-essential
sudo apt-get install libtool autotools-dev autoconf
sudo apt-get install libssl-dev
sudo apt-get install libboost-all-dev
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install bitcoind
mkdir ~/.bitcoin/ && cd ~/.bitcoin/