Jump to content


Freekey 1.2


¿Quieres enterarte al momento de las nuevas descargas? Síguenos en Twitter o Mastodon!
Ayúdanos con el mantenimiento de la web con una donación vía Paypal.

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 .key extension)
          to create those files make sure you use the /OF parameter
          No need to have the drive attached, freekey extract this data from your
          lo83 input file
          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],0x60,1,fo);        
        fclose(fo);
        printf("File %s was created.\n",fname);
 


No te pierdas nada, síguenos en Twitter o Mastodon!
Preguntas, aportes y peticiones en el foro.
Si te sirve lo que hacemos, ayúdanos con el mantenimiento de la web con una donación vía Paypal.

×
×
  • Crear nuevo...