Skip to content

Instantly share code, notes, and snippets.

View zevaryx's full-sized avatar

Zeva zevaryx

View GitHub Profile
@zevaryx
zevaryx / keygen.py
Created April 23, 2026 22:49
MeshOS Keygen
def derive(mac: str) -> str:
mac = mac.upper()
h = ord(mac[0])
for i in range(1, len(mac)):
h = (h * 33 + ord(mac[i]))
# "MCPP"
xors = [0x4D, 0x43, 0x50, 0x50]
key = ""
# Run as admin!!!
# Move to the root of your website
cd /home/admin/web/fennecology.com/web/public_html
# Download the latest version of WordPress
wget https://wordpress.org/latest.tar.gz -O wordpress.tar.gz
# "Unzip" the file
tar -zxvf wordpress.tar.gz