ASP.NET Identity Framework script - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: User Contributions (https://hashcat.net/forum/forum-25.html) +--- Thread: ASP.NET Identity Framework script (/thread-8512.html) |
ASP.NET Identity Framework script - edernucci - 07-26-2019 Hi. I have created a simple shell script to convert the PBKDF2-HMAC-SHA1 or PBKDF2-HMAC-SHA256 from ASP.NET Identity to hashcat format. The basic usage is: Code: $ ./identity-to-hashcat.sh AGKcecrgyBNHkgjKqDlQPW7YlimD+VXPfpAx+gLSR0n1cOdIxFHaxKEF8SgAoaEtqQ== You can download/contribute from https://github.com/edernucci/identity-to-hashcat Regards, RE: ASP.NET Identity Framework script - philsmd - 07-26-2019 Thanks ! this is actually quite a strange way to encode the hashes, but it's not the first time we see some format like this In theory we could add a "module" (that just does the parsing and encoding part) and reuse the already available kernels in hashcat... let's see if there are more requests for this. I think this conversion is a very good solution for now |