Need add change to module m16600_a3-pure.cl
#1
hashcat have problem with check pass results at new Electrum wallets (v3, not crypted)
wallet is have xprv string, beginned from "zprv", instead of "xprv", and hashcat can't find it.

hashcat need add check at module
https://github.com/hashcat/hashcat/blob/...a3-pure.cl

from line 447 like this

if ((u8) (out[0] >> 0) != 'x') continue;
if ((u8) (out[0] >> 0) != 'z') continue;
if ((u8) (out[0] >> 8) != 'p') continue;
if ((u8) (out[0] >> 16) != 'r') continue;
if ((u8) (out[0] >> 24) != 'v') continue;

to check first symbol 'x' or 'z'


test hash: $electrum$2*e9167d9fa7636732570277877812e1e8*be6e7ebbe2d80f5b78144597578fa4b5
test pass: bitcoin3879549
-m 16600
Reply


Messages In This Thread
Need add change to module m16600_a3-pure.cl - by Layder - 03-19-2024, 11:31 AM