]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fix: hf mf mifare - populate keylist iceman1001-patch-2 568/head
authorIceman <iceman@iuse.se>
Wed, 7 Feb 2018 20:56:27 +0000 (21:56 +0100)
committerGitHub <noreply@github.com>
Wed, 7 Feb 2018 20:56:27 +0000 (21:56 +0100)
This will solve the long running of the attack, since all candidate keys will be tested.

client/mifarehost.c

index a01d3b5f0485bf43b6b0087bc40a81b357edf9de..2bd21077e9b6ba5cd23c276445cccc809f3dbf04 100644 (file)
@@ -201,9 +201,9 @@ int mfDarkside(uint64_t *key)
                        int size = keycount - i > max_keys ? max_keys : keycount - i;\r
                        for (int j = 0; j < size; j++) {\r
                                if (par_list == 0) {\r
-                                       num_to_bytes(last_keylist[i*max_keys + j], 6, keyBlock);\r
+                                       num_to_bytes(last_keylist[i*max_keys + j], 6, keyBlock+(j*6));\r
                                } else {\r
-                                       num_to_bytes(keylist[i*max_keys + j], 6, keyBlock);\r
+                                       num_to_bytes(keylist[i*max_keys + j], 6, keyBlock+(j*6));\r
                                }\r
                        }\r
                        if (!mfCheckKeys(0, 0, false, size, keyBlock, key)) {\r
Impressum, Datenschutz