Huawei ONT hash type
#1
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.
Reply
#2
Each of these are already crackable with Hashcat.
1. is -m 0
2. is -m 20800
3. is -m 10000
Reply
#3
(03-29-2024, 10:37 PM)penguinkeeper Wrote: Each of these are already crackable with Hashcat.
1. is -m 0
2. is -m 20800
3. is -m 10000

Hash 3 is different to Django hash.

[Image: 53619978631_81edc8781d_w.jpg]

Code source of generator https://github.com/andreluis034/huawei-utility-page
Reply
#4
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

pbkdf2_sha256$5000$170c8c0af5c28a8c5a976af63$booqY2F+oTc2gwCue75KsgR73tfAMIFNe69Mn/2FpdQ=:123456
Reply