A new program was released today to allow the end user to decode there drive key from the new LiteOn 83850c.
Freekey by Geremia and Maximus
This is Proof of concept, we dont care what you do with it
Ver 1.2 – Added Inquiry.bin file generation (autonamed with .inq extension)
- Added Key.bin file generation (autonamed with .inq extension) to create those
files make sure you use the /OF parameter, I think is all you need to flash your drive quicker.
Ver 1.1 – Added check for proper Dedication String
- Added parameter /OF optional, if entered an output file with your decrypted keys at the end will be generated.
Ex 1: freekey lo83file
Ex 2: freekey lo83file /OF
Note: Use common sense, verify your keys twice, if you can use a spare drive to flash and test just in case you mess some step.
Note to openkey creators, no need to reverse version 1.2 this is what we added
//now copy key.bin
strcpy(fname,argv[1]);
strcat(fname,”.key”);
fo = fopen(fname,”wb”);
if (fo == NULL)
{
printf(“Could not open output file %s\n”,fname);
return 0;
}
fwrite(Key,16,1,fo);
fclose(fo);
printf(“File %s was created.\n”,fname);
//now copy inquiry.bin
strcpy(fname,argv[1]);
strcat(fname,”.inq”);
fo = fopen(fname,”wb”);
if (fo == NULL)
{
printf(“Could not open output file %s\n”,fname);
return 0;
}
fwrite(&buffer1[0x70],0×60,1,fo);
fclose(fo);
printf(“File %s was created.\n”,fname);
Get it right HERE

