Huawei ONT hash type - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Huawei ONT hash type (/thread-11881.html) |
Huawei ONT hash type - Thedemon007 - 03-29-2024 It seems that the Huawei hash algorithm is not supported this site can generate hash, define like a PBKDF2(password, 256 key size, 5000 iterations, Sha256, salt) hash if some body can add support it i think it is easier without encrypt. RE: Huawei ONT hash type - penguinkeeper - 03-29-2024 Each of these are already crackable with Hashcat. 1. is -m 0 2. is -m 20800 3. is -m 10000 RE: Huawei ONT hash type - Thedemon007 - 03-30-2024 (03-29-2024, 10:37 PM)penguinkeeper Wrote: Each of these are already crackable with Hashcat. Hash 3 is different to Django hash. Code source of generator https://github.com/andreluis034/huawei-utility-page RE: Huawei ONT hash type - penguinkeeper - 03-30-2024 Convert the "result" from hex to base64 and format it like this: pbkdf2_sha256$5000$salt$base64 So for your above hash: Code: > ./hashcat -m 10000 'pbkdf2_sha256$5000$170c8c0af5c28a8c5a976af63$booqY2F+oTc2gwCue75KsgR73tfAMIFNe69Mn/2FpdQ=' -a 3 123456 --potfile-disable --quiet |