I'm attempting to write a program to guess a block key of one of my MIFARE Classic 1K cards.
Is it feasible to to maybe run something like this?
int i = 0x0;
while (true)
{
i += 0x1;
Console.WriteLine(string.Format("0x{0:x8}", i));
}
I understand that there are impracticalities of running a simple count, but would this have any degree of success?