Thank you rolf .rolf wroteWow, $99 is a lot for a software that does such a specific task. I was assuming it would be much less!
Anyway, I've taken a look at the last paragraphs.
Like I said, plenty of ways to decode/encode base64 online. This one decodes to hex:
http://tomeko.net/online_tools/base64.php?lang=en
Regarding the perl script, it seems to decode these into something useful.U1SwM62yfdFBRabksPR7wJwbVmk= >>> 5354B033ADB27DD14145A6E4B0F47BC09C1B5669 XR0lYQ== >>> 5D1D2561
I am assuming that you are running Windows.
You can install perl on Windows, which is probably the easiest solution. It should be OK to run the same commands in the article but without "sudo" at the beginning. Also instead of "time ios7.pl hex_hash hex_salt" you'd probably have to do something like "perl ios7.pl hex_hash hex_salt". But let's get there first.
I (we) can help you but please try yourself first, and let us know exactly where and how you are stuck.
I managed to get an old mac and i installed perl needed in the last part of the article using this : sudo cpan install Crypt::PBKDF2
now i just open a terminal and type the remaining :
#!/usr/bin/env perl
use Crypt::PBKDF2;
?
thank you