—
Totale
—
Attive
—
Scadute
—
Revocate
Crea Nuova Licenza
Etichetta unica per questa licenza
Le stringhe grezze vengono auto-hashate
Numero di giorni o lifetime
► Come ottenere l'HWID del client?
PowerShell
Python
Da Minecraft
$macs = (Get-NetAdapter | Where-Object {$_.MacAddress} |
Sort-Object MacAddress |
ForEach-Object {$_.MacAddress -replace '-',''});
$raw = ($macs -join ':') + ':' +
[System.Environment]::OSVersion.Platform +
[System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture +
$env:USERNAME +
[System.Environment]::ProcessorCount;
$bytes = [System.Text.Encoding]::UTF8.GetBytes($raw);
$hash = [System.Security.Cryptography.SHA256]::Create().ComputeHash($bytes);
($hash | ForEach-Object {$_.ToString('x2')}) -join ''
Esegui in PowerShell sulla macchina del client. Restituisce direttamente l'hash SHA-256 da 64 caratteri.
📋 Copia
import hashlib, os, platform, subprocess
def get_macs():
macs = set()
try:
out = subprocess.check_output(['getmac','/fo','csv','/nh'],
text=True, stderr=subprocess.DEVNULL)
for line in out.splitlines():
m = line.strip().strip('"').split('"')[0].replace('-','')
if len(m) == 12:
macs.add(m.upper())
except Exception:
pass
return sorted(macs)
macs = get_macs()
raw = ':'.join(macs) + ':' + platform.system() + \
platform.machine() + os.getlogin() + str(os.cpu_count())
print(hashlib.sha256(raw.encode()).hexdigest())
Esegui con
📋 Copia
python hwid.py sulla macchina del client. Richiede Python 3.
Metodo più semplice — nessun comando necessario:
- Il client lancia Minecraft con il mod installato.
- Apre la ClickGUI (
RSHIFT). - Se la licenza non è attiva appare l'overlay con l'HWID.
- Copia il valore e incollalo nel campo HWID sopra.
L'HWID mostrato è già il hash SHA-256 da 64 caratteri — non serve elaborarlo.
Revoca Licenza
Hash hex da 64 char = ricerca per HWID · altrimenti per nome
Tutte le Licenze
| # | Nome | HWID | Creata | Scadenza | Stato | Azioni |
|---|