]>
Commit | Line | Data |
---|---|---|
9ca155ba | 1 | //-----------------------------------------------------------------------------\r |
b62a5a84 | 2 | // Copyright (C) 2011,2012 Merlok\r |
9ca155ba M |
3 | //\r |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or,\r | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of\r | |
6 | // the license.\r | |
7 | //-----------------------------------------------------------------------------\r | |
8 | // High frequency MIFARE commands\r | |
9 | //-----------------------------------------------------------------------------\r | |
10 | \r | |
c48c4d78 | 11 | #include "cmdhfmf.h"\r |
12 | \r | |
43534cba | 13 | #include <inttypes.h>\r |
acf0582d | 14 | #include <string.h>\r |
7cb8516c | 15 | #include <stdio.h>\r |
16 | #include <stdlib.h>\r | |
acf0582d | 17 | #include <ctype.h>\r |
7cb8516c | 18 | #include "proxmark3.h"\r |
19 | #include "cmdmain.h"\r | |
c48c4d78 | 20 | #include "cmdhfmfhard.h"\r |
7cb8516c | 21 | #include "util.h"\r |
ec9c7112 | 22 | #include "util_posix.h"\r |
c48c4d78 | 23 | #include "usb_cmd.h"\r |
7cb8516c | 24 | #include "ui.h"\r |
25 | #include "mifarehost.h"\r | |
26 | #include "mifare.h"\r | |
4cb4b588 | 27 | #include "mfkey.h"\r |
362d2039 | 28 | #include "hardnested/hardnested_bf_core.h"\r |
7cb8516c | 29 | \r |
30 | #define NESTED_SECTOR_RETRY 10 // how often we try mfested() until we give up\r | |
31 | \r | |
9ca155ba M |
32 | static int CmdHelp(const char *Cmd);\r |
33 | \r | |
9ca155ba M |
34 | int CmdHF14AMifare(const char *Cmd)\r |
35 | {\r | |
7779d73c | 36 | int isOK = 0;\r |
37 | uint64_t key = 0;\r | |
7779d73c | 38 | isOK = mfDarkside(&key);\r |
39 | switch (isOK) {\r | |
40 | case -1 : PrintAndLog("Button pressed. Aborted."); return 1;\r | |
41 | case -2 : PrintAndLog("Card is not vulnerable to Darkside attack (doesn't send NACK on authentication requests)."); return 1;\r | |
42 | case -3 : PrintAndLog("Card is not vulnerable to Darkside attack (its random number generator is not predictable)."); return 1;\r | |
43 | case -4 : PrintAndLog("Card is not vulnerable to Darkside attack (its random number generator seems to be based on the wellknown");\r | |
c48c4d78 | 44 | PrintAndLog("generating polynomial with 16 effective bits only, but shows unexpected behaviour."); return 1;\r |
7779d73c | 45 | case -5 : PrintAndLog("Aborted via keyboard."); return 1;\r |
46 | default : PrintAndLog("Found valid key:%012" PRIx64 "\n", key);\r | |
aea4d766 | 47 | }\r |
7906cb41 | 48 | \r |
3fe4ff4f | 49 | PrintAndLog("");\r |
9ca155ba M |
50 | return 0;\r |
51 | }\r | |
52 | \r | |
7779d73c | 53 | \r |
9ca155ba M |
54 | int CmdHF14AMfWrBl(const char *Cmd)\r |
55 | {\r | |
56 | uint8_t blockNo = 0;\r | |
57 | uint8_t keyType = 0;\r | |
58 | uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r | |
59 | uint8_t bldata[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\r | |
7906cb41 | 60 | \r |
9ca155ba M |
61 | char cmdp = 0x00;\r |
62 | \r | |
63 | if (strlen(Cmd)<3) {\r | |
64 | PrintAndLog("Usage: hf mf wrbl <block number> <key A/B> <key (12 hex symbols)> <block data (32 hex symbols)>");\r | |
65 | PrintAndLog(" sample: hf mf wrbl 0 A FFFFFFFFFFFF 000102030405060708090A0B0C0D0E0F");\r | |
66 | return 0;\r | |
7906cb41 | 67 | }\r |
9ca155ba M |
68 | \r |
69 | blockNo = param_get8(Cmd, 0);\r | |
70 | cmdp = param_getchar(Cmd, 1);\r | |
71 | if (cmdp == 0x00) {\r | |
72 | PrintAndLog("Key type must be A or B");\r | |
73 | return 1;\r | |
74 | }\r | |
75 | if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r | |
76 | if (param_gethex(Cmd, 2, key, 12)) {\r | |
77 | PrintAndLog("Key must include 12 HEX symbols");\r | |
78 | return 1;\r | |
79 | }\r | |
80 | if (param_gethex(Cmd, 3, bldata, 32)) {\r | |
81 | PrintAndLog("Block data must include 32 HEX symbols");\r | |
82 | return 1;\r | |
83 | }\r | |
baeaf579 | 84 | PrintAndLog("--block no:%d, key type:%c, key:%s", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r |
9ca155ba | 85 | PrintAndLog("--data: %s", sprint_hex(bldata, 16));\r |
7906cb41 | 86 | \r |
9ca155ba M |
87 | UsbCommand c = {CMD_MIFARE_WRITEBL, {blockNo, keyType, 0}};\r |
88 | memcpy(c.d.asBytes, key, 6);\r | |
89 | memcpy(c.d.asBytes + 10, bldata, 16);\r | |
90 | SendCommand(&c);\r | |
9ca155ba | 91 | \r |
902cb3c0 | 92 | UsbCommand resp;\r |
93 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r | |
94 | uint8_t isOK = resp.arg[0] & 0xff;\r | |
9ca155ba M |
95 | PrintAndLog("isOk:%02x", isOK);\r |
96 | } else {\r | |
97 | PrintAndLog("Command execute timeout");\r | |
98 | }\r | |
99 | \r | |
d2f487af | 100 | return 0;\r |
101 | }\r | |
102 | \r | |
d2f487af | 103 | int CmdHF14AMfRdBl(const char *Cmd)\r |
104 | {\r | |
105 | uint8_t blockNo = 0;\r | |
9ca155ba M |
106 | uint8_t keyType = 0;\r |
107 | uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r | |
7906cb41 | 108 | \r |
9ca155ba M |
109 | char cmdp = 0x00;\r |
110 | \r | |
111 | \r | |
112 | if (strlen(Cmd)<3) {\r | |
113 | PrintAndLog("Usage: hf mf rdbl <block number> <key A/B> <key (12 hex symbols)>");\r | |
114 | PrintAndLog(" sample: hf mf rdbl 0 A FFFFFFFFFFFF ");\r | |
115 | return 0;\r | |
7906cb41 F |
116 | }\r |
117 | \r | |
9ca155ba M |
118 | blockNo = param_get8(Cmd, 0);\r |
119 | cmdp = param_getchar(Cmd, 1);\r | |
120 | if (cmdp == 0x00) {\r | |
121 | PrintAndLog("Key type must be A or B");\r | |
122 | return 1;\r | |
123 | }\r | |
124 | if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r | |
125 | if (param_gethex(Cmd, 2, key, 12)) {\r | |
126 | PrintAndLog("Key must include 12 HEX symbols");\r | |
127 | return 1;\r | |
128 | }\r | |
baeaf579 | 129 | PrintAndLog("--block no:%d, key type:%c, key:%s ", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r |
7906cb41 | 130 | \r |
9ca155ba M |
131 | UsbCommand c = {CMD_MIFARE_READBL, {blockNo, keyType, 0}};\r |
132 | memcpy(c.d.asBytes, key, 6);\r | |
133 | SendCommand(&c);\r | |
9ca155ba | 134 | \r |
902cb3c0 | 135 | UsbCommand resp;\r |
136 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r | |
baeaf579 | 137 | uint8_t isOK = resp.arg[0] & 0xff;\r |
138 | uint8_t *data = resp.d.asBytes;\r | |
9ca155ba M |
139 | \r |
140 | if (isOK)\r | |
141 | PrintAndLog("isOk:%02x data:%s", isOK, sprint_hex(data, 16));\r | |
142 | else\r | |
143 | PrintAndLog("isOk:%02x", isOK);\r | |
144 | } else {\r | |
145 | PrintAndLog("Command execute timeout");\r | |
146 | }\r | |
147 | \r | |
d2f487af | 148 | return 0;\r |
149 | }\r | |
150 | \r | |
d2f487af | 151 | int CmdHF14AMfRdSc(const char *Cmd)\r |
152 | {\r | |
153 | int i;\r | |
9ca155ba M |
154 | uint8_t sectorNo = 0;\r |
155 | uint8_t keyType = 0;\r | |
156 | uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r | |
9ca155ba | 157 | uint8_t isOK = 0;\r |
baeaf579 | 158 | uint8_t *data = NULL;\r |
9ca155ba M |
159 | char cmdp = 0x00;\r |
160 | \r | |
161 | if (strlen(Cmd)<3) {\r | |
162 | PrintAndLog("Usage: hf mf rdsc <sector number> <key A/B> <key (12 hex symbols)>");\r | |
163 | PrintAndLog(" sample: hf mf rdsc 0 A FFFFFFFFFFFF ");\r | |
164 | return 0;\r | |
7906cb41 F |
165 | }\r |
166 | \r | |
9ca155ba | 167 | sectorNo = param_get8(Cmd, 0);\r |
baeaf579 | 168 | if (sectorNo > 39) {\r |
169 | PrintAndLog("Sector number must be less than 40");\r | |
9ca155ba M |
170 | return 1;\r |
171 | }\r | |
172 | cmdp = param_getchar(Cmd, 1);\r | |
baeaf579 | 173 | if (cmdp != 'a' && cmdp != 'A' && cmdp != 'b' && cmdp != 'B') {\r |
9ca155ba M |
174 | PrintAndLog("Key type must be A or B");\r |
175 | return 1;\r | |
176 | }\r | |
177 | if (cmdp != 'A' && cmdp != 'a') keyType = 1;\r | |
178 | if (param_gethex(Cmd, 2, key, 12)) {\r | |
179 | PrintAndLog("Key must include 12 HEX symbols");\r | |
180 | return 1;\r | |
181 | }\r | |
baeaf579 | 182 | PrintAndLog("--sector no:%d key type:%c key:%s ", sectorNo, keyType?'B':'A', sprint_hex(key, 6));\r |
7906cb41 | 183 | \r |
baeaf579 | 184 | UsbCommand c = {CMD_MIFARE_READSC, {sectorNo, keyType, 0}};\r |
9ca155ba | 185 | memcpy(c.d.asBytes, key, 6);\r |
baeaf579 | 186 | SendCommand(&c);\r |
9ca155ba M |
187 | PrintAndLog(" ");\r |
188 | \r | |
902cb3c0 | 189 | UsbCommand resp;\r |
190 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r | |
191 | isOK = resp.arg[0] & 0xff;\r | |
192 | data = resp.d.asBytes;\r | |
9ca155ba M |
193 | \r |
194 | PrintAndLog("isOk:%02x", isOK);\r | |
baeaf579 | 195 | if (isOK) {\r |
196 | for (i = 0; i < (sectorNo<32?3:15); i++) {\r | |
197 | PrintAndLog("data : %s", sprint_hex(data + i * 16, 16));\r | |
9ca155ba | 198 | }\r |
baeaf579 | 199 | PrintAndLog("trailer: %s", sprint_hex(data + (sectorNo<32?3:15) * 16, 16));\r |
200 | }\r | |
9ca155ba | 201 | } else {\r |
baeaf579 | 202 | PrintAndLog("Command execute timeout");\r |
9ca155ba M |
203 | }\r |
204 | \r | |
baeaf579 | 205 | return 0;\r |
206 | }\r | |
9ca155ba | 207 | \r |
baeaf579 | 208 | uint8_t FirstBlockOfSector(uint8_t sectorNo)\r |
209 | {\r | |
210 | if (sectorNo < 32) {\r | |
211 | return sectorNo * 4;\r | |
9ca155ba | 212 | } else {\r |
baeaf579 | 213 | return 32 * 4 + (sectorNo - 32) * 16;\r |
9ca155ba | 214 | }\r |
9ca155ba M |
215 | }\r |
216 | \r | |
baeaf579 | 217 | uint8_t NumBlocksPerSector(uint8_t sectorNo)\r |
218 | {\r | |
219 | if (sectorNo < 32) {\r | |
220 | return 4;\r | |
221 | } else {\r | |
222 | return 16;\r | |
223 | }\r | |
224 | }\r | |
225 | \r | |
adf023ff OM |
226 | static int ParamCardSizeSectors(const char c) {\r |
227 | int numBlocks = 16;\r | |
228 | switch (c) {\r | |
229 | case '0' : numBlocks = 5; break;\r | |
230 | case '2' : numBlocks = 32; break;\r | |
231 | case '4' : numBlocks = 40; break;\r | |
232 | default: numBlocks = 16;\r | |
233 | }\r | |
234 | return numBlocks;\r | |
235 | }\r | |
236 | \r | |
237 | static int ParamCardSizeBlocks(const char c) {\r | |
238 | int numBlocks = 16 * 4;\r | |
239 | switch (c) {\r | |
240 | case '0' : numBlocks = 5 * 4; break;\r | |
241 | case '2' : numBlocks = 32 * 4; break;\r | |
242 | case '4' : numBlocks = 32 * 4 + 8 * 16; break;\r | |
243 | default: numBlocks = 16 * 4;\r | |
244 | }\r | |
245 | return numBlocks;\r | |
246 | }\r | |
247 | \r | |
aea4d766 | 248 | int CmdHF14AMfDump(const char *Cmd)\r |
26fdb4ab | 249 | {\r |
baeaf579 | 250 | uint8_t sectorNo, blockNo;\r |
7906cb41 | 251 | \r |
aea4d766 | 252 | uint8_t keyA[40][6];\r |
253 | uint8_t keyB[40][6];\r | |
254 | uint8_t rights[40][4];\r | |
79db03ef | 255 | uint8_t carddata[256][16];\r |
baeaf579 | 256 | uint8_t numSectors = 16;\r |
7906cb41 | 257 | \r |
26fdb4ab | 258 | FILE *fin;\r |
259 | FILE *fout;\r | |
7906cb41 | 260 | \r |
902cb3c0 | 261 | UsbCommand resp;\r |
baeaf579 | 262 | \r |
263 | char cmdp = param_getchar(Cmd, 0);\r | |
adf023ff | 264 | numSectors = ParamCardSizeSectors(cmdp);\r |
7906cb41 | 265 | \r |
baeaf579 | 266 | if (strlen(Cmd) > 1 || cmdp == 'h' || cmdp == 'H') {\r |
267 | PrintAndLog("Usage: hf mf dump [card memory]");\r | |
268 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
269 | PrintAndLog("");\r | |
270 | PrintAndLog("Samples: hf mf dump");\r | |
271 | PrintAndLog(" hf mf dump 4");\r | |
272 | return 0;\r | |
273 | }\r | |
7906cb41 | 274 | \r |
26fdb4ab | 275 | if ((fin = fopen("dumpkeys.bin","rb")) == NULL) {\r |
aea4d766 | 276 | PrintAndLog("Could not find file dumpkeys.bin");\r |
26fdb4ab | 277 | return 1;\r |
278 | }\r | |
7906cb41 | 279 | \r |
3fe4ff4f | 280 | // Read keys A from file\r |
baeaf579 | 281 | for (sectorNo=0; sectorNo<numSectors; sectorNo++) {\r |
4c16ae80 | 282 | size_t bytes_read = fread(keyA[sectorNo], 1, 6, fin);\r |
283 | if (bytes_read != 6) {\r | |
baeaf579 | 284 | PrintAndLog("File reading error.");\r |
97d582a6 | 285 | fclose(fin);\r |
759c16b3 | 286 | return 2;\r |
baeaf579 | 287 | }\r |
26fdb4ab | 288 | }\r |
7906cb41 | 289 | \r |
3fe4ff4f | 290 | // Read keys B from file\r |
baeaf579 | 291 | for (sectorNo=0; sectorNo<numSectors; sectorNo++) {\r |
4c16ae80 | 292 | size_t bytes_read = fread(keyB[sectorNo], 1, 6, fin);\r |
293 | if (bytes_read != 6) {\r | |
baeaf579 | 294 | PrintAndLog("File reading error.");\r |
97d582a6 | 295 | fclose(fin);\r |
759c16b3 | 296 | return 2;\r |
baeaf579 | 297 | }\r |
26fdb4ab | 298 | }\r |
7906cb41 | 299 | \r |
97d582a6 | 300 | fclose(fin);\r |
baeaf579 | 301 | \r |
26fdb4ab | 302 | PrintAndLog("|-----------------------------------------|");\r |
303 | PrintAndLog("|------ Reading sector access bits...-----|");\r | |
304 | PrintAndLog("|-----------------------------------------|");\r | |
40c6a02b | 305 | uint8_t tries = 0;\r |
baeaf579 | 306 | for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r |
7906cb41 | 307 | for (tries = 0; tries < 3; tries++) {\r |
40c6a02b | 308 | UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + NumBlocksPerSector(sectorNo) - 1, 0, 0}};\r |
309 | memcpy(c.d.asBytes, keyA[sectorNo], 6);\r | |
310 | SendCommand(&c);\r | |
26fdb4ab | 311 | \r |
40c6a02b | 312 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r |
313 | uint8_t isOK = resp.arg[0] & 0xff;\r | |
314 | uint8_t *data = resp.d.asBytes;\r | |
315 | if (isOK){\r | |
316 | rights[sectorNo][0] = ((data[7] & 0x10)>>2) | ((data[8] & 0x1)<<1) | ((data[8] & 0x10)>>4); // C1C2C3 for data area 0\r | |
317 | rights[sectorNo][1] = ((data[7] & 0x20)>>3) | ((data[8] & 0x2)<<0) | ((data[8] & 0x20)>>5); // C1C2C3 for data area 1\r | |
318 | rights[sectorNo][2] = ((data[7] & 0x40)>>4) | ((data[8] & 0x4)>>1) | ((data[8] & 0x40)>>6); // C1C2C3 for data area 2\r | |
319 | rights[sectorNo][3] = ((data[7] & 0x80)>>5) | ((data[8] & 0x8)>>2) | ((data[8] & 0x80)>>7); // C1C2C3 for sector trailer\r | |
320 | break;\r | |
321 | } else if (tries == 2) { // on last try set defaults\r | |
322 | PrintAndLog("Could not get access rights for sector %2d. Trying with defaults...", sectorNo);\r | |
323 | rights[sectorNo][0] = rights[sectorNo][1] = rights[sectorNo][2] = 0x00;\r | |
324 | rights[sectorNo][3] = 0x01;\r | |
325 | }\r | |
baeaf579 | 326 | } else {\r |
40c6a02b | 327 | PrintAndLog("Command execute timeout when trying to read access rights for sector %2d. Trying with defaults...", sectorNo);\r |
c626c56e | 328 | rights[sectorNo][0] = rights[sectorNo][1] = rights[sectorNo][2] = 0x00;\r |
329 | rights[sectorNo][3] = 0x01;\r | |
26fdb4ab | 330 | }\r |
26fdb4ab | 331 | }\r |
332 | }\r | |
7906cb41 | 333 | \r |
26fdb4ab | 334 | PrintAndLog("|-----------------------------------------|");\r |
335 | PrintAndLog("|----- Dumping all blocks to file... -----|");\r | |
336 | PrintAndLog("|-----------------------------------------|");\r | |
7906cb41 | 337 | \r |
79db03ef | 338 | bool isOK = true;\r |
339 | for (sectorNo = 0; isOK && sectorNo < numSectors; sectorNo++) {\r | |
340 | for (blockNo = 0; isOK && blockNo < NumBlocksPerSector(sectorNo); blockNo++) {\r | |
baeaf579 | 341 | bool received = false;\r |
7906cb41 F |
342 | for (tries = 0; tries < 3; tries++) {\r |
343 | if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer. At least the Access Conditions can always be read with key A.\r | |
79db03ef | 344 | UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 0, 0}};\r |
345 | memcpy(c.d.asBytes, keyA[sectorNo], 6);\r | |
346 | SendCommand(&c);\r | |
347 | received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r | |
40c6a02b | 348 | } else { // data block. Check if it can be read with key A or key B\r |
349 | uint8_t data_area = sectorNo<32?blockNo:blockNo/5;\r | |
350 | if ((rights[sectorNo][data_area] == 0x03) || (rights[sectorNo][data_area] == 0x05)) { // only key B would work\r | |
351 | UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 1, 0}};\r | |
352 | memcpy(c.d.asBytes, keyB[sectorNo], 6);\r | |
353 | SendCommand(&c);\r | |
354 | received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r | |
355 | } else if (rights[sectorNo][data_area] == 0x07) { // no key would work\r | |
356 | isOK = false;\r | |
357 | PrintAndLog("Access rights do not allow reading of sector %2d block %3d", sectorNo, blockNo);\r | |
358 | tries = 2;\r | |
359 | } else { // key A would work\r | |
360 | UsbCommand c = {CMD_MIFARE_READBL, {FirstBlockOfSector(sectorNo) + blockNo, 0, 0}};\r | |
361 | memcpy(c.d.asBytes, keyA[sectorNo], 6);\r | |
362 | SendCommand(&c);\r | |
363 | received = WaitForResponseTimeout(CMD_ACK,&resp,1500);\r | |
364 | }\r | |
365 | }\r | |
366 | if (received) {\r | |
367 | isOK = resp.arg[0] & 0xff;\r | |
368 | if (isOK) break;\r | |
26fdb4ab | 369 | }\r |
370 | }\r | |
371 | \r | |
902cb3c0 | 372 | if (received) {\r |
79db03ef | 373 | isOK = resp.arg[0] & 0xff;\r |
902cb3c0 | 374 | uint8_t *data = resp.d.asBytes;\r |
baeaf579 | 375 | if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer. Fill in the keys.\r |
376 | data[0] = (keyA[sectorNo][0]);\r | |
377 | data[1] = (keyA[sectorNo][1]);\r | |
378 | data[2] = (keyA[sectorNo][2]);\r | |
379 | data[3] = (keyA[sectorNo][3]);\r | |
380 | data[4] = (keyA[sectorNo][4]);\r | |
381 | data[5] = (keyA[sectorNo][5]);\r | |
382 | data[10] = (keyB[sectorNo][0]);\r | |
383 | data[11] = (keyB[sectorNo][1]);\r | |
384 | data[12] = (keyB[sectorNo][2]);\r | |
385 | data[13] = (keyB[sectorNo][3]);\r | |
386 | data[14] = (keyB[sectorNo][4]);\r | |
387 | data[15] = (keyB[sectorNo][5]);\r | |
3d77fdfa | 388 | }\r |
26fdb4ab | 389 | if (isOK) {\r |
79db03ef | 390 | memcpy(carddata[FirstBlockOfSector(sectorNo) + blockNo], data, 16);\r |
391 | PrintAndLog("Successfully read block %2d of sector %2d.", blockNo, sectorNo);\r | |
baeaf579 | 392 | } else {\r |
393 | PrintAndLog("Could not read block %2d of sector %2d", blockNo, sectorNo);\r | |
79db03ef | 394 | break;\r |
26fdb4ab | 395 | }\r |
396 | }\r | |
397 | else {\r | |
79db03ef | 398 | isOK = false;\r |
399 | PrintAndLog("Command execute timeout when trying to read block %2d of sector %2d.", blockNo, sectorNo);\r | |
400 | break;\r | |
26fdb4ab | 401 | }\r |
402 | }\r | |
403 | }\r | |
79db03ef | 404 | \r |
405 | if (isOK) {\r | |
7906cb41 | 406 | if ((fout = fopen("dumpdata.bin","wb")) == NULL) {\r |
79db03ef | 407 | PrintAndLog("Could not create file name dumpdata.bin");\r |
408 | return 1;\r | |
409 | }\r | |
410 | uint16_t numblocks = FirstBlockOfSector(numSectors - 1) + NumBlocksPerSector(numSectors - 1);\r | |
411 | fwrite(carddata, 1, 16*numblocks, fout);\r | |
412 | fclose(fout);\r | |
413 | PrintAndLog("Dumped %d blocks (%d bytes) to file dumpdata.bin", numblocks, 16*numblocks);\r | |
414 | }\r | |
7906cb41 | 415 | \r |
baeaf579 | 416 | return 0;\r |
26fdb4ab | 417 | }\r |
418 | \r | |
aea4d766 | 419 | int CmdHF14AMfRestore(const char *Cmd)\r |
26fdb4ab | 420 | {\r |
baeaf579 | 421 | uint8_t sectorNo,blockNo;\r |
26fdb4ab | 422 | uint8_t keyType = 0;\r |
83602aff | 423 | uint8_t key[6] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};\r |
b915fda3 | 424 | uint8_t bldata[16] = {0x00};\r |
baeaf579 | 425 | uint8_t keyA[40][6];\r |
426 | uint8_t keyB[40][6];\r | |
427 | uint8_t numSectors;\r | |
7906cb41 | 428 | \r |
26fdb4ab | 429 | FILE *fdump;\r |
430 | FILE *fkeys;\r | |
baeaf579 | 431 | \r |
432 | char cmdp = param_getchar(Cmd, 0);\r | |
433 | switch (cmdp) {\r | |
434 | case '0' : numSectors = 5; break;\r | |
7906cb41 | 435 | case '1' :\r |
baeaf579 | 436 | case '\0': numSectors = 16; break;\r |
437 | case '2' : numSectors = 32; break;\r | |
438 | case '4' : numSectors = 40; break;\r | |
439 | default: numSectors = 16;\r | |
7906cb41 | 440 | }\r |
baeaf579 | 441 | \r |
442 | if (strlen(Cmd) > 1 || cmdp == 'h' || cmdp == 'H') {\r | |
443 | PrintAndLog("Usage: hf mf restore [card memory]");\r | |
444 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
445 | PrintAndLog("");\r | |
446 | PrintAndLog("Samples: hf mf restore");\r | |
447 | PrintAndLog(" hf mf restore 4");\r | |
448 | return 0;\r | |
449 | }\r | |
450 | \r | |
26fdb4ab | 451 | if ((fkeys = fopen("dumpkeys.bin","rb")) == NULL) {\r |
aea4d766 | 452 | PrintAndLog("Could not find file dumpkeys.bin");\r |
26fdb4ab | 453 | return 1;\r |
454 | }\r | |
7906cb41 | 455 | \r |
baeaf579 | 456 | for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r |
4c16ae80 | 457 | size_t bytes_read = fread(keyA[sectorNo], 1, 6, fkeys);\r |
458 | if (bytes_read != 6) {\r | |
baeaf579 | 459 | PrintAndLog("File reading error (dumpkeys.bin).");\r |
31d1caa5 | 460 | fclose(fkeys);\r |
759c16b3 | 461 | return 2;\r |
baeaf579 | 462 | }\r |
26fdb4ab | 463 | }\r |
baeaf579 | 464 | \r |
465 | for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r | |
4c16ae80 | 466 | size_t bytes_read = fread(keyB[sectorNo], 1, 6, fkeys);\r |
467 | if (bytes_read != 6) {\r | |
baeaf579 | 468 | PrintAndLog("File reading error (dumpkeys.bin).");\r |
31d1caa5 | 469 | fclose(fkeys);\r |
759c16b3 | 470 | return 2;\r |
baeaf579 | 471 | }\r |
26fdb4ab | 472 | }\r |
b915fda3 | 473 | \r |
ca4714cd | 474 | fclose(fkeys);\r |
79db03ef | 475 | \r |
b915fda3 | 476 | if ((fdump = fopen("dumpdata.bin","rb")) == NULL) {\r |
477 | PrintAndLog("Could not find file dumpdata.bin");\r | |
478 | return 1;\r | |
7906cb41 | 479 | }\r |
9d710943 | 480 | PrintAndLog("Restoring dumpdata.bin to card");\r |
26fdb4ab | 481 | \r |
baeaf579 | 482 | for (sectorNo = 0; sectorNo < numSectors; sectorNo++) {\r |
483 | for(blockNo = 0; blockNo < NumBlocksPerSector(sectorNo); blockNo++) {\r | |
484 | UsbCommand c = {CMD_MIFARE_WRITEBL, {FirstBlockOfSector(sectorNo) + blockNo, keyType, 0}};\r | |
26fdb4ab | 485 | memcpy(c.d.asBytes, key, 6);\r |
7906cb41 | 486 | \r |
4c16ae80 | 487 | size_t bytes_read = fread(bldata, 1, 16, fdump);\r |
488 | if (bytes_read != 16) {\r | |
baeaf579 | 489 | PrintAndLog("File reading error (dumpdata.bin).");\r |
ca4714cd | 490 | fclose(fdump);\r |
baeaf579 | 491 | return 2;\r |
492 | }\r | |
7906cb41 | 493 | \r |
baeaf579 | 494 | if (blockNo == NumBlocksPerSector(sectorNo) - 1) { // sector trailer\r |
495 | bldata[0] = (keyA[sectorNo][0]);\r | |
496 | bldata[1] = (keyA[sectorNo][1]);\r | |
497 | bldata[2] = (keyA[sectorNo][2]);\r | |
498 | bldata[3] = (keyA[sectorNo][3]);\r | |
499 | bldata[4] = (keyA[sectorNo][4]);\r | |
500 | bldata[5] = (keyA[sectorNo][5]);\r | |
501 | bldata[10] = (keyB[sectorNo][0]);\r | |
502 | bldata[11] = (keyB[sectorNo][1]);\r | |
503 | bldata[12] = (keyB[sectorNo][2]);\r | |
504 | bldata[13] = (keyB[sectorNo][3]);\r | |
505 | bldata[14] = (keyB[sectorNo][4]);\r | |
506 | bldata[15] = (keyB[sectorNo][5]);\r | |
7906cb41 F |
507 | }\r |
508 | \r | |
baeaf579 | 509 | PrintAndLog("Writing to block %3d: %s", FirstBlockOfSector(sectorNo) + blockNo, sprint_hex(bldata, 16));\r |
7906cb41 | 510 | \r |
26fdb4ab | 511 | memcpy(c.d.asBytes + 10, bldata, 16);\r |
512 | SendCommand(&c);\r | |
26fdb4ab | 513 | \r |
902cb3c0 | 514 | UsbCommand resp;\r |
baeaf579 | 515 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r |
902cb3c0 | 516 | uint8_t isOK = resp.arg[0] & 0xff;\r |
26fdb4ab | 517 | PrintAndLog("isOk:%02x", isOK);\r |
518 | } else {\r | |
519 | PrintAndLog("Command execute timeout");\r | |
520 | }\r | |
521 | }\r | |
522 | }\r | |
7906cb41 | 523 | \r |
26fdb4ab | 524 | fclose(fdump);\r |
26fdb4ab | 525 | return 0;\r |
526 | }\r | |
527 | \r | |
0c86cb01 OM |
528 | //----------------------------------------------\r |
529 | // Nested\r | |
530 | //----------------------------------------------\r | |
0c86cb01 OM |
531 | \r |
532 | static void parseParamTDS(const char *Cmd, const uint8_t indx, bool *paramT, bool *paramD, uint8_t *timeout) {\r | |
533 | char ctmp3[3] = {0};\r | |
534 | int len = param_getlength(Cmd, indx);\r | |
535 | if (len > 0 && len < 4){\r | |
874572d4 | 536 | param_getstr(Cmd, indx, ctmp3, sizeof(ctmp3));\r |
0c86cb01 OM |
537 | \r |
538 | *paramT |= (ctmp3[0] == 't' || ctmp3[0] == 'T');\r | |
539 | *paramD |= (ctmp3[0] == 'd' || ctmp3[0] == 'D');\r | |
540 | bool paramS1 = *paramT || *paramD;\r | |
541 | \r | |
542 | // slow and very slow\r | |
543 | if (ctmp3[0] == 's' || ctmp3[0] == 'S' || ctmp3[1] == 's' || ctmp3[1] == 'S') {\r | |
544 | *timeout = 11; // slow\r | |
545 | \r | |
546 | if (!paramS1 && (ctmp3[1] == 's' || ctmp3[1] == 'S')) {\r | |
547 | *timeout = 53; // very slow\r | |
548 | }\r | |
549 | if (paramS1 && (ctmp3[2] == 's' || ctmp3[2] == 'S')) {\r | |
550 | *timeout = 53; // very slow\r | |
551 | }\r | |
552 | }\r | |
553 | }\r | |
554 | }\r | |
555 | \r | |
9ca155ba M |
556 | int CmdHF14AMfNested(const char *Cmd)\r |
557 | {\r | |
558 | int i, j, res, iterations;\r | |
7cb8516c | 559 | sector_t *e_sector = NULL;\r |
9ca155ba M |
560 | uint8_t blockNo = 0;\r |
561 | uint8_t keyType = 0;\r | |
562 | uint8_t trgBlockNo = 0;\r | |
563 | uint8_t trgKeyType = 0;\r | |
baeaf579 | 564 | uint8_t SectorsCnt = 0;\r |
9ca155ba | 565 | uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r |
e537c3e8 | 566 | uint8_t keyBlock[MifareDefaultKeysSize * 6];\r |
9ca155ba | 567 | uint64_t key64 = 0;\r |
0c86cb01 OM |
568 | // timeout in units. (ms * 106)/10 or us*0.0106\r |
569 | uint8_t btimeout14a = MF_CHKKEYS_DEFTIMEOUT; // fast by default\r | |
adf023ff OM |
570 | \r |
571 | bool autosearchKey = false;\r | |
7906cb41 | 572 | \r |
adf023ff | 573 | bool transferToEml = false;\r |
baeaf579 | 574 | bool createDumpFile = false;\r |
26fdb4ab | 575 | FILE *fkeys;\r |
21156267 | 576 | uint8_t standart[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};\r |
577 | uint8_t tempkey[6] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};\r | |
7906cb41 | 578 | \r |
9ca155ba M |
579 | char cmdp, ctmp;\r |
580 | \r | |
581 | if (strlen(Cmd)<3) {\r | |
582 | PrintAndLog("Usage:");\r | |
0c86cb01 OM |
583 | PrintAndLog(" all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t|d|s|ss]");\r |
584 | PrintAndLog(" all sectors autosearch key: hf mf nested <card memory> * [t|d|s|ss]");\r | |
0014cb46 M |
585 | PrintAndLog(" one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>");\r |
586 | PrintAndLog(" <target block number> <target key A/B> [t]");\r | |
adf023ff | 587 | PrintAndLog(" ");\r |
9ca155ba | 588 | PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");\r |
adf023ff OM |
589 | PrintAndLog("t - transfer keys to emulator memory");\r |
590 | PrintAndLog("d - write keys to binary file dumpkeys.bin");\r | |
0c86cb01 OM |
591 | PrintAndLog("s - Slow (1ms) check keys (required by some non standard cards)");\r |
592 | PrintAndLog("ss - Very slow (5ms) check keys");\r | |
9ca155ba M |
593 | PrintAndLog(" ");\r |
594 | PrintAndLog(" sample1: hf mf nested 1 0 A FFFFFFFFFFFF ");\r | |
79db03ef | 595 | PrintAndLog(" sample2: hf mf nested 1 0 A FFFFFFFFFFFF t ");\r |
596 | PrintAndLog(" sample3: hf mf nested 1 0 A FFFFFFFFFFFF d ");\r | |
597 | PrintAndLog(" sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A");\r | |
adf023ff | 598 | PrintAndLog(" sample5: hf mf nested 1 * t");\r |
0c86cb01 | 599 | PrintAndLog(" sample6: hf mf nested 1 * ss");\r |
9ca155ba | 600 | return 0;\r |
7906cb41 F |
601 | }\r |
602 | \r | |
adf023ff | 603 | // <card memory>\r |
9ca155ba | 604 | cmdp = param_getchar(Cmd, 0);\r |
adf023ff OM |
605 | if (cmdp == 'o' || cmdp == 'O') {\r |
606 | cmdp = 'o';\r | |
607 | SectorsCnt = 1;\r | |
608 | } else {\r | |
609 | SectorsCnt = ParamCardSizeSectors(cmdp);\r | |
9ca155ba | 610 | }\r |
adf023ff OM |
611 | \r |
612 | // <block number>. number or autosearch key (*)\r | |
613 | if (param_getchar(Cmd, 1) == '*') {\r | |
614 | autosearchKey = true;\r | |
7906cb41 | 615 | \r |
0c86cb01 | 616 | parseParamTDS(Cmd, 2, &transferToEml, &createDumpFile, &btimeout14a);\r |
7906cb41 | 617 | \r |
0c86cb01 OM |
618 | PrintAndLog("--nested. sectors:%2d, block no:*, eml:%c, dmp=%c checktimeout=%d us", \r |
619 | SectorsCnt, transferToEml?'y':'n', createDumpFile?'y':'n', ((int)btimeout14a * 10000) / 106);\r | |
adf023ff OM |
620 | } else {\r |
621 | blockNo = param_get8(Cmd, 1);\r | |
7906cb41 | 622 | \r |
adf023ff | 623 | ctmp = param_getchar(Cmd, 2);\r |
baeaf579 | 624 | if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r |
adf023ff | 625 | PrintAndLog("Key type must be A or B");\r |
9ca155ba M |
626 | return 1;\r |
627 | }\r | |
adf023ff | 628 | \r |
7906cb41 | 629 | if (ctmp != 'A' && ctmp != 'a')\r |
adf023ff OM |
630 | keyType = 1;\r |
631 | \r | |
632 | if (param_gethex(Cmd, 3, key, 12)) {\r | |
633 | PrintAndLog("Key must include 12 HEX symbols");\r | |
634 | return 1;\r | |
635 | }\r | |
7906cb41 | 636 | \r |
adf023ff OM |
637 | // check if we can authenticate to sector\r |
638 | res = mfCheckKeys(blockNo, keyType, true, 1, key, &key64);\r | |
639 | if (res) {\r | |
640 | PrintAndLog("Can't authenticate to block:%3d key type:%c key:%s", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r | |
641 | return 3;\r | |
9ca155ba | 642 | }\r |
8556b852 | 643 | \r |
adf023ff OM |
644 | // one sector nested\r |
645 | if (cmdp == 'o') { \r | |
646 | trgBlockNo = param_get8(Cmd, 4);\r | |
7906cb41 | 647 | \r |
adf023ff OM |
648 | ctmp = param_getchar(Cmd, 5);\r |
649 | if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r | |
650 | PrintAndLog("Target key type must be A or B");\r | |
651 | return 1;\r | |
652 | }\r | |
653 | if (ctmp != 'A' && ctmp != 'a')\r | |
654 | trgKeyType = 1;\r | |
7906cb41 | 655 | \r |
0c86cb01 | 656 | parseParamTDS(Cmd, 6, &transferToEml, &createDumpFile, &btimeout14a);\r |
adf023ff | 657 | } else {\r |
0c86cb01 | 658 | parseParamTDS(Cmd, 4, &transferToEml, &createDumpFile, &btimeout14a);\r |
adf023ff OM |
659 | }\r |
660 | \r | |
0c86cb01 OM |
661 | PrintAndLog("--nested. sectors:%2d, block no:%3d, key type:%c, eml:%c, dmp=%c checktimeout=%d us", \r |
662 | SectorsCnt, blockNo, keyType?'B':'A', transferToEml?'y':'n', createDumpFile?'y':'n', ((int)btimeout14a * 10000) / 106);\r | |
adf023ff OM |
663 | }\r |
664 | \r | |
665 | // one-sector nested\r | |
666 | if (cmdp == 'o') { // ------------------------------------ one sector working\r | |
baeaf579 | 667 | PrintAndLog("--target block no:%3d, target key type:%c ", trgBlockNo, trgKeyType?'B':'A');\r |
dc8ba239 | 668 | int16_t isOK = mfnested(blockNo, keyType, key, trgBlockNo, trgKeyType, keyBlock, true);\r |
669 | if (isOK) {\r | |
670 | switch (isOK) {\r | |
671 | case -1 : PrintAndLog("Error: No response from Proxmark.\n"); break;\r | |
672 | case -2 : PrintAndLog("Button pressed. Aborted.\n"); break;\r | |
673 | case -3 : PrintAndLog("Tag isn't vulnerable to Nested Attack (random numbers are not predictable).\n"); break;\r | |
674 | default : PrintAndLog("Unknown Error.\n");\r | |
675 | }\r | |
9ca155ba M |
676 | return 2;\r |
677 | }\r | |
9492e0b0 | 678 | key64 = bytes_to_num(keyBlock, 6);\r |
679 | if (key64) {\r | |
43534cba | 680 | PrintAndLog("Found valid key:%012" PRIx64, key64);\r |
8556b852 M |
681 | \r |
682 | // transfer key to the emulator\r | |
683 | if (transferToEml) {\r | |
baeaf579 | 684 | uint8_t sectortrailer;\r |
685 | if (trgBlockNo < 32*4) { // 4 block sector\r | |
686 | sectortrailer = (trgBlockNo & 0x03) + 3;\r | |
687 | } else { // 16 block sector\r | |
688 | sectortrailer = (trgBlockNo & 0x0f) + 15;\r | |
689 | }\r | |
690 | mfEmlGetMem(keyBlock, sectortrailer, 1);\r | |
7906cb41 | 691 | \r |
8556b852 M |
692 | if (!trgKeyType)\r |
693 | num_to_bytes(key64, 6, keyBlock);\r | |
694 | else\r | |
695 | num_to_bytes(key64, 6, &keyBlock[10]);\r | |
7906cb41 | 696 | mfEmlSetMem(keyBlock, sectortrailer, 1);\r |
adf023ff | 697 | PrintAndLog("Key transferred to emulator memory.");\r |
8556b852 M |
698 | }\r |
699 | } else {\r | |
9ca155ba | 700 | PrintAndLog("No valid key found");\r |
8556b852 | 701 | }\r |
21156267 | 702 | }\r |
703 | else { // ------------------------------------ multiple sectors working\r | |
acf0582d | 704 | uint64_t msclock1;\r |
705 | msclock1 = msclock();\r | |
9492e0b0 | 706 | \r |
7cb8516c | 707 | e_sector = calloc(SectorsCnt, sizeof(sector_t));\r |
9ca155ba | 708 | if (e_sector == NULL) return 1;\r |
7906cb41 | 709 | \r |
baeaf579 | 710 | //test current key and additional standard keys first\r |
275d9e61 OM |
711 | for (int defaultKeyCounter = 0; defaultKeyCounter < MifareDefaultKeysSize; defaultKeyCounter++){\r |
712 | num_to_bytes(MifareDefaultKeys[defaultKeyCounter], 6, (uint8_t*)(keyBlock + defaultKeyCounter * 6));\r | |
713 | }\r | |
9ca155ba M |
714 | \r |
715 | PrintAndLog("Testing known keys. Sector count=%d", SectorsCnt);\r | |
e537c3e8 | 716 | mfCheckKeysSec(SectorsCnt, 2, btimeout14a, true, MifareDefaultKeysSize, keyBlock, e_sector);\r |
adf023ff OM |
717 | \r |
718 | // get known key from array\r | |
719 | bool keyFound = false;\r | |
720 | if (autosearchKey) {\r | |
721 | for (i = 0; i < SectorsCnt; i++) {\r | |
722 | for (j = 0; j < 2; j++) {\r | |
723 | if (e_sector[i].foundKey[j]) {\r | |
724 | // get known key\r | |
725 | blockNo = i * 4;\r | |
726 | keyType = j;\r | |
727 | num_to_bytes(e_sector[i].Key[j], 6, key);\r | |
728 | \r | |
729 | keyFound = true;\r | |
730 | break;\r | |
731 | }\r | |
732 | }\r | |
733 | if (keyFound) break;\r | |
734 | } \r | |
735 | \r | |
736 | // Can't found a key....\r | |
737 | if (!keyFound) {\r | |
738 | PrintAndLog("Can't found any of the known keys.");\r | |
739 | return 4;\r | |
740 | }\r | |
741 | PrintAndLog("--auto key. block no:%3d, key type:%c key:%s", blockNo, keyType?'B':'A', sprint_hex(key, 6));\r | |
742 | }\r | |
7906cb41 | 743 | \r |
9ca155ba M |
744 | // nested sectors\r |
745 | iterations = 0;\r | |
746 | PrintAndLog("nested...");\r | |
9492e0b0 | 747 | bool calibrate = true;\r |
9ca155ba | 748 | for (i = 0; i < NESTED_SECTOR_RETRY; i++) {\r |
baeaf579 | 749 | for (uint8_t sectorNo = 0; sectorNo < SectorsCnt; sectorNo++) {\r |
7906cb41 | 750 | for (trgKeyType = 0; trgKeyType < 2; trgKeyType++) {\r |
baeaf579 | 751 | if (e_sector[sectorNo].foundKey[trgKeyType]) continue;\r |
9492e0b0 | 752 | PrintAndLog("-----------------------------------------------");\r |
dc8ba239 | 753 | int16_t isOK = mfnested(blockNo, keyType, key, FirstBlockOfSector(sectorNo), trgKeyType, keyBlock, calibrate);\r |
754 | if(isOK) {\r | |
755 | switch (isOK) {\r | |
756 | case -1 : PrintAndLog("Error: No response from Proxmark.\n"); break;\r | |
757 | case -2 : PrintAndLog("Button pressed. Aborted.\n"); break;\r | |
758 | case -3 : PrintAndLog("Tag isn't vulnerable to Nested Attack (random numbers are not predictable).\n"); break;\r | |
759 | default : PrintAndLog("Unknown Error.\n");\r | |
760 | }\r | |
3fe4ff4f | 761 | free(e_sector);\r |
dc8ba239 | 762 | return 2;\r |
763 | } else {\r | |
9492e0b0 | 764 | calibrate = false;\r |
765 | }\r | |
7906cb41 | 766 | \r |
9ca155ba | 767 | iterations++;\r |
9492e0b0 | 768 | \r |
769 | key64 = bytes_to_num(keyBlock, 6);\r | |
770 | if (key64) {\r | |
43534cba | 771 | PrintAndLog("Found valid key:%012" PRIx64, key64);\r |
baeaf579 | 772 | e_sector[sectorNo].foundKey[trgKeyType] = 1;\r |
773 | e_sector[sectorNo].Key[trgKeyType] = key64;\r | |
275d9e61 OM |
774 | \r |
775 | // try to check this key as a key to the other sectors\r | |
0c86cb01 | 776 | mfCheckKeysSec(SectorsCnt, 2, btimeout14a, true, 1, keyBlock, e_sector);\r |
9ca155ba M |
777 | }\r |
778 | }\r | |
9492e0b0 | 779 | }\r |
9ca155ba M |
780 | }\r |
781 | \r | |
adf023ff OM |
782 | // print nested statistic\r |
783 | PrintAndLog("\n\n-----------------------------------------------\nNested statistic:\nIterations count: %d", iterations);\r | |
784 | PrintAndLog("Time in nested: %1.3f (%1.3f sec per key)", ((float)(msclock() - msclock1))/1000.0, ((float)(msclock() - msclock1))/iterations/1000.0);\r | |
785 | \r | |
adf023ff | 786 | // print result\r |
9ca155ba M |
787 | PrintAndLog("|---|----------------|---|----------------|---|");\r |
788 | PrintAndLog("|sec|key A |res|key B |res|");\r | |
789 | PrintAndLog("|---|----------------|---|----------------|---|");\r | |
790 | for (i = 0; i < SectorsCnt; i++) {\r | |
43534cba | 791 | PrintAndLog("|%03d| %012" PRIx64 " | %d | %012" PRIx64 " | %d |", i,\r |
9ca155ba M |
792 | e_sector[i].Key[0], e_sector[i].foundKey[0], e_sector[i].Key[1], e_sector[i].foundKey[1]);\r |
793 | }\r | |
794 | PrintAndLog("|---|----------------|---|----------------|---|");\r | |
7906cb41 | 795 | \r |
adf023ff | 796 | // transfer keys to the emulator memory\r |
8556b852 M |
797 | if (transferToEml) {\r |
798 | for (i = 0; i < SectorsCnt; i++) {\r | |
baeaf579 | 799 | mfEmlGetMem(keyBlock, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1);\r |
8556b852 | 800 | if (e_sector[i].foundKey[0])\r |
ab8b654e | 801 | num_to_bytes(e_sector[i].Key[0], 6, keyBlock);\r |
8556b852 M |
802 | if (e_sector[i].foundKey[1])\r |
803 | num_to_bytes(e_sector[i].Key[1], 6, &keyBlock[10]);\r | |
baeaf579 | 804 | mfEmlSetMem(keyBlock, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1);\r |
7906cb41 | 805 | }\r |
adf023ff | 806 | PrintAndLog("Keys transferred to emulator memory.");\r |
8556b852 | 807 | }\r |
7906cb41 | 808 | \r |
21156267 | 809 | // Create dump file\r |
26fdb4ab | 810 | if (createDumpFile) {\r |
7906cb41 | 811 | if ((fkeys = fopen("dumpkeys.bin","wb")) == NULL) {\r |
aea4d766 | 812 | PrintAndLog("Could not create file dumpkeys.bin");\r |
26fdb4ab | 813 | free(e_sector);\r |
814 | return 1;\r | |
815 | }\r | |
baeaf579 | 816 | PrintAndLog("Printing keys to binary file dumpkeys.bin...");\r |
817 | for(i=0; i<SectorsCnt; i++) {\r | |
21156267 | 818 | if (e_sector[i].foundKey[0]){\r |
819 | num_to_bytes(e_sector[i].Key[0], 6, tempkey);\r | |
820 | fwrite ( tempkey, 1, 6, fkeys );\r | |
821 | }\r | |
822 | else{\r | |
823 | fwrite ( &standart, 1, 6, fkeys );\r | |
824 | }\r | |
26fdb4ab | 825 | }\r |
baeaf579 | 826 | for(i=0; i<SectorsCnt; i++) {\r |
21156267 | 827 | if (e_sector[i].foundKey[1]){\r |
828 | num_to_bytes(e_sector[i].Key[1], 6, tempkey);\r | |
829 | fwrite ( tempkey, 1, 6, fkeys );\r | |
830 | }\r | |
831 | else{\r | |
832 | fwrite ( &standart, 1, 6, fkeys );\r | |
833 | }\r | |
26fdb4ab | 834 | }\r |
835 | fclose(fkeys);\r | |
836 | }\r | |
7906cb41 | 837 | \r |
9ca155ba M |
838 | free(e_sector);\r |
839 | }\r | |
9ca155ba M |
840 | return 0;\r |
841 | }\r | |
842 | \r | |
c48c4d78 | 843 | \r |
844 | int CmdHF14AMfNestedHard(const char *Cmd)\r | |
845 | {\r | |
846 | uint8_t blockNo = 0;\r | |
847 | uint8_t keyType = 0;\r | |
848 | uint8_t trgBlockNo = 0;\r | |
849 | uint8_t trgKeyType = 0;\r | |
850 | uint8_t key[6] = {0, 0, 0, 0, 0, 0};\r | |
851 | uint8_t trgkey[6] = {0, 0, 0, 0, 0, 0};\r | |
7906cb41 | 852 | \r |
c48c4d78 | 853 | char ctmp;\r |
854 | ctmp = param_getchar(Cmd, 0);\r | |
855 | \r | |
856 | if (ctmp != 'R' && ctmp != 'r' && ctmp != 'T' && ctmp != 't' && strlen(Cmd) < 20) {\r | |
857 | PrintAndLog("Usage:");\r | |
858 | PrintAndLog(" hf mf hardnested <block number> <key A|B> <key (12 hex symbols)>");\r | |
859 | PrintAndLog(" <target block number> <target key A|B> [known target key (12 hex symbols)] [w] [s]");\r | |
860 | PrintAndLog(" or hf mf hardnested r [known target key]");\r | |
861 | PrintAndLog(" ");\r | |
862 | PrintAndLog("Options: ");\r | |
863 | PrintAndLog(" w: Acquire nonces and write them to binary file nonces.bin");\r | |
864 | PrintAndLog(" s: Slower acquisition (required by some non standard cards)");\r | |
865 | PrintAndLog(" r: Read nonces.bin and start attack");\r | |
362d2039 | 866 | PrintAndLog(" iX: set type of SIMD instructions. Without this flag programs autodetect it.");\r |
867 | PrintAndLog(" i5: AVX512");\r | |
868 | PrintAndLog(" i2: AVX2");\r | |
869 | PrintAndLog(" ia: AVX");\r | |
870 | PrintAndLog(" is: SSE2");\r | |
871 | PrintAndLog(" im: MMX");\r | |
872 | PrintAndLog(" in: none (use CPU regular instruction set)");\r | |
c48c4d78 | 873 | PrintAndLog(" ");\r |
874 | PrintAndLog(" sample1: hf mf hardnested 0 A FFFFFFFFFFFF 4 A");\r | |
875 | PrintAndLog(" sample2: hf mf hardnested 0 A FFFFFFFFFFFF 4 A w");\r | |
876 | PrintAndLog(" sample3: hf mf hardnested 0 A FFFFFFFFFFFF 4 A w s");\r | |
877 | PrintAndLog(" sample4: hf mf hardnested r");\r | |
878 | PrintAndLog(" ");\r | |
879 | PrintAndLog("Add the known target key to check if it is present in the remaining key space:");\r | |
880 | PrintAndLog(" sample5: hf mf hardnested 0 A A0A1A2A3A4A5 4 A FFFFFFFFFFFF");\r | |
881 | return 0;\r | |
7906cb41 F |
882 | }\r |
883 | \r | |
c48c4d78 | 884 | bool know_target_key = false;\r |
885 | bool nonce_file_read = false;\r | |
886 | bool nonce_file_write = false;\r | |
887 | bool slow = false;\r | |
888 | int tests = 0;\r | |
7906cb41 F |
889 | \r |
890 | \r | |
362d2039 | 891 | uint16_t iindx = 0;\r |
c48c4d78 | 892 | if (ctmp == 'R' || ctmp == 'r') {\r |
893 | nonce_file_read = true;\r | |
362d2039 | 894 | iindx = 1;\r |
c48c4d78 | 895 | if (!param_gethex(Cmd, 1, trgkey, 12)) {\r |
896 | know_target_key = true;\r | |
362d2039 | 897 | iindx = 2;\r |
c48c4d78 | 898 | }\r |
899 | } else if (ctmp == 'T' || ctmp == 't') {\r | |
900 | tests = param_get32ex(Cmd, 1, 100, 10);\r | |
362d2039 | 901 | iindx = 2;\r |
c48c4d78 | 902 | if (!param_gethex(Cmd, 2, trgkey, 12)) {\r |
903 | know_target_key = true;\r | |
362d2039 | 904 | iindx = 3;\r |
c48c4d78 | 905 | }\r |
906 | } else {\r | |
907 | blockNo = param_get8(Cmd, 0);\r | |
908 | ctmp = param_getchar(Cmd, 1);\r | |
909 | if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r | |
910 | PrintAndLog("Key type must be A or B");\r | |
911 | return 1;\r | |
912 | }\r | |
7906cb41 | 913 | if (ctmp != 'A' && ctmp != 'a') {\r |
c48c4d78 | 914 | keyType = 1;\r |
915 | }\r | |
7906cb41 | 916 | \r |
c48c4d78 | 917 | if (param_gethex(Cmd, 2, key, 12)) {\r |
918 | PrintAndLog("Key must include 12 HEX symbols");\r | |
919 | return 1;\r | |
920 | }\r | |
7906cb41 | 921 | \r |
c48c4d78 | 922 | trgBlockNo = param_get8(Cmd, 3);\r |
923 | ctmp = param_getchar(Cmd, 4);\r | |
924 | if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r | |
925 | PrintAndLog("Target key type must be A or B");\r | |
926 | return 1;\r | |
927 | }\r | |
928 | if (ctmp != 'A' && ctmp != 'a') {\r | |
929 | trgKeyType = 1;\r | |
930 | }\r | |
931 | \r | |
932 | uint16_t i = 5;\r | |
933 | \r | |
934 | if (!param_gethex(Cmd, 5, trgkey, 12)) {\r | |
935 | know_target_key = true;\r | |
936 | i++;\r | |
937 | }\r | |
362d2039 | 938 | iindx = i;\r |
c48c4d78 | 939 | \r |
940 | while ((ctmp = param_getchar(Cmd, i))) {\r | |
941 | if (ctmp == 's' || ctmp == 'S') {\r | |
942 | slow = true;\r | |
943 | } else if (ctmp == 'w' || ctmp == 'W') {\r | |
944 | nonce_file_write = true;\r | |
362d2039 | 945 | } else if (param_getlength(Cmd, i) == 2 && ctmp == 'i') {\r |
946 | iindx = i;\r | |
c48c4d78 | 947 | } else {\r |
362d2039 | 948 | PrintAndLog("Possible options are w , s and/or iX");\r |
c48c4d78 | 949 | return 1;\r |
950 | }\r | |
951 | i++;\r | |
952 | }\r | |
953 | }\r | |
362d2039 | 954 | \r |
955 | SetSIMDInstr(SIMD_AUTO);\r | |
956 | if (iindx > 0) {\r | |
957 | while ((ctmp = param_getchar(Cmd, iindx))) {\r | |
958 | if (param_getlength(Cmd, iindx) == 2 && ctmp == 'i') {\r | |
959 | switch(param_getchar_indx(Cmd, 1, iindx)) {\r | |
960 | case '5':\r | |
961 | SetSIMDInstr(SIMD_AVX512);\r | |
962 | break;\r | |
963 | case '2':\r | |
964 | SetSIMDInstr(SIMD_AVX2);\r | |
965 | break;\r | |
966 | case 'a':\r | |
967 | SetSIMDInstr(SIMD_AVX);\r | |
968 | break;\r | |
969 | case 's':\r | |
970 | SetSIMDInstr(SIMD_SSE2);\r | |
971 | break;\r | |
972 | case 'm':\r | |
973 | SetSIMDInstr(SIMD_MMX);\r | |
974 | break;\r | |
975 | case 'n':\r | |
976 | SetSIMDInstr(SIMD_NONE);\r | |
977 | break;\r | |
978 | default:\r | |
979 | PrintAndLog("Unknown SIMD type. %c", param_getchar_indx(Cmd, 1, iindx));\r | |
980 | return 1;\r | |
981 | }\r | |
982 | }\r | |
983 | iindx++;\r | |
984 | } \r | |
985 | }\r | |
c48c4d78 | 986 | \r |
7906cb41 F |
987 | PrintAndLog("--target block no:%3d, target key type:%c, known target key: 0x%02x%02x%02x%02x%02x%02x%s, file action: %s, Slow: %s, Tests: %d ",\r |
988 | trgBlockNo,\r | |
c48c4d78 | 989 | trgKeyType?'B':'A',\r |
990 | trgkey[0], trgkey[1], trgkey[2], trgkey[3], trgkey[4], trgkey[5],\r | |
991 | know_target_key?"":" (not set)",\r | |
992 | nonce_file_write?"write":nonce_file_read?"read":"none",\r | |
993 | slow?"Yes":"No",\r | |
994 | tests);\r | |
995 | \r | |
996 | int16_t isOK = mfnestedhard(blockNo, keyType, key, trgBlockNo, trgKeyType, know_target_key?trgkey:NULL, nonce_file_read, nonce_file_write, slow, tests);\r | |
997 | \r | |
998 | if (isOK) {\r | |
999 | switch (isOK) {\r | |
1000 | case 1 : PrintAndLog("Error: No response from Proxmark.\n"); break;\r | |
1001 | case 2 : PrintAndLog("Button pressed. Aborted.\n"); break;\r | |
1002 | default : break;\r | |
1003 | }\r | |
1004 | return 2;\r | |
1005 | }\r | |
1006 | \r | |
1007 | return 0;\r | |
1008 | }\r | |
1009 | \r | |
1010 | \r | |
9ca155ba M |
1011 | int CmdHF14AMfChk(const char *Cmd)\r |
1012 | {\r | |
90e278d3 | 1013 | if (strlen(Cmd)<3) {\r |
275d9e61 | 1014 | PrintAndLog("Usage: hf mf chk <block number>|<*card memory> <key type (A/B/?)> [t|d|s|ss] [<key (12 hex symbols)>] [<dic (*.dic)>]");\r |
90e278d3 MHS |
1015 | PrintAndLog(" * - all sectors");\r |
1016 | PrintAndLog("card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K");\r | |
1017 | PrintAndLog("d - write keys to binary file\n");\r | |
e3c23565 | 1018 | PrintAndLog("t - write keys to emulator memory");\r |
275d9e61 OM |
1019 | PrintAndLog("s - slow execute. timeout 1ms");\r |
1020 | PrintAndLog("ss- very slow execute. timeout 5ms");\r | |
90e278d3 MHS |
1021 | PrintAndLog(" sample: hf mf chk 0 A 1234567890ab keys.dic");\r |
1022 | PrintAndLog(" hf mf chk *1 ? t");\r | |
e3c23565 | 1023 | PrintAndLog(" hf mf chk *1 ? d");\r |
275d9e61 OM |
1024 | PrintAndLog(" hf mf chk *1 ? s");\r |
1025 | PrintAndLog(" hf mf chk *1 ? dss");\r | |
90e278d3 | 1026 | return 0;\r |
7906cb41 | 1027 | }\r |
90e278d3 | 1028 | \r |
aea4d766 | 1029 | FILE * f;\r |
b915fda3 | 1030 | char filename[FILE_PATH_SIZE]={0};\r |
83613803 | 1031 | char buf[13];\r |
aea4d766 | 1032 | uint8_t *keyBlock = NULL, *p;\r |
1e11e5d7 | 1033 | uint16_t stKeyBlock = 20;\r |
7906cb41 | 1034 | \r |
9ca155ba M |
1035 | int i, res;\r |
1036 | int keycnt = 0;\r | |
1037 | char ctmp = 0x00;\r | |
275d9e61 | 1038 | char ctmp3[3] = {0x00};\r |
9ca155ba | 1039 | uint8_t blockNo = 0;\r |
275d9e61 | 1040 | uint8_t SectorsCnt = 0;\r |
9ca155ba | 1041 | uint8_t keyType = 0;\r |
9ca155ba | 1042 | uint64_t key64 = 0;\r |
275d9e61 OM |
1043 | uint32_t timeout14a = 0; // timeout in us\r |
1044 | bool param3InUse = false;\r | |
7906cb41 | 1045 | \r |
aea4d766 | 1046 | int transferToEml = 0;\r |
1047 | int createDumpFile = 0;\r | |
275d9e61 OM |
1048 | \r |
1049 | sector_t *e_sector = NULL;\r | |
9ca155ba | 1050 | \r |
aea4d766 | 1051 | keyBlock = calloc(stKeyBlock, 6);\r |
1052 | if (keyBlock == NULL) return 1;\r | |
1053 | \r | |
275d9e61 OM |
1054 | int defaultKeysSize = MifareDefaultKeysSize;\r |
1055 | for (int defaultKeyCounter = 0; defaultKeyCounter < defaultKeysSize; defaultKeyCounter++){\r | |
1056 | num_to_bytes(MifareDefaultKeys[defaultKeyCounter], 6, (uint8_t*)(keyBlock + defaultKeyCounter * 6));\r | |
0c12504a | 1057 | }\r |
7906cb41 | 1058 | \r |
aea4d766 | 1059 | if (param_getchar(Cmd, 0)=='*') {\r |
adf023ff | 1060 | SectorsCnt = ParamCardSizeSectors(param_getchar(Cmd + 1, 0));\r |
aea4d766 | 1061 | }\r |
1062 | else\r | |
1063 | blockNo = param_get8(Cmd, 0);\r | |
7906cb41 | 1064 | \r |
9ca155ba | 1065 | ctmp = param_getchar(Cmd, 1);\r |
7906cb41 | 1066 | switch (ctmp) {\r |
aea4d766 | 1067 | case 'a': case 'A':\r |
275d9e61 | 1068 | keyType = 0;\r |
aea4d766 | 1069 | break;\r |
1070 | case 'b': case 'B':\r | |
275d9e61 | 1071 | keyType = 1;\r |
aea4d766 | 1072 | break;\r |
1073 | case '?':\r | |
1074 | keyType = 2;\r | |
1075 | break;\r | |
1076 | default:\r | |
1077 | PrintAndLog("Key type must be A , B or ?");\r | |
e57c8b2e | 1078 | free(keyBlock);\r |
9ca155ba | 1079 | return 1;\r |
aea4d766 | 1080 | };\r |
7906cb41 | 1081 | \r |
275d9e61 | 1082 | // transfer to emulator & create dump file\r |
aea4d766 | 1083 | ctmp = param_getchar(Cmd, 2);\r |
275d9e61 OM |
1084 | if (ctmp == 't' || ctmp == 'T') transferToEml = 1;\r |
1085 | if (ctmp == 'd' || ctmp == 'D') createDumpFile = 1;\r | |
1086 | \r | |
1087 | param3InUse = transferToEml | createDumpFile;\r | |
1088 | \r | |
1089 | timeout14a = 500; // fast by default\r | |
1090 | // double parameters - ts, ds\r | |
1091 | int clen = param_getlength(Cmd, 2);\r | |
1092 | if (clen == 2 || clen == 3){\r | |
874572d4 | 1093 | param_getstr(Cmd, 2, ctmp3, sizeof(ctmp3));\r |
275d9e61 OM |
1094 | ctmp = ctmp3[1];\r |
1095 | }\r | |
1096 | //parse\r | |
1097 | if (ctmp == 's' || ctmp == 'S') {\r | |
1098 | timeout14a = 1000; // slow\r | |
1099 | if (!param3InUse && clen == 2 && (ctmp3[1] == 's' || ctmp3[1] == 'S')) {\r | |
1100 | timeout14a = 5000; // very slow\r | |
1101 | }\r | |
1102 | if (param3InUse && clen == 3 && (ctmp3[2] == 's' || ctmp3[2] == 'S')) {\r | |
1103 | timeout14a = 5000; // very slow\r | |
1104 | }\r | |
1105 | param3InUse = true;\r | |
1106 | }\r | |
7906cb41 | 1107 | \r |
275d9e61 | 1108 | for (i = param3InUse; param_getchar(Cmd, 2 + i); i++) {\r |
aea4d766 | 1109 | if (!param_gethex(Cmd, 2 + i, keyBlock + 6 * keycnt, 12)) {\r |
1110 | if ( stKeyBlock - keycnt < 2) {\r | |
1111 | p = realloc(keyBlock, 6*(stKeyBlock+=10));\r | |
1112 | if (!p) {\r | |
1113 | PrintAndLog("Cannot allocate memory for Keys");\r | |
1114 | free(keyBlock);\r | |
1115 | return 2;\r | |
1116 | }\r | |
1117 | keyBlock = p;\r | |
1118 | }\r | |
baeaf579 | 1119 | PrintAndLog("chk key[%2d] %02x%02x%02x%02x%02x%02x", keycnt,\r |
aea4d766 | 1120 | (keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],\r |
1121 | (keyBlock + 6*keycnt)[3], (keyBlock + 6*keycnt)[4], (keyBlock + 6*keycnt)[5], 6);\r | |
1122 | keycnt++;\r | |
1123 | } else {\r | |
1124 | // May be a dic file\r | |
874572d4 | 1125 | if ( param_getstr(Cmd, 2 + i, filename, sizeof(filename)) >= FILE_PATH_SIZE ) {\r |
aea4d766 | 1126 | PrintAndLog("File name too long");\r |
1127 | free(keyBlock);\r | |
1128 | return 2;\r | |
1129 | }\r | |
7906cb41 | 1130 | \r |
aea4d766 | 1131 | if ( (f = fopen( filename , "r")) ) {\r |
0c12504a | 1132 | while( fgets(buf, sizeof(buf), f) ){\r |
99a71a0d | 1133 | if (strlen(buf) < 12 || buf[11] == '\n')\r |
1134 | continue;\r | |
7906cb41 | 1135 | \r |
99a71a0d | 1136 | while (fgetc(f) != '\n' && !feof(f)) ; //goto next line\r |
7906cb41 | 1137 | \r |
9492e0b0 | 1138 | if( buf[0]=='#' ) continue; //The line start with # is comment, skip\r |
9ca155ba | 1139 | \r |
99a71a0d | 1140 | if (!isxdigit(buf[0])){\r |
1141 | PrintAndLog("File content error. '%s' must include 12 HEX symbols",buf);\r | |
aea4d766 | 1142 | continue;\r |
1143 | }\r | |
7906cb41 | 1144 | \r |
99a71a0d | 1145 | buf[12] = 0;\r |
aea4d766 | 1146 | \r |
1147 | if ( stKeyBlock - keycnt < 2) {\r | |
1148 | p = realloc(keyBlock, 6*(stKeyBlock+=10));\r | |
1149 | if (!p) {\r | |
1150 | PrintAndLog("Cannot allocate memory for defKeys");\r | |
1151 | free(keyBlock);\r | |
4c16ae80 | 1152 | fclose(f);\r |
aea4d766 | 1153 | return 2;\r |
1154 | }\r | |
1155 | keyBlock = p;\r | |
1156 | }\r | |
1157 | memset(keyBlock + 6 * keycnt, 0, 6);\r | |
99a71a0d | 1158 | num_to_bytes(strtoll(buf, NULL, 16), 6, keyBlock + 6*keycnt);\r |
43534cba | 1159 | PrintAndLog("chk custom key[%2d] %012" PRIx64 , keycnt, bytes_to_num(keyBlock + 6*keycnt, 6));\r |
aea4d766 | 1160 | keycnt++;\r |
0c12504a | 1161 | memset(buf, 0, sizeof(buf));\r |
aea4d766 | 1162 | }\r |
90e278d3 | 1163 | fclose(f);\r |
aea4d766 | 1164 | } else {\r |
1165 | PrintAndLog("File: %s: not found or locked.", filename);\r | |
1166 | free(keyBlock);\r | |
1167 | return 1;\r | |
7906cb41 | 1168 | \r |
aea4d766 | 1169 | }\r |
9ca155ba | 1170 | }\r |
9ca155ba | 1171 | }\r |
7906cb41 | 1172 | \r |
275d9e61 | 1173 | // fill with default keys\r |
9ca155ba | 1174 | if (keycnt == 0) {\r |
baeaf579 | 1175 | PrintAndLog("No key specified, trying default keys");\r |
0c12504a | 1176 | for (;keycnt < defaultKeysSize; keycnt++)\r |
baeaf579 | 1177 | PrintAndLog("chk default key[%2d] %02x%02x%02x%02x%02x%02x", keycnt,\r |
79db03ef | 1178 | (keyBlock + 6*keycnt)[0],(keyBlock + 6*keycnt)[1], (keyBlock + 6*keycnt)[2],\r |
1179 | (keyBlock + 6*keycnt)[3], (keyBlock + 6*keycnt)[4], (keyBlock + 6*keycnt)[5], 6);\r | |
1180 | }\r | |
7906cb41 | 1181 | \r |
79db03ef | 1182 | // initialize storage for found keys\r |
275d9e61 OM |
1183 | e_sector = calloc(SectorsCnt, sizeof(sector_t));\r |
1184 | if (e_sector == NULL) return 1;\r | |
1185 | for (uint8_t keyAB = 0; keyAB < 2; keyAB++) {\r | |
79db03ef | 1186 | for (uint16_t sectorNo = 0; sectorNo < SectorsCnt; sectorNo++) {\r |
275d9e61 OM |
1187 | e_sector[sectorNo].Key[keyAB] = 0xffffffffffff;\r |
1188 | e_sector[sectorNo].foundKey[keyAB] = 0;\r | |
79db03ef | 1189 | }\r |
9ca155ba | 1190 | }\r |
275d9e61 OM |
1191 | printf("\n");\r |
1192 | \r | |
1193 | bool foundAKey = false;\r | |
1194 | uint32_t max_keys = keycnt > USB_CMD_DATA_SIZE / 6 ? USB_CMD_DATA_SIZE / 6 : keycnt;\r | |
1195 | if (SectorsCnt) {\r | |
1196 | PrintAndLog("To cancel this operation press the button on the proxmark...");\r | |
1197 | printf("--");\r | |
1198 | for (uint32_t c = 0; c < keycnt; c += max_keys) {\r | |
1199 | \r | |
1200 | uint32_t size = keycnt-c > max_keys ? max_keys : keycnt-c;\r | |
1201 | res = mfCheckKeysSec(SectorsCnt, keyType, timeout14a * 1.06 / 100, true, size, &keyBlock[6 * c], e_sector); // timeout is (ms * 106)/10 or us*0.0106\r | |
7906cb41 | 1202 | \r |
275d9e61 OM |
1203 | if (res != 1) {\r |
1204 | if (!res) {\r | |
1205 | printf("o");\r | |
1206 | foundAKey = true;\r | |
1207 | } else {\r | |
1208 | printf(".");\r | |
1209 | }\r | |
1210 | } else {\r | |
1211 | printf("\n");\r | |
1212 | PrintAndLog("Command execute timeout");\r | |
1213 | }\r | |
1214 | }\r | |
1215 | } else {\r | |
1216 | int keyAB = keyType;\r | |
1217 | do {\r | |
9492e0b0 | 1218 | for (uint32_t c = 0; c < keycnt; c+=max_keys) {\r |
275d9e61 OM |
1219 | \r |
1220 | uint32_t size = keycnt-c > max_keys ? max_keys : keycnt-c;\r | |
1221 | res = mfCheckKeys(blockNo, keyAB & 0x01, true, size, &keyBlock[6 * c], &key64); \r | |
1222 | \r | |
baeaf579 | 1223 | if (res != 1) {\r |
aea4d766 | 1224 | if (!res) {\r |
275d9e61 OM |
1225 | PrintAndLog("Found valid key:[%d:%c]%012" PRIx64, blockNo, (keyAB & 0x01)?'B':'A', key64);\r |
1226 | foundAKey = true;\r | |
7906cb41 | 1227 | }\r |
aea4d766 | 1228 | } else {\r |
1229 | PrintAndLog("Command execute timeout");\r | |
1230 | }\r | |
1231 | }\r | |
275d9e61 | 1232 | } while(--keyAB > 0);\r |
9ca155ba | 1233 | }\r |
275d9e61 OM |
1234 | \r |
1235 | // print result\r | |
1236 | if (foundAKey) {\r | |
1237 | if (SectorsCnt) {\r | |
1238 | PrintAndLog("");\r | |
1239 | PrintAndLog("|---|----------------|---|----------------|---|");\r | |
1240 | PrintAndLog("|sec|key A |res|key B |res|");\r | |
1241 | PrintAndLog("|---|----------------|---|----------------|---|");\r | |
1242 | for (i = 0; i < SectorsCnt; i++) {\r | |
1243 | PrintAndLog("|%03d| %012" PRIx64 " | %d | %012" PRIx64 " | %d |", i,\r | |
1244 | e_sector[i].Key[0], e_sector[i].foundKey[0], e_sector[i].Key[1], e_sector[i].foundKey[1]);\r | |
1245 | }\r | |
1246 | PrintAndLog("|---|----------------|---|----------------|---|");\r | |
1247 | }\r | |
1248 | } else {\r | |
1249 | PrintAndLog("");\r | |
1250 | PrintAndLog("No valid keys found.");\r | |
1251 | } \r | |
1252 | \r | |
79db03ef | 1253 | if (transferToEml) {\r |
1254 | uint8_t block[16];\r | |
1255 | for (uint16_t sectorNo = 0; sectorNo < SectorsCnt; sectorNo++) {\r | |
275d9e61 | 1256 | if (e_sector[sectorNo].foundKey[0] || e_sector[sectorNo].foundKey[1]) {\r |
79db03ef | 1257 | mfEmlGetMem(block, FirstBlockOfSector(sectorNo) + NumBlocksPerSector(sectorNo) - 1, 1);\r |
1258 | for (uint16_t t = 0; t < 2; t++) {\r | |
275d9e61 OM |
1259 | if (e_sector[sectorNo].foundKey[t]) {\r |
1260 | num_to_bytes(e_sector[sectorNo].Key[t], 6, block + t * 10);\r | |
79db03ef | 1261 | }\r |
1262 | }\r | |
1263 | mfEmlSetMem(block, FirstBlockOfSector(sectorNo) + NumBlocksPerSector(sectorNo) - 1, 1);\r | |
1264 | }\r | |
1265 | }\r | |
1266 | PrintAndLog("Found keys have been transferred to the emulator memory");\r | |
1267 | }\r | |
1268 | \r | |
aea4d766 | 1269 | if (createDumpFile) {\r |
79db03ef | 1270 | FILE *fkeys = fopen("dumpkeys.bin","wb");\r |
7906cb41 | 1271 | if (fkeys == NULL) {\r |
aea4d766 | 1272 | PrintAndLog("Could not create file dumpkeys.bin");\r |
275d9e61 | 1273 | free(e_sector);\r |
79db03ef | 1274 | free(keyBlock);\r |
aea4d766 | 1275 | return 1;\r |
1276 | }\r | |
275d9e61 OM |
1277 | uint8_t mkey[6];\r |
1278 | for (uint8_t t = 0; t < 2; t++) {\r | |
1279 | for (uint8_t sectorNo = 0; sectorNo < SectorsCnt; sectorNo++) {\r | |
1280 | num_to_bytes(e_sector[sectorNo].Key[t], 6, mkey);\r | |
1281 | fwrite(mkey, 1, 6, fkeys);\r | |
1282 | }\r | |
aea4d766 | 1283 | }\r |
1284 | fclose(fkeys);\r | |
79db03ef | 1285 | PrintAndLog("Found keys have been dumped to file dumpkeys.bin. 0xffffffffffff has been inserted for unknown keys.");\r |
aea4d766 | 1286 | }\r |
79db03ef | 1287 | \r |
275d9e61 | 1288 | free(e_sector);\r |
79db03ef | 1289 | free(keyBlock);\r |
3fe4ff4f | 1290 | PrintAndLog("");\r |
79db03ef | 1291 | return 0;\r |
9ca155ba M |
1292 | }\r |
1293 | \r | |
5b5489ba | 1294 | void readerAttack(nonces_t ar_resp[], bool setEmulatorMem, bool doStandardAttack) {\r |
3d542a3d | 1295 | #define ATTACK_KEY_COUNT 7 // keep same as define in iso14443a.c -> Mifare1ksim()\r |
1296 | // cannot be more than 7 or it will overrun c.d.asBytes(512)\r | |
bbd11876 | 1297 | uint64_t key = 0;\r |
1298 | typedef struct {\r | |
1299 | uint64_t keyA;\r | |
bbd11876 | 1300 | uint64_t keyB;\r |
1301 | } st_t;\r | |
1302 | st_t sector_trailer[ATTACK_KEY_COUNT];\r | |
1303 | memset(sector_trailer, 0x00, sizeof(sector_trailer));\r | |
1304 | \r | |
1305 | uint8_t stSector[ATTACK_KEY_COUNT];\r | |
1306 | memset(stSector, 0x00, sizeof(stSector));\r | |
1307 | uint8_t key_cnt[ATTACK_KEY_COUNT];\r | |
1308 | memset(key_cnt, 0x00, sizeof(key_cnt));\r | |
1309 | \r | |
1310 | for (uint8_t i = 0; i<ATTACK_KEY_COUNT; i++) {\r | |
1311 | if (ar_resp[i].ar2 > 0) {\r | |
76ef5273 | 1312 | //PrintAndLog("DEBUG: Trying sector %d, cuid %08x, nt %08x, ar %08x, nr %08x, ar2 %08x, nr2 %08x",ar_resp[i].sector, ar_resp[i].cuid,ar_resp[i].nonce,ar_resp[i].ar,ar_resp[i].nr,ar_resp[i].ar2,ar_resp[i].nr2);\r |
5b5489ba | 1313 | if (doStandardAttack && mfkey32(ar_resp[i], &key)) {\r |
76ef5273 | 1314 | PrintAndLog(" Found Key%s for sector %02d: [%04x%08x]", (ar_resp[i].keytype) ? "B" : "A", ar_resp[i].sector, (uint32_t) (key>>32), (uint32_t) (key &0xFFFFFFFF));\r |
bbd11876 | 1315 | \r |
1316 | for (uint8_t ii = 0; ii<ATTACK_KEY_COUNT; ii++) {\r | |
1317 | if (key_cnt[ii]==0 || stSector[ii]==ar_resp[i].sector) {\r | |
1318 | if (ar_resp[i].keytype==0) {\r | |
1319 | //keyA\r | |
1320 | sector_trailer[ii].keyA = key;\r | |
1321 | stSector[ii] = ar_resp[i].sector;\r | |
1322 | key_cnt[ii]++;\r | |
1323 | break;\r | |
1324 | } else {\r | |
1325 | //keyB\r | |
1326 | sector_trailer[ii].keyB = key;\r | |
1327 | stSector[ii] = ar_resp[i].sector;\r | |
1328 | key_cnt[ii]++;\r | |
1329 | break;\r | |
1330 | }\r | |
1331 | }\r | |
1332 | }\r | |
7779d73c | 1333 | } else if (mfkey32_moebius(ar_resp[i+ATTACK_KEY_COUNT], &key)) {\r |
5b5489ba MF |
1334 | uint8_t sectorNum = ar_resp[i+ATTACK_KEY_COUNT].sector;\r |
1335 | uint8_t keyType = ar_resp[i+ATTACK_KEY_COUNT].keytype;\r | |
1336 | \r | |
43534cba | 1337 | PrintAndLog("M-Found Key%s for sector %02d: [%012" PRIx64 "]"\r |
5b5489ba MF |
1338 | , keyType ? "B" : "A"\r |
1339 | , sectorNum\r | |
1340 | , key\r | |
1341 | );\r | |
1342 | \r | |
1343 | for (uint8_t ii = 0; ii<ATTACK_KEY_COUNT; ii++) {\r | |
1344 | if (key_cnt[ii]==0 || stSector[ii]==sectorNum) {\r | |
1345 | if (keyType==0) {\r | |
1346 | //keyA\r | |
1347 | sector_trailer[ii].keyA = key;\r | |
1348 | stSector[ii] = sectorNum;\r | |
1349 | key_cnt[ii]++;\r | |
1350 | break;\r | |
1351 | } else {\r | |
1352 | //keyB\r | |
1353 | sector_trailer[ii].keyB = key;\r | |
1354 | stSector[ii] = sectorNum;\r | |
1355 | key_cnt[ii]++;\r | |
1356 | break;\r | |
1357 | }\r | |
1358 | }\r | |
1359 | }\r | |
1360 | continue;\r | |
bbd11876 | 1361 | }\r |
1362 | }\r | |
1363 | }\r | |
1364 | //set emulator memory for keys\r | |
1365 | if (setEmulatorMem) {\r | |
1366 | for (uint8_t i = 0; i<ATTACK_KEY_COUNT; i++) {\r | |
1367 | if (key_cnt[i]>0) {\r | |
bbd11876 | 1368 | uint8_t memBlock[16];\r |
1369 | memset(memBlock, 0x00, sizeof(memBlock));\r | |
1370 | char cmd1[36];\r | |
1371 | memset(cmd1,0x00,sizeof(cmd1));\r | |
1372 | snprintf(cmd1,sizeof(cmd1),"%04x%08xFF078069%04x%08x",(uint32_t) (sector_trailer[i].keyA>>32), (uint32_t) (sector_trailer[i].keyA &0xFFFFFFFF),(uint32_t) (sector_trailer[i].keyB>>32), (uint32_t) (sector_trailer[i].keyB &0xFFFFFFFF));\r | |
1373 | PrintAndLog("Setting Emulator Memory Block %02d: [%s]",stSector[i]*4+3, cmd1);\r | |
1374 | if (param_gethex(cmd1, 0, memBlock, 32)) {\r | |
1375 | PrintAndLog("block data must include 32 HEX symbols");\r | |
1376 | return;\r | |
1377 | }\r | |
7906cb41 | 1378 | \r |
bbd11876 | 1379 | UsbCommand c = {CMD_MIFARE_EML_MEMSET, {(stSector[i]*4+3), 1, 0}};\r |
1380 | memcpy(c.d.asBytes, memBlock, 16);\r | |
1381 | clearCommandBuffer();\r | |
7906cb41 | 1382 | SendCommand(&c);\r |
bbd11876 | 1383 | }\r |
1384 | }\r | |
1385 | }\r | |
ef3f88bc | 1386 | /*\r |
1387 | //un-comment to use as well moebius attack\r | |
bbd11876 | 1388 | for (uint8_t i = ATTACK_KEY_COUNT; i<ATTACK_KEY_COUNT*2; i++) {\r |
1389 | if (ar_resp[i].ar2 > 0) {\r | |
1390 | if (tryMfk32_moebius(ar_resp[i], &key)) {\r | |
1391 | PrintAndLog("M-Found Key%s for sector %02d: [%04x%08x]", (ar_resp[i].keytype) ? "B" : "A", ar_resp[i].sector, (uint32_t) (key>>32), (uint32_t) (key &0xFFFFFFFF));\r | |
1392 | }\r | |
1393 | }\r | |
ef3f88bc | 1394 | }*/\r |
bbd11876 | 1395 | }\r |
1396 | \r | |
1397 | int usage_hf14_mf1ksim(void) {\r | |
76ef5273 | 1398 | PrintAndLog("Usage: hf mf sim h u <uid (8, 14, or 20 hex symbols)> n <numreads> i x");\r |
c872d8c1 | 1399 | PrintAndLog("options:");\r |
1400 | PrintAndLog(" h this help");\r | |
76ef5273 | 1401 | PrintAndLog(" u (Optional) UID 4,7 or 10 bytes. If not specified, the UID 4B from emulator memory will be used");\r |
c872d8c1 | 1402 | PrintAndLog(" n (Optional) Automatically exit simulation after <numreads> blocks have been read by reader. 0 = infinite");\r |
1403 | PrintAndLog(" i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted");\r | |
1404 | PrintAndLog(" x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)");\r | |
76ef5273 | 1405 | PrintAndLog(" e (Optional) set keys found from 'reader attack' to emulator memory (implies x and i)");\r |
73ab92d1 | 1406 | PrintAndLog(" f (Optional) get UIDs to use for 'reader attack' from file 'f <filename.txt>' (implies x and i)");\r |
5b5489ba | 1407 | PrintAndLog(" r (Optional) Generate random nonces instead of sequential nonces. Standard reader attack won't work with this option, only moebius attack works.");\r |
c872d8c1 | 1408 | PrintAndLog("samples:");\r |
1409 | PrintAndLog(" hf mf sim u 0a0a0a0a");\r | |
1410 | PrintAndLog(" hf mf sim u 11223344556677");\r | |
76ef5273 | 1411 | PrintAndLog(" hf mf sim u 112233445566778899AA");\r |
1412 | PrintAndLog(" hf mf sim f uids.txt");\r | |
1413 | PrintAndLog(" hf mf sim u 0a0a0a0a e");\r | |
7906cb41 | 1414 | \r |
c872d8c1 | 1415 | return 0;\r |
1416 | }\r | |
1417 | \r | |
bbd11876 | 1418 | int CmdHF14AMf1kSim(const char *Cmd) {\r |
73ab92d1 | 1419 | UsbCommand resp;\r |
c872d8c1 | 1420 | uint8_t uid[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};\r |
d2f487af | 1421 | uint8_t exitAfterNReads = 0;\r |
1422 | uint8_t flags = 0;\r | |
c872d8c1 | 1423 | int uidlen = 0;\r |
1424 | uint8_t pnr = 0;\r | |
1425 | bool setEmulatorMem = false;\r | |
bbd11876 | 1426 | bool attackFromFile = false;\r |
1427 | FILE *f;\r | |
1428 | char filename[FILE_PATH_SIZE];\r | |
1429 | memset(filename, 0x00, sizeof(filename));\r | |
1430 | int len = 0;\r | |
1431 | char buf[64];\r | |
bbd11876 | 1432 | \r |
1433 | uint8_t cmdp = 0;\r | |
1434 | bool errors = false;\r | |
1435 | \r | |
1436 | while(param_getchar(Cmd, cmdp) != 0x00) {\r | |
1437 | switch(param_getchar(Cmd, cmdp)) {\r | |
1438 | case 'e':\r | |
1439 | case 'E':\r | |
1440 | setEmulatorMem = true;\r | |
76ef5273 | 1441 | //implies x and i\r |
1442 | flags |= FLAG_INTERACTIVE;\r | |
1443 | flags |= FLAG_NR_AR_ATTACK;\r | |
bbd11876 | 1444 | cmdp++;\r |
1445 | break;\r | |
1446 | case 'f':\r | |
1447 | case 'F':\r | |
874572d4 | 1448 | len = param_getstr(Cmd, cmdp+1, filename, sizeof(filename));\r |
bbd11876 | 1449 | if (len < 1) {\r |
1450 | PrintAndLog("error no filename found");\r | |
1451 | return 0;\r | |
1452 | }\r | |
1453 | attackFromFile = true;\r | |
76ef5273 | 1454 | //implies x and i\r |
1455 | flags |= FLAG_INTERACTIVE;\r | |
1456 | flags |= FLAG_NR_AR_ATTACK;\r | |
1457 | cmdp += 2;\r | |
bbd11876 | 1458 | break;\r |
1459 | case 'h':\r | |
1460 | case 'H':\r | |
1461 | return usage_hf14_mf1ksim();\r | |
1462 | case 'i':\r | |
1463 | case 'I':\r | |
1464 | flags |= FLAG_INTERACTIVE;\r | |
1465 | cmdp++;\r | |
1466 | break;\r | |
1467 | case 'n':\r | |
1468 | case 'N':\r | |
1469 | exitAfterNReads = param_get8(Cmd, pnr+1);\r | |
1470 | cmdp += 2;\r | |
1471 | break;\r | |
f9c1dcd9 MF |
1472 | case 'r':\r |
1473 | case 'R':\r | |
1474 | flags |= FLAG_RANDOM_NONCE;\r | |
1475 | cmdp++;\r | |
1476 | break;\r | |
bbd11876 | 1477 | case 'u':\r |
1478 | case 'U':\r | |
1479 | param_gethex_ex(Cmd, cmdp+1, uid, &uidlen);\r | |
1480 | switch(uidlen) {\r | |
1481 | case 20: flags = FLAG_10B_UID_IN_DATA; break; //not complete\r | |
1482 | case 14: flags = FLAG_7B_UID_IN_DATA; break;\r | |
1483 | case 8: flags = FLAG_4B_UID_IN_DATA; break;\r | |
1484 | default: return usage_hf14_mf1ksim();\r | |
1485 | }\r | |
76ef5273 | 1486 | cmdp += 2;\r |
bbd11876 | 1487 | break;\r |
1488 | case 'x':\r | |
1489 | case 'X':\r | |
1490 | flags |= FLAG_NR_AR_ATTACK;\r | |
1491 | cmdp++;\r | |
1492 | break;\r | |
1493 | default:\r | |
1494 | PrintAndLog("Unknown parameter '%c'", param_getchar(Cmd, cmdp));\r | |
1495 | errors = true;\r | |
1496 | break;\r | |
d2f487af | 1497 | }\r |
bbd11876 | 1498 | if(errors) break;\r |
d2f487af | 1499 | }\r |
bbd11876 | 1500 | //Validations\r |
1501 | if(errors) return usage_hf14_mf1ksim();\r | |
c872d8c1 | 1502 | \r |
bbd11876 | 1503 | //get uid from file\r |
1504 | if (attackFromFile) {\r | |
1505 | int count = 0;\r | |
1506 | // open file\r | |
1507 | f = fopen(filename, "r");\r | |
1508 | if (f == NULL) {\r | |
1509 | PrintAndLog("File %s not found or locked", filename);\r | |
1510 | return 1;\r | |
1511 | }\r | |
73ab92d1 | 1512 | PrintAndLog("Loading file and simulating. Press keyboard to abort");\r |
1513 | while(!feof(f) && !ukbhit()){\r | |
bbd11876 | 1514 | memset(buf, 0, sizeof(buf));\r |
91f4d531 | 1515 | memset(uid, 0, sizeof(uid));\r |
d2f487af | 1516 | \r |
7906cb41 | 1517 | if (fgets(buf, sizeof(buf), f) == NULL) {\r |
bbd11876 | 1518 | if (count > 0) break;\r |
7906cb41 | 1519 | \r |
bbd11876 | 1520 | PrintAndLog("File reading error.");\r |
1521 | fclose(f);\r | |
1522 | return 2;\r | |
1523 | }\r | |
91f4d531 | 1524 | if(!strlen(buf) && feof(f)) break;\r |
73ab92d1 | 1525 | \r |
91f4d531 | 1526 | uidlen = strlen(buf)-1;\r |
73ab92d1 | 1527 | switch(uidlen) {\r |
91f4d531 | 1528 | case 20: flags |= FLAG_10B_UID_IN_DATA; break; //not complete\r |
1529 | case 14: flags |= FLAG_7B_UID_IN_DATA; break;\r | |
1530 | case 8: flags |= FLAG_4B_UID_IN_DATA; break;\r | |
7906cb41 | 1531 | default:\r |
91f4d531 | 1532 | PrintAndLog("uid in file wrong length at %d (length: %d) [%s]",count, uidlen, buf);\r |
73ab92d1 | 1533 | fclose(f);\r |
1534 | return 2;\r | |
bbd11876 | 1535 | }\r |
73ab92d1 | 1536 | \r |
bbd11876 | 1537 | for (uint8_t i = 0; i < uidlen; i += 2) {\r |
91f4d531 | 1538 | sscanf(&buf[i], "%02x", (unsigned int *)&uid[i / 2]);\r |
bbd11876 | 1539 | }\r |
7906cb41 | 1540 | \r |
73ab92d1 | 1541 | PrintAndLog("mf 1k sim uid: %s, numreads:%d, flags:%d (0x%02x) - press button to abort",\r |
bbd11876 | 1542 | flags & FLAG_4B_UID_IN_DATA ? sprint_hex(uid,4):\r |
7906cb41 | 1543 | flags & FLAG_7B_UID_IN_DATA ? sprint_hex(uid,7):\r |
bbd11876 | 1544 | flags & FLAG_10B_UID_IN_DATA ? sprint_hex(uid,10): "N/A"\r |
1545 | , exitAfterNReads, flags, flags);\r | |
1546 | \r | |
73ab92d1 | 1547 | UsbCommand c = {CMD_SIMULATE_MIFARE_CARD, {flags, exitAfterNReads,0}};\r |
bbd11876 | 1548 | memcpy(c.d.asBytes, uid, sizeof(uid));\r |
1549 | clearCommandBuffer();\r | |
1550 | SendCommand(&c);\r | |
c872d8c1 | 1551 | \r |
73ab92d1 | 1552 | while(! WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r |
1553 | //We're waiting only 1.5 s at a time, otherwise we get the\r | |
1554 | // annoying message about "Waiting for a response... "\r | |
1555 | }\r | |
1556 | //got a response\r | |
1557 | nonces_t ar_resp[ATTACK_KEY_COUNT*2];\r | |
1558 | memcpy(ar_resp, resp.d.asBytes, sizeof(ar_resp));\r | |
5b5489ba MF |
1559 | // We can skip the standard attack if we have RANDOM_NONCE set.\r |
1560 | readerAttack(ar_resp, setEmulatorMem, !(flags & FLAG_RANDOM_NONCE));\r | |
76ef5273 | 1561 | if ((bool)resp.arg[1]) {\r |
73ab92d1 | 1562 | PrintAndLog("Device button pressed - quitting");\r |
1563 | fclose(f);\r | |
1564 | return 4;\r | |
bbd11876 | 1565 | }\r |
bbd11876 | 1566 | count++;\r |
1567 | }\r | |
1568 | fclose(f);\r | |
76ef5273 | 1569 | } else { //not from file\r |
d2f487af | 1570 | \r |
bbd11876 | 1571 | PrintAndLog("mf 1k sim uid: %s, numreads:%d, flags:%d (0x%02x) ",\r |
1572 | flags & FLAG_4B_UID_IN_DATA ? sprint_hex(uid,4):\r | |
7906cb41 | 1573 | flags & FLAG_7B_UID_IN_DATA ? sprint_hex(uid,7):\r |
bbd11876 | 1574 | flags & FLAG_10B_UID_IN_DATA ? sprint_hex(uid,10): "N/A"\r |
1575 | , exitAfterNReads, flags, flags);\r | |
d2f487af | 1576 | \r |
73ab92d1 | 1577 | UsbCommand c = {CMD_SIMULATE_MIFARE_CARD, {flags, exitAfterNReads,0}};\r |
bbd11876 | 1578 | memcpy(c.d.asBytes, uid, sizeof(uid));\r |
1579 | clearCommandBuffer();\r | |
1580 | SendCommand(&c);\r | |
d2f487af | 1581 | \r |
bbd11876 | 1582 | if(flags & FLAG_INTERACTIVE) {\r |
1583 | PrintAndLog("Press pm3-button to abort simulation");\r | |
1584 | while(! WaitForResponseTimeout(CMD_ACK,&resp,1500)) {\r | |
1585 | //We're waiting only 1.5 s at a time, otherwise we get the\r | |
1586 | // annoying message about "Waiting for a response... "\r | |
79dcb9e0 | 1587 | }\r |
bbd11876 | 1588 | //got a response\r |
1589 | if (flags & FLAG_NR_AR_ATTACK) {\r | |
1590 | nonces_t ar_resp[ATTACK_KEY_COUNT*2];\r | |
1591 | memcpy(ar_resp, resp.d.asBytes, sizeof(ar_resp));\r | |
5b5489ba MF |
1592 | // We can skip the standard attack if we have RANDOM_NONCE set.\r |
1593 | readerAttack(ar_resp, setEmulatorMem, !(flags & FLAG_RANDOM_NONCE));\r | |
79dcb9e0 | 1594 | }\r |
79dcb9e0 | 1595 | }\r |
baeaf579 | 1596 | }\r |
bbd11876 | 1597 | \r |
baeaf579 | 1598 | return 0;\r |
9ca155ba M |
1599 | }\r |
1600 | \r | |
1601 | int CmdHF14AMfDbg(const char *Cmd)\r | |
1602 | {\r | |
8556b852 M |
1603 | int dbgMode = param_get32ex(Cmd, 0, 0, 10);\r |
1604 | if (dbgMode > 4) {\r | |
baeaf579 | 1605 | PrintAndLog("Max debug mode parameter is 4 \n");\r |
8556b852 M |
1606 | }\r |
1607 | \r | |
1608 | if (strlen(Cmd) < 1 || !param_getchar(Cmd, 0) || dbgMode > 4) {\r | |
9ca155ba M |
1609 | PrintAndLog("Usage: hf mf dbg <debug level>");\r |
1610 | PrintAndLog(" 0 - no debug messages");\r | |
1611 | PrintAndLog(" 1 - error messages");\r | |
b03c0f2d | 1612 | PrintAndLog(" 2 - plus information messages");\r |
1613 | PrintAndLog(" 3 - plus debug messages");\r | |
1614 | PrintAndLog(" 4 - print even debug messages in timing critical functions");\r | |
1615 | PrintAndLog(" Note: this option therefore may cause malfunction itself");\r | |
9ca155ba | 1616 | return 0;\r |
7906cb41 | 1617 | }\r |
9ca155ba | 1618 | \r |
8556b852 M |
1619 | UsbCommand c = {CMD_MIFARE_SET_DBGMODE, {dbgMode, 0, 0}};\r |
1620 | SendCommand(&c);\r | |
1621 | \r | |
9ca155ba M |
1622 | return 0;\r |
1623 | }\r | |
1624 | \r | |
1625 | int CmdHF14AMfEGet(const char *Cmd)\r | |
1626 | {\r | |
8556b852 | 1627 | uint8_t blockNo = 0;\r |
5ee70129 | 1628 | uint8_t data[16] = {0x00};\r |
8556b852 M |
1629 | \r |
1630 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r | |
1631 | PrintAndLog("Usage: hf mf eget <block number>");\r | |
1632 | PrintAndLog(" sample: hf mf eget 0 ");\r | |
1633 | return 0;\r | |
7906cb41 F |
1634 | }\r |
1635 | \r | |
8556b852 | 1636 | blockNo = param_get8(Cmd, 0);\r |
8556b852 M |
1637 | \r |
1638 | PrintAndLog(" ");\r | |
baeaf579 | 1639 | if (!mfEmlGetMem(data, blockNo, 1)) {\r |
1640 | PrintAndLog("data[%3d]:%s", blockNo, sprint_hex(data, 16));\r | |
8556b852 M |
1641 | } else {\r |
1642 | PrintAndLog("Command execute timeout");\r | |
1643 | }\r | |
1644 | \r | |
1645 | return 0;\r | |
1646 | }\r | |
1647 | \r | |
1648 | int CmdHF14AMfEClear(const char *Cmd)\r | |
1649 | {\r | |
1650 | if (param_getchar(Cmd, 0) == 'h') {\r | |
1651 | PrintAndLog("Usage: hf mf eclr");\r | |
1652 | PrintAndLog("It set card emulator memory to empty data blocks and key A/B FFFFFFFFFFFF \n");\r | |
1653 | return 0;\r | |
7906cb41 | 1654 | }\r |
8556b852 M |
1655 | \r |
1656 | UsbCommand c = {CMD_MIFARE_EML_MEMCLR, {0, 0, 0}};\r | |
1657 | SendCommand(&c);\r | |
9ca155ba M |
1658 | return 0;\r |
1659 | }\r | |
1660 | \r | |
baeaf579 | 1661 | \r |
9ca155ba M |
1662 | int CmdHF14AMfESet(const char *Cmd)\r |
1663 | {\r | |
8556b852 M |
1664 | uint8_t memBlock[16];\r |
1665 | uint8_t blockNo = 0;\r | |
1666 | \r | |
1667 | memset(memBlock, 0x00, sizeof(memBlock));\r | |
1668 | \r | |
1669 | if (strlen(Cmd) < 3 || param_getchar(Cmd, 0) == 'h') {\r | |
1670 | PrintAndLog("Usage: hf mf eset <block number> <block data (32 hex symbols)>");\r | |
1671 | PrintAndLog(" sample: hf mf eset 1 000102030405060708090a0b0c0d0e0f ");\r | |
1672 | return 0;\r | |
7906cb41 F |
1673 | }\r |
1674 | \r | |
8556b852 | 1675 | blockNo = param_get8(Cmd, 0);\r |
7906cb41 | 1676 | \r |
8556b852 M |
1677 | if (param_gethex(Cmd, 1, memBlock, 32)) {\r |
1678 | PrintAndLog("block data must include 32 HEX symbols");\r | |
1679 | return 1;\r | |
1680 | }\r | |
7906cb41 | 1681 | \r |
8556b852 | 1682 | // 1 - blocks count\r |
baeaf579 | 1683 | UsbCommand c = {CMD_MIFARE_EML_MEMSET, {blockNo, 1, 0}};\r |
8556b852 | 1684 | memcpy(c.d.asBytes, memBlock, 16);\r |
baeaf579 | 1685 | SendCommand(&c);\r |
1686 | return 0;\r | |
9ca155ba M |
1687 | }\r |
1688 | \r | |
baeaf579 | 1689 | \r |
9ca155ba M |
1690 | int CmdHF14AMfELoad(const char *Cmd)\r |
1691 | {\r | |
ab8b654e | 1692 | FILE * f;\r |
b915fda3 | 1693 | char filename[FILE_PATH_SIZE];\r |
baeaf579 | 1694 | char *fnameptr = filename;\r |
5ee70129 | 1695 | char buf[64] = {0x00};\r |
1696 | uint8_t buf8[64] = {0x00};\r | |
b915fda3 | 1697 | int i, len, blockNum, numBlocks;\r |
1698 | int nameParamNo = 1;\r | |
7906cb41 | 1699 | \r |
b915fda3 | 1700 | char ctmp = param_getchar(Cmd, 0);\r |
7906cb41 | 1701 | \r |
b915fda3 | 1702 | if ( ctmp == 'h' || ctmp == 0x00) {\r |
ab8b654e | 1703 | PrintAndLog("It loads emul dump from the file `filename.eml`");\r |
b915fda3 | 1704 | PrintAndLog("Usage: hf mf eload [card memory] <file name w/o `.eml`>");\r |
1705 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
1706 | PrintAndLog("");\r | |
ab8b654e | 1707 | PrintAndLog(" sample: hf mf eload filename");\r |
b915fda3 | 1708 | PrintAndLog(" hf mf eload 4 filename");\r |
ab8b654e | 1709 | return 0;\r |
7906cb41 | 1710 | }\r |
ab8b654e | 1711 | \r |
b915fda3 | 1712 | switch (ctmp) {\r |
1713 | case '0' : numBlocks = 5*4; break;\r | |
7906cb41 | 1714 | case '1' :\r |
b915fda3 | 1715 | case '\0': numBlocks = 16*4; break;\r |
1716 | case '2' : numBlocks = 32*4; break;\r | |
1717 | case '4' : numBlocks = 256; break;\r | |
1718 | default: {\r | |
1719 | numBlocks = 16*4;\r | |
1720 | nameParamNo = 0;\r | |
1721 | }\r | |
1722 | }\r | |
1723 | \r | |
874572d4 | 1724 | len = param_getstr(Cmd,nameParamNo,filename,sizeof(filename));\r |
7906cb41 | 1725 | \r |
4c16ae80 | 1726 | if (len > FILE_PATH_SIZE - 5) len = FILE_PATH_SIZE - 5;\r |
ab8b654e | 1727 | \r |
0b14440d | 1728 | fnameptr += len;\r |
ab8b654e | 1729 | \r |
7906cb41 F |
1730 | sprintf(fnameptr, ".eml");\r |
1731 | \r | |
ab8b654e M |
1732 | // open file\r |
1733 | f = fopen(filename, "r");\r | |
1734 | if (f == NULL) {\r | |
3fe4ff4f | 1735 | PrintAndLog("File %s not found or locked", filename);\r |
ab8b654e M |
1736 | return 1;\r |
1737 | }\r | |
7906cb41 | 1738 | \r |
ab8b654e M |
1739 | blockNum = 0;\r |
1740 | while(!feof(f)){\r | |
1741 | memset(buf, 0, sizeof(buf));\r | |
7906cb41 | 1742 | \r |
759c16b3 | 1743 | if (fgets(buf, sizeof(buf), f) == NULL) {\r |
7906cb41 | 1744 | \r |
b915fda3 | 1745 | if (blockNum >= numBlocks) break;\r |
7906cb41 | 1746 | \r |
d2f487af | 1747 | PrintAndLog("File reading error.");\r |
97d582a6 | 1748 | fclose(f);\r |
759c16b3 | 1749 | return 2;\r |
baeaf579 | 1750 | }\r |
7906cb41 | 1751 | \r |
ab8b654e | 1752 | if (strlen(buf) < 32){\r |
aea4d766 | 1753 | if(strlen(buf) && feof(f))\r |
1754 | break;\r | |
ab8b654e | 1755 | PrintAndLog("File content error. Block data must include 32 HEX symbols");\r |
97d582a6 | 1756 | fclose(f);\r |
ab8b654e M |
1757 | return 2;\r |
1758 | }\r | |
7906cb41 | 1759 | \r |
baeaf579 | 1760 | for (i = 0; i < 32; i += 2) {\r |
1761 | sscanf(&buf[i], "%02x", (unsigned int *)&buf8[i / 2]);\r | |
baeaf579 | 1762 | }\r |
7906cb41 | 1763 | \r |
ab8b654e | 1764 | if (mfEmlSetMem(buf8, blockNum, 1)) {\r |
baeaf579 | 1765 | PrintAndLog("Cant set emul block: %3d", blockNum);\r |
97d582a6 | 1766 | fclose(f);\r |
ab8b654e M |
1767 | return 3;\r |
1768 | }\r | |
5ee70129 | 1769 | printf(".");\r |
ab8b654e | 1770 | blockNum++;\r |
7906cb41 | 1771 | \r |
b915fda3 | 1772 | if (blockNum >= numBlocks) break;\r |
ab8b654e M |
1773 | }\r |
1774 | fclose(f);\r | |
5ee70129 | 1775 | printf("\n");\r |
7906cb41 | 1776 | \r |
b915fda3 | 1777 | if ((blockNum != numBlocks)) {\r |
1778 | PrintAndLog("File content error. Got %d must be %d blocks.",blockNum, numBlocks);\r | |
ab8b654e M |
1779 | return 4;\r |
1780 | }\r | |
d2f487af | 1781 | PrintAndLog("Loaded %d blocks from file: %s", blockNum, filename);\r |
baeaf579 | 1782 | return 0;\r |
9ca155ba M |
1783 | }\r |
1784 | \r | |
baeaf579 | 1785 | \r |
9ca155ba M |
1786 | int CmdHF14AMfESave(const char *Cmd)\r |
1787 | {\r | |
ab8b654e | 1788 | FILE * f;\r |
b915fda3 | 1789 | char filename[FILE_PATH_SIZE];\r |
ab8b654e M |
1790 | char * fnameptr = filename;\r |
1791 | uint8_t buf[64];\r | |
b915fda3 | 1792 | int i, j, len, numBlocks;\r |
1793 | int nameParamNo = 1;\r | |
7906cb41 | 1794 | \r |
ab8b654e M |
1795 | memset(filename, 0, sizeof(filename));\r |
1796 | memset(buf, 0, sizeof(buf));\r | |
1797 | \r | |
b915fda3 | 1798 | char ctmp = param_getchar(Cmd, 0);\r |
7906cb41 | 1799 | \r |
b915fda3 | 1800 | if ( ctmp == 'h' || ctmp == 'H') {\r |
ab8b654e | 1801 | PrintAndLog("It saves emul dump into the file `filename.eml` or `cardID.eml`");\r |
b915fda3 | 1802 | PrintAndLog(" Usage: hf mf esave [card memory] [file name w/o `.eml`]");\r |
1803 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
1804 | PrintAndLog("");\r | |
ab8b654e | 1805 | PrintAndLog(" sample: hf mf esave ");\r |
b915fda3 | 1806 | PrintAndLog(" hf mf esave 4");\r |
1807 | PrintAndLog(" hf mf esave 4 filename");\r | |
ab8b654e | 1808 | return 0;\r |
7906cb41 | 1809 | }\r |
ab8b654e | 1810 | \r |
b915fda3 | 1811 | switch (ctmp) {\r |
1812 | case '0' : numBlocks = 5*4; break;\r | |
7906cb41 | 1813 | case '1' :\r |
b915fda3 | 1814 | case '\0': numBlocks = 16*4; break;\r |
1815 | case '2' : numBlocks = 32*4; break;\r | |
1816 | case '4' : numBlocks = 256; break;\r | |
1817 | default: {\r | |
1818 | numBlocks = 16*4;\r | |
1819 | nameParamNo = 0;\r | |
1820 | }\r | |
1821 | }\r | |
1822 | \r | |
874572d4 | 1823 | len = param_getstr(Cmd,nameParamNo,filename,sizeof(filename));\r |
7906cb41 | 1824 | \r |
4c16ae80 | 1825 | if (len > FILE_PATH_SIZE - 5) len = FILE_PATH_SIZE - 5;\r |
7906cb41 | 1826 | \r |
b915fda3 | 1827 | // user supplied filename?\r |
ab8b654e | 1828 | if (len < 1) {\r |
b915fda3 | 1829 | // get filename (UID from memory)\r |
ab8b654e | 1830 | if (mfEmlGetMem(buf, 0, 1)) {\r |
b915fda3 | 1831 | PrintAndLog("Can\'t get UID from block: %d", 0);\r |
0b14440d PL |
1832 | len = sprintf(fnameptr, "dump");\r |
1833 | fnameptr += len;\r | |
1834 | }\r | |
1835 | else {\r | |
1836 | for (j = 0; j < 7; j++, fnameptr += 2)\r | |
1837 | sprintf(fnameptr, "%02X", buf[j]);\r | |
ab8b654e | 1838 | }\r |
ab8b654e | 1839 | } else {\r |
0b14440d | 1840 | fnameptr += len;\r |
ab8b654e M |
1841 | }\r |
1842 | \r | |
b915fda3 | 1843 | // add file extension\r |
7906cb41 F |
1844 | sprintf(fnameptr, ".eml");\r |
1845 | \r | |
ab8b654e M |
1846 | // open file\r |
1847 | f = fopen(filename, "w+");\r | |
1848 | \r | |
b915fda3 | 1849 | if ( !f ) {\r |
1850 | PrintAndLog("Can't open file %s ", filename);\r | |
1851 | return 1;\r | |
1852 | }\r | |
7906cb41 | 1853 | \r |
ab8b654e | 1854 | // put hex\r |
b915fda3 | 1855 | for (i = 0; i < numBlocks; i++) {\r |
ab8b654e M |
1856 | if (mfEmlGetMem(buf, i, 1)) {\r |
1857 | PrintAndLog("Cant get block: %d", i);\r | |
1858 | break;\r | |
1859 | }\r | |
1860 | for (j = 0; j < 16; j++)\r | |
7906cb41 | 1861 | fprintf(f, "%02X", buf[j]);\r |
ab8b654e M |
1862 | fprintf(f,"\n");\r |
1863 | }\r | |
1864 | fclose(f);\r | |
7906cb41 | 1865 | \r |
b915fda3 | 1866 | PrintAndLog("Saved %d blocks to file: %s", numBlocks, filename);\r |
7906cb41 | 1867 | \r |
9ca155ba M |
1868 | return 0;\r |
1869 | }\r | |
1870 | \r | |
baeaf579 | 1871 | \r |
26fdb4ab | 1872 | int CmdHF14AMfECFill(const char *Cmd)\r |
1873 | {\r | |
8556b852 | 1874 | uint8_t keyType = 0;\r |
baeaf579 | 1875 | uint8_t numSectors = 16;\r |
7906cb41 | 1876 | \r |
8556b852 | 1877 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r |
baeaf579 | 1878 | PrintAndLog("Usage: hf mf ecfill <key A/B> [card memory]");\r |
1879 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
1880 | PrintAndLog("");\r | |
1881 | PrintAndLog("samples: hf mf ecfill A");\r | |
1882 | PrintAndLog(" hf mf ecfill A 4");\r | |
1883 | PrintAndLog("Read card and transfer its data to emulator memory.");\r | |
1884 | PrintAndLog("Keys must be laid in the emulator memory. \n");\r | |
8556b852 | 1885 | return 0;\r |
7906cb41 | 1886 | }\r |
8556b852 M |
1887 | \r |
1888 | char ctmp = param_getchar(Cmd, 0);\r | |
baeaf579 | 1889 | if (ctmp != 'a' && ctmp != 'A' && ctmp != 'b' && ctmp != 'B') {\r |
8556b852 M |
1890 | PrintAndLog("Key type must be A or B");\r |
1891 | return 1;\r | |
1892 | }\r | |
1893 | if (ctmp != 'A' && ctmp != 'a') keyType = 1;\r | |
1894 | \r | |
baeaf579 | 1895 | ctmp = param_getchar(Cmd, 1);\r |
1896 | switch (ctmp) {\r | |
1897 | case '0' : numSectors = 5; break;\r | |
7906cb41 | 1898 | case '1' :\r |
baeaf579 | 1899 | case '\0': numSectors = 16; break;\r |
1900 | case '2' : numSectors = 32; break;\r | |
1901 | case '4' : numSectors = 40; break;\r | |
1902 | default: numSectors = 16;\r | |
7906cb41 | 1903 | }\r |
baeaf579 | 1904 | \r |
1905 | printf("--params: numSectors: %d, keyType:%d", numSectors, keyType);\r | |
1906 | UsbCommand c = {CMD_MIFARE_EML_CARDLOAD, {numSectors, keyType, 0}};\r | |
1907 | SendCommand(&c);\r | |
1908 | return 0;\r | |
8556b852 M |
1909 | }\r |
1910 | \r | |
26fdb4ab | 1911 | int CmdHF14AMfEKeyPrn(const char *Cmd)\r |
1912 | {\r | |
baeaf579 | 1913 | int i;\r |
b915fda3 | 1914 | uint8_t numSectors;\r |
8556b852 M |
1915 | uint8_t data[16];\r |
1916 | uint64_t keyA, keyB;\r | |
7906cb41 | 1917 | \r |
b915fda3 | 1918 | if (param_getchar(Cmd, 0) == 'h') {\r |
1919 | PrintAndLog("It prints the keys loaded in the emulator memory");\r | |
1920 | PrintAndLog("Usage: hf mf ekeyprn [card memory]");\r | |
1921 | PrintAndLog(" [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r | |
1922 | PrintAndLog("");\r | |
1923 | PrintAndLog(" sample: hf mf ekeyprn 1");\r | |
1924 | return 0;\r | |
7906cb41 | 1925 | }\r |
b915fda3 | 1926 | \r |
1927 | char cmdp = param_getchar(Cmd, 0);\r | |
7906cb41 | 1928 | \r |
b915fda3 | 1929 | switch (cmdp) {\r |
1930 | case '0' : numSectors = 5; break;\r | |
7906cb41 | 1931 | case '1' :\r |
b915fda3 | 1932 | case '\0': numSectors = 16; break;\r |
1933 | case '2' : numSectors = 32; break;\r | |
1934 | case '4' : numSectors = 40; break;\r | |
1935 | default: numSectors = 16;\r | |
7906cb41 F |
1936 | }\r |
1937 | \r | |
8556b852 M |
1938 | PrintAndLog("|---|----------------|----------------|");\r |
1939 | PrintAndLog("|sec|key A |key B |");\r | |
1940 | PrintAndLog("|---|----------------|----------------|");\r | |
b915fda3 | 1941 | for (i = 0; i < numSectors; i++) {\r |
baeaf579 | 1942 | if (mfEmlGetMem(data, FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1, 1)) {\r |
1943 | PrintAndLog("error get block %d", FirstBlockOfSector(i) + NumBlocksPerSector(i) - 1);\r | |
8556b852 M |
1944 | break;\r |
1945 | }\r | |
1946 | keyA = bytes_to_num(data, 6);\r | |
1947 | keyB = bytes_to_num(data + 10, 6);\r | |
43534cba | 1948 | PrintAndLog("|%03d| %012" PRIx64 " | %012" PRIx64 " |", i, keyA, keyB);\r |
8556b852 M |
1949 | }\r |
1950 | PrintAndLog("|---|----------------|----------------|");\r | |
7906cb41 | 1951 | \r |
8556b852 M |
1952 | return 0;\r |
1953 | }\r | |
1954 | \r | |
0675f200 M |
1955 | int CmdHF14AMfCSetUID(const char *Cmd)\r |
1956 | {\r | |
3fe4ff4f | 1957 | uint8_t uid[8] = {0x00};\r |
1958 | uint8_t oldUid[8] = {0x00};\r | |
3bba7dea JH |
1959 | uint8_t atqa[2] = {0x00};\r |
1960 | uint8_t sak[1] = {0x00};\r | |
3a05a1e7 | 1961 | uint8_t atqaPresent = 0;\r |
0675f200 | 1962 | int res;\r |
3bba7dea | 1963 | \r |
3a05a1e7 OM |
1964 | uint8_t needHelp = 0;\r |
1965 | char cmdp = 1;\r | |
1966 | \r | |
1967 | if (param_getchar(Cmd, 0) && param_gethex(Cmd, 0, uid, 8)) {\r | |
1968 | PrintAndLog("UID must include 8 HEX symbols");\r | |
1969 | return 1;\r | |
1970 | }\r | |
1971 | \r | |
1972 | if (param_getlength(Cmd, 1) > 1 && param_getlength(Cmd, 2) > 1) {\r | |
1973 | atqaPresent = 1;\r | |
1974 | cmdp = 3;\r | |
1975 | \r | |
1976 | if (param_gethex(Cmd, 1, atqa, 4)) {\r | |
1977 | PrintAndLog("ATQA must include 4 HEX symbols");\r | |
1978 | return 1;\r | |
1979 | }\r | |
1980 | \r | |
1981 | if (param_gethex(Cmd, 2, sak, 2)) {\r | |
1982 | PrintAndLog("SAK must include 2 HEX symbols");\r | |
1983 | return 1;\r | |
1984 | }\r | |
1985 | }\r | |
1986 | \r | |
1987 | while(param_getchar(Cmd, cmdp) != 0x00)\r | |
1988 | {\r | |
1989 | switch(param_getchar(Cmd, cmdp))\r | |
1990 | {\r | |
1991 | case 'h':\r | |
1992 | case 'H':\r | |
1993 | needHelp = 1;\r | |
1994 | break;\r | |
1995 | default:\r | |
1996 | PrintAndLog("ERROR: Unknown parameter '%c'", param_getchar(Cmd, cmdp));\r | |
1997 | needHelp = 1;\r | |
1998 | break;\r | |
1999 | }\r | |
2000 | cmdp++;\r | |
2001 | }\r | |
2002 | \r | |
2003 | if (strlen(Cmd) < 1 || needHelp) {\r | |
2004 | PrintAndLog("");\r | |
2005 | PrintAndLog("Usage: hf mf csetuid <UID 8 hex symbols> [ATQA 4 hex symbols SAK 2 hex symbols]");\r | |
3bba7dea | 2006 | PrintAndLog("sample: hf mf csetuid 01020304");\r |
3a05a1e7 | 2007 | PrintAndLog("sample: hf mf csetuid 01020304 0004 08");\r |
3bba7dea | 2008 | PrintAndLog("Set UID, ATQA, and SAK for magic Chinese card (only works with such cards)");\r |
0675f200 | 2009 | return 0;\r |
3bba7dea | 2010 | }\r |
0675f200 | 2011 | \r |
3a05a1e7 OM |
2012 | PrintAndLog("uid:%s", sprint_hex(uid, 4));\r |
2013 | if (atqaPresent) {\r | |
2014 | PrintAndLog("--atqa:%s sak:%02x", sprint_hex(atqa, 2), sak[0]);\r | |
0675f200 | 2015 | }\r |
3bba7dea | 2016 | \r |
3a05a1e7 OM |
2017 | res = mfCSetUID(uid, (atqaPresent)?atqa:NULL, (atqaPresent)?sak:NULL, oldUid);\r |
2018 | if (res) {\r | |
2019 | PrintAndLog("Can't set UID. Error=%d", res);\r | |
2020 | return 1;\r | |
2021 | }\r | |
2022 | \r | |
2023 | PrintAndLog("old UID:%s", sprint_hex(oldUid, 4));\r | |
2024 | PrintAndLog("new UID:%s", sprint_hex(uid, 4));\r | |
2025 | return 0;\r | |
2026 | }\r | |
2027 | \r | |
3a05a1e7 OM |
2028 | int CmdHF14AMfCWipe(const char *Cmd)\r |
2029 | {\r | |
2030 | int res, gen = 0;\r | |
2031 | int numBlocks = 16 * 4;\r | |
2032 | bool wipeCard = false;\r | |
2033 | bool fillCard = false;\r | |
2034 | \r | |
2035 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r | |
6148817a | 2036 | PrintAndLog("Usage: hf mf cwipe [card size] [w] [f]");\r |
2037 | PrintAndLog("sample: hf mf cwipe 1 w f");\r | |
3a05a1e7 OM |
2038 | PrintAndLog("[card size]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K");\r |
2039 | PrintAndLog("w - Wipe magic Chinese card (only works with gen:1a cards)");\r | |
2040 | PrintAndLog("f - Fill the card with default data and keys (works with gen:1a and gen:1b cards only)");\r | |
2041 | return 0;\r | |
3bba7dea JH |
2042 | }\r |
2043 | \r | |
3a05a1e7 OM |
2044 | gen = mfCIdentify();\r |
2045 | if ((gen != 1) && (gen != 2)) \r | |
2046 | return 1;\r | |
2047 | \r | |
adf023ff | 2048 | numBlocks = ParamCardSizeBlocks(param_getchar(Cmd, 0));\r |
3a05a1e7 OM |
2049 | \r |
2050 | char cmdp = 0;\r | |
2051 | while(param_getchar(Cmd, cmdp) != 0x00){\r | |
2052 | switch(param_getchar(Cmd, cmdp)) {\r | |
2053 | case 'w':\r | |
2054 | case 'W':\r | |
3bba7dea | 2055 | wipeCard = 1;\r |
3a05a1e7 OM |
2056 | break;\r |
2057 | case 'f':\r | |
2058 | case 'F':\r | |
2059 | fillCard = 1;\r | |
2060 | break;\r | |
2061 | default:\r | |
2062 | break;\r | |
3bba7dea | 2063 | }\r |
3a05a1e7 | 2064 | cmdp++;\r |
3bba7dea | 2065 | }\r |
0675f200 | 2066 | \r |
3a05a1e7 | 2067 | if (!wipeCard && !fillCard) \r |
2ce43a28 | 2068 | wipeCard = true;\r |
0675f200 | 2069 | \r |
3a05a1e7 OM |
2070 | PrintAndLog("--blocks count:%2d wipe:%c fill:%c", numBlocks, (wipeCard)?'y':'n', (fillCard)?'y':'n');\r |
2071 | \r | |
2072 | if (gen == 2) {\r | |
2073 | /* generation 1b magic card */\r | |
2074 | if (wipeCard) {\r | |
2075 | PrintAndLog("WARNING: can't wipe magic card 1b generation");\r | |
0675f200 | 2076 | }\r |
3a05a1e7 OM |
2077 | res = mfCWipe(numBlocks, true, false, fillCard); \r |
2078 | } else {\r | |
2079 | /* generation 1a magic card by default */\r | |
2080 | res = mfCWipe(numBlocks, false, wipeCard, fillCard); \r | |
2081 | }\r | |
7906cb41 | 2082 | \r |
3a05a1e7 OM |
2083 | if (res) {\r |
2084 | PrintAndLog("Can't wipe. error=%d", res);\r | |
2085 | return 1;\r | |
2086 | }\r | |
2087 | PrintAndLog("OK");\r | |
0675f200 M |
2088 | return 0;\r |
2089 | }\r | |
2090 | \r | |
2091 | int CmdHF14AMfCSetBlk(const char *Cmd)\r | |
2092 | {\r | |
5ee70129 | 2093 | uint8_t memBlock[16] = {0x00};\r |
f774db95 | 2094 | uint8_t blockNo = 0;\r |
7cb8516c | 2095 | bool wipeCard = false;\r |
7906cb41 | 2096 | int res, gen = 0;\r |
f774db95 M |
2097 | \r |
2098 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r | |
664f6586 | 2099 | PrintAndLog("Usage: hf mf csetblk <block number> <block data (32 hex symbols)> [w]");\r |
f774db95 | 2100 | PrintAndLog("sample: hf mf csetblk 1 01020304050607080910111213141516");\r |
664f6586 | 2101 | PrintAndLog("Set block data for magic Chinese card (only works with such cards)");\r |
2102 | PrintAndLog("If you also want wipe the card then add 'w' at the end of the command line");\r | |
f774db95 | 2103 | return 0;\r |
7906cb41 F |
2104 | }\r |
2105 | \r | |
2106 | gen = mfCIdentify();\r | |
3a05a1e7 OM |
2107 | if ((gen != 1) && (gen != 2)) \r |
2108 | return 1;\r | |
f774db95 M |
2109 | \r |
2110 | blockNo = param_get8(Cmd, 0);\r | |
f774db95 M |
2111 | \r |
2112 | if (param_gethex(Cmd, 1, memBlock, 32)) {\r | |
2113 | PrintAndLog("block data must include 32 HEX symbols");\r | |
2114 | return 1;\r | |
2115 | }\r | |
2116 | \r | |
664f6586 | 2117 | char ctmp = param_getchar(Cmd, 2);\r |
2118 | wipeCard = (ctmp == 'w' || ctmp == 'W');\r | |
baeaf579 | 2119 | PrintAndLog("--block number:%2d data:%s", blockNo, sprint_hex(memBlock, 16));\r |
f774db95 | 2120 | \r |
7906cb41 F |
2121 | if (gen == 2) {\r |
2122 | /* generation 1b magic card */\r | |
2123 | res = mfCSetBlock(blockNo, memBlock, NULL, wipeCard, CSETBLOCK_SINGLE_OPER | CSETBLOCK_MAGIC_1B);\r | |
2124 | } else {\r | |
2125 | /* generation 1a magic card by default */\r | |
2126 | res = mfCSetBlock(blockNo, memBlock, NULL, wipeCard, CSETBLOCK_SINGLE_OPER);\r | |
2127 | }\r | |
2128 | \r | |
f774db95 | 2129 | if (res) {\r |
664f6586 | 2130 | PrintAndLog("Can't write block. error=%d", res);\r |
2131 | return 1;\r | |
2132 | }\r | |
0675f200 M |
2133 | return 0;\r |
2134 | }\r | |
2135 | \r | |
baeaf579 | 2136 | \r |
0675f200 M |
2137 | int CmdHF14AMfCLoad(const char *Cmd)\r |
2138 | {\r | |
208a0166 | 2139 | FILE * f;\r |
b915fda3 | 2140 | char filename[FILE_PATH_SIZE] = {0x00};\r |
208a0166 | 2141 | char * fnameptr = filename;\r |
7906cb41 F |
2142 | char buf[256] = {0x00};\r |
2143 | uint8_t buf8[256] = {0x00};\r | |
208a0166 | 2144 | uint8_t fillFromEmulator = 0;\r |
7906cb41 F |
2145 | int i, len, blockNum, flags = 0, gen = 0, numblock = 64;\r |
2146 | \r | |
208a0166 | 2147 | if (param_getchar(Cmd, 0) == 'h' || param_getchar(Cmd, 0)== 0x00) {\r |
e3c23565 | 2148 | PrintAndLog("It loads magic Chinese card from the file `filename.eml`");\r |
7906cb41 F |
2149 | PrintAndLog("or from emulator memory (option `e`). 4K card: (option `4`)");\r |
2150 | PrintAndLog("Usage: hf mf cload [file name w/o `.eml`][e][4]");\r | |
2151 | PrintAndLog(" or: hf mf cload e [4]");\r | |
2152 | PrintAndLog("Sample: hf mf cload filename");\r | |
2153 | PrintAndLog(" hf mf cload filname 4");\r | |
2154 | PrintAndLog(" hf mf cload e");\r | |
2155 | PrintAndLog(" hf mf cload e 4");\r | |
208a0166 | 2156 | return 0;\r |
7906cb41 | 2157 | }\r |
208a0166 M |
2158 | \r |
2159 | char ctmp = param_getchar(Cmd, 0);\r | |
2160 | if (ctmp == 'e' || ctmp == 'E') fillFromEmulator = 1;\r | |
7906cb41 F |
2161 | ctmp = param_getchar(Cmd, 1);\r |
2162 | if (ctmp == '4') numblock = 256;\r | |
2163 | \r | |
2164 | gen = mfCIdentify();\r | |
2165 | PrintAndLog("Loading magic mifare %dK", numblock == 256 ? 4:1);\r | |
2166 | \r | |
208a0166 | 2167 | if (fillFromEmulator) {\r |
7906cb41 | 2168 | for (blockNum = 0; blockNum < numblock; blockNum += 1) {\r |
208a0166 M |
2169 | if (mfEmlGetMem(buf8, blockNum, 1)) {\r |
2170 | PrintAndLog("Cant get block: %d", blockNum);\r | |
2171 | return 2;\r | |
2172 | }\r | |
16a95d76 | 2173 | if (blockNum == 0) flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC; // switch on field and send magic sequence\r |
2174 | if (blockNum == 1) flags = 0; // just write\r | |
7906cb41 | 2175 | if (blockNum == numblock - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD; // Done. Magic Halt and switch off field.\r |
208a0166 | 2176 | \r |
7906cb41 F |
2177 | if (gen == 2)\r |
2178 | /* generation 1b magic card */\r | |
2179 | flags |= CSETBLOCK_MAGIC_1B;\r | |
208a0166 M |
2180 | if (mfCSetBlock(blockNum, buf8, NULL, 0, flags)) {\r |
2181 | PrintAndLog("Cant set magic card block: %d", blockNum);\r | |
2182 | return 3;\r | |
2183 | }\r | |
2184 | }\r | |
2185 | return 0;\r | |
2186 | } else {\r | |
874572d4 | 2187 | param_getstr(Cmd, 0, filename, sizeof(filename));\r |
7906cb41 F |
2188 | \r |
2189 | len = strlen(filename);\r | |
4c16ae80 | 2190 | if (len > FILE_PATH_SIZE - 5) len = FILE_PATH_SIZE - 5;\r |
208a0166 | 2191 | \r |
7906cb41 | 2192 | //memcpy(filename, Cmd, len);\r |
292fe725 | 2193 | fnameptr += len;\r |
208a0166 | 2194 | \r |
7906cb41 F |
2195 | sprintf(fnameptr, ".eml");\r |
2196 | \r | |
208a0166 M |
2197 | // open file\r |
2198 | f = fopen(filename, "r");\r | |
2199 | if (f == NULL) {\r | |
2200 | PrintAndLog("File not found or locked.");\r | |
2201 | return 1;\r | |
2202 | }\r | |
7906cb41 | 2203 | \r |
208a0166 | 2204 | blockNum = 0;\r |
208a0166 | 2205 | while(!feof(f)){\r |
7906cb41 | 2206 | \r |
208a0166 | 2207 | memset(buf, 0, sizeof(buf));\r |
7906cb41 | 2208 | \r |
759c16b3 | 2209 | if (fgets(buf, sizeof(buf), f) == NULL) {\r |
e6432f05 | 2210 | fclose(f);\r |
baeaf579 | 2211 | PrintAndLog("File reading error.");\r |
2212 | return 2;\r | |
2213 | }\r | |
208a0166 | 2214 | \r |
16a95d76 | 2215 | if (strlen(buf) < 32) {\r |
208a0166 M |
2216 | if(strlen(buf) && feof(f))\r |
2217 | break;\r | |
2218 | PrintAndLog("File content error. Block data must include 32 HEX symbols");\r | |
e6432f05 | 2219 | fclose(f);\r |
208a0166 M |
2220 | return 2;\r |
2221 | }\r | |
2222 | for (i = 0; i < 32; i += 2)\r | |
2223 | sscanf(&buf[i], "%02x", (unsigned int *)&buf8[i / 2]);\r | |
2224 | \r | |
16a95d76 | 2225 | if (blockNum == 0) flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC; // switch on field and send magic sequence\r |
2226 | if (blockNum == 1) flags = 0; // just write\r | |
7906cb41 | 2227 | if (blockNum == numblock - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD; // Done. Switch off field.\r |
208a0166 | 2228 | \r |
7906cb41 F |
2229 | if (gen == 2)\r |
2230 | /* generation 1b magic card */\r | |
2231 | flags |= CSETBLOCK_MAGIC_1B;\r | |
208a0166 | 2232 | if (mfCSetBlock(blockNum, buf8, NULL, 0, flags)) {\r |
baeaf579 | 2233 | PrintAndLog("Can't set magic card block: %d", blockNum);\r |
4c16ae80 | 2234 | fclose(f);\r |
208a0166 M |
2235 | return 3;\r |
2236 | }\r | |
2237 | blockNum++;\r | |
7906cb41 F |
2238 | \r |
2239 | if (blockNum >= numblock) break; // magic card type - mifare 1K 64 blocks, mifare 4k 256 blocks\r | |
208a0166 M |
2240 | }\r |
2241 | fclose(f);\r | |
7906cb41 F |
2242 | \r |
2243 | //if (blockNum != 16 * 4 && blockNum != 32 * 4 + 8 * 16){\r | |
2244 | if (blockNum != numblock){\r | |
2245 | PrintAndLog("File content error. There must be %d blocks", numblock);\r | |
208a0166 M |
2246 | return 4;\r |
2247 | }\r | |
2248 | PrintAndLog("Loaded from file: %s", filename);\r | |
2249 | return 0;\r | |
2250 | }\r | |
e3c23565 | 2251 | return 0;\r |
0675f200 M |
2252 | }\r |
2253 | \r | |
545a1f38 M |
2254 | int CmdHF14AMfCGetBlk(const char *Cmd) {\r |
2255 | uint8_t memBlock[16];\r | |
2256 | uint8_t blockNo = 0;\r | |
7906cb41 | 2257 | int res, gen = 0;\r |
545a1f38 M |
2258 | memset(memBlock, 0x00, sizeof(memBlock));\r |
2259 | \r | |
2260 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r | |
2261 | PrintAndLog("Usage: hf mf cgetblk <block number>");\r | |
2262 | PrintAndLog("sample: hf mf cgetblk 1");\r | |
664f6586 | 2263 | PrintAndLog("Get block data from magic Chinese card (only works with such cards)\n");\r |
545a1f38 | 2264 | return 0;\r |
7906cb41 F |
2265 | }\r |
2266 | \r | |
2267 | gen = mfCIdentify();\r | |
545a1f38 M |
2268 | \r |
2269 | blockNo = param_get8(Cmd, 0);\r | |
545a1f38 | 2270 | \r |
baeaf579 | 2271 | PrintAndLog("--block number:%2d ", blockNo);\r |
545a1f38 | 2272 | \r |
7906cb41 F |
2273 | if (gen == 2) {\r |
2274 | /* generation 1b magic card */\r | |
2275 | res = mfCGetBlock(blockNo, memBlock, CSETBLOCK_SINGLE_OPER | CSETBLOCK_MAGIC_1B);\r | |
2276 | } else {\r | |
2277 | /* generation 1a magic card by default */\r | |
2278 | res = mfCGetBlock(blockNo, memBlock, CSETBLOCK_SINGLE_OPER);\r | |
2279 | }\r | |
545a1f38 M |
2280 | if (res) {\r |
2281 | PrintAndLog("Can't read block. error=%d", res);\r | |
2282 | return 1;\r | |
2283 | }\r | |
7906cb41 | 2284 | \r |
545a1f38 M |
2285 | PrintAndLog("block data:%s", sprint_hex(memBlock, 16));\r |
2286 | return 0;\r | |
2287 | }\r | |
2288 | \r | |
2289 | int CmdHF14AMfCGetSc(const char *Cmd) {\r | |
5ee70129 | 2290 | uint8_t memBlock[16] = {0x00};\r |
545a1f38 | 2291 | uint8_t sectorNo = 0;\r |
7906cb41 | 2292 | int i, res, flags, gen = 0, baseblock = 0, sect_size = 4;\r |
545a1f38 M |
2293 | \r |
2294 | if (strlen(Cmd) < 1 || param_getchar(Cmd, 0) == 'h') {\r | |
2295 | PrintAndLog("Usage: hf mf cgetsc <sector number>");\r | |
2296 | PrintAndLog("sample: hf mf cgetsc 0");\r | |
664f6586 | 2297 | PrintAndLog("Get sector data from magic Chinese card (only works with such cards)\n");\r |
545a1f38 | 2298 | return 0;\r |
7906cb41 | 2299 | }\r |
545a1f38 M |
2300 | \r |
2301 | sectorNo = param_get8(Cmd, 0);\r | |
7906cb41 F |
2302 | \r |
2303 | if (sectorNo > 39) {\r | |
2304 | PrintAndLog("Sector number must be in [0..15] in MIFARE classic 1k and [0..39] in MIFARE classic 4k.");\r | |
545a1f38 M |
2305 | return 1;\r |
2306 | }\r | |
2307 | \r | |
baeaf579 | 2308 | PrintAndLog("--sector number:%d ", sectorNo);\r |
545a1f38 | 2309 | \r |
7906cb41 F |
2310 | gen = mfCIdentify();\r |
2311 | \r | |
545a1f38 | 2312 | flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r |
7906cb41 F |
2313 | if (sectorNo < 32 ) {\r |
2314 | baseblock = sectorNo * 4;\r | |
2315 | } else {\r | |
2316 | baseblock = 128 + 16 * (sectorNo - 32);\r | |
2317 | \r | |
2318 | }\r | |
2319 | if (sectorNo > 31) sect_size = 16;\r | |
2320 | \r | |
2321 | for (i = 0; i < sect_size; i++) {\r | |
545a1f38 | 2322 | if (i == 1) flags = 0;\r |
7906cb41 | 2323 | if (i == sect_size - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r |
545a1f38 | 2324 | \r |
7906cb41 F |
2325 | if (gen == 2)\r |
2326 | /* generation 1b magic card */\r | |
2327 | flags |= CSETBLOCK_MAGIC_1B;\r | |
2328 | \r | |
2329 | res = mfCGetBlock(baseblock + i, memBlock, flags);\r | |
545a1f38 | 2330 | if (res) {\r |
7906cb41 | 2331 | PrintAndLog("Can't read block. %d error=%d", baseblock + i, res);\r |
545a1f38 M |
2332 | return 1;\r |
2333 | }\r | |
7906cb41 F |
2334 | \r |
2335 | PrintAndLog("block %3d data:%s", baseblock + i, sprint_hex(memBlock, 16));\r | |
545a1f38 M |
2336 | }\r |
2337 | return 0;\r | |
2338 | }\r | |
2339 | \r | |
baeaf579 | 2340 | \r |
545a1f38 M |
2341 | int CmdHF14AMfCSave(const char *Cmd) {\r |
2342 | \r | |
2343 | FILE * f;\r | |
b915fda3 | 2344 | char filename[FILE_PATH_SIZE] = {0x00};\r |
545a1f38 M |
2345 | char * fnameptr = filename;\r |
2346 | uint8_t fillFromEmulator = 0;\r | |
7906cb41 F |
2347 | uint8_t buf[256] = {0x00};\r |
2348 | int i, j, len, flags, gen = 0, numblock = 64;\r | |
2349 | \r | |
b915fda3 | 2350 | // memset(filename, 0, sizeof(filename));\r |
2351 | // memset(buf, 0, sizeof(buf));\r | |
545a1f38 M |
2352 | \r |
2353 | if (param_getchar(Cmd, 0) == 'h') {\r | |
2354 | PrintAndLog("It saves `magic Chinese` card dump into the file `filename.eml` or `cardID.eml`");\r | |
7906cb41 | 2355 | PrintAndLog("or into emulator memory (option `e`). 4K card: (option `4`)");\r |
a2d058f3 F |
2356 | PrintAndLog("Usage: hf mf csave [file name w/o `.eml`][e][4]");\r |
2357 | PrintAndLog("Sample: hf mf csave ");\r | |
2358 | PrintAndLog(" hf mf csave filename");\r | |
2359 | PrintAndLog(" hf mf csave e");\r | |
2360 | PrintAndLog(" hf mf csave 4");\r | |
2361 | PrintAndLog(" hf mf csave filename 4");\r | |
2362 | PrintAndLog(" hf mf csave e 4");\r | |
545a1f38 | 2363 | return 0;\r |
7906cb41 | 2364 | }\r |
545a1f38 M |
2365 | \r |
2366 | char ctmp = param_getchar(Cmd, 0);\r | |
2367 | if (ctmp == 'e' || ctmp == 'E') fillFromEmulator = 1;\r | |
7906cb41 F |
2368 | if (ctmp == '4') numblock = 256;\r |
2369 | ctmp = param_getchar(Cmd, 1);\r | |
2370 | if (ctmp == '4') numblock = 256;\r | |
2371 | \r | |
2372 | gen = mfCIdentify();\r | |
2373 | PrintAndLog("Saving magic mifare %dK", numblock == 256 ? 4:1);\r | |
545a1f38 M |
2374 | \r |
2375 | if (fillFromEmulator) {\r | |
2376 | // put into emulator\r | |
2377 | flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r | |
7906cb41 | 2378 | for (i = 0; i < numblock; i++) {\r |
545a1f38 | 2379 | if (i == 1) flags = 0;\r |
7906cb41 F |
2380 | if (i == numblock - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r |
2381 | \r | |
2382 | if (gen == 2)\r | |
2383 | /* generation 1b magic card */\r | |
2384 | flags |= CSETBLOCK_MAGIC_1B;\r | |
2385 | \r | |
545a1f38 M |
2386 | if (mfCGetBlock(i, buf, flags)) {\r |
2387 | PrintAndLog("Cant get block: %d", i);\r | |
2388 | break;\r | |
2389 | }\r | |
7906cb41 | 2390 | \r |
545a1f38 M |
2391 | if (mfEmlSetMem(buf, i, 1)) {\r |
2392 | PrintAndLog("Cant set emul block: %d", i);\r | |
2393 | return 3;\r | |
2394 | }\r | |
2395 | }\r | |
2396 | return 0;\r | |
2397 | } else {\r | |
874572d4 | 2398 | param_getstr(Cmd, 0, filename, sizeof(filename));\r |
7906cb41 F |
2399 | \r |
2400 | len = strlen(filename);\r | |
4c16ae80 | 2401 | if (len > FILE_PATH_SIZE - 5) len = FILE_PATH_SIZE - 5;\r |
7906cb41 F |
2402 | \r |
2403 | ctmp = param_getchar(Cmd, 0);\r | |
2404 | if (len < 1 || (ctmp == '4')) {\r | |
545a1f38 | 2405 | // get filename\r |
7906cb41 F |
2406 | \r |
2407 | flags = CSETBLOCK_SINGLE_OPER;\r | |
2408 | if (gen == 2)\r | |
2409 | /* generation 1b magic card */\r | |
2410 | flags |= CSETBLOCK_MAGIC_1B;\r | |
2411 | if (mfCGetBlock(0, buf, flags)) {\r | |
545a1f38 | 2412 | PrintAndLog("Cant get block: %d", 0);\r |
1d537ad6 PL |
2413 | len = sprintf(fnameptr, "dump");\r |
2414 | fnameptr += len;\r | |
2415 | }\r | |
2416 | else {\r | |
2417 | for (j = 0; j < 7; j++, fnameptr += 2)\r | |
7906cb41 | 2418 | sprintf(fnameptr, "%02x", buf[j]);\r |
545a1f38 | 2419 | }\r |
545a1f38 | 2420 | } else {\r |
7906cb41 | 2421 | //memcpy(filename, Cmd, len);\r |
545a1f38 M |
2422 | fnameptr += len;\r |
2423 | }\r | |
2424 | \r | |
7906cb41 F |
2425 | sprintf(fnameptr, ".eml");\r |
2426 | \r | |
545a1f38 M |
2427 | // open file\r |
2428 | f = fopen(filename, "w+");\r | |
2429 | \r | |
b915fda3 | 2430 | if (f == NULL) {\r |
2431 | PrintAndLog("File not found or locked.");\r | |
2432 | return 1;\r | |
2433 | }\r | |
2434 | \r | |
545a1f38 M |
2435 | // put hex\r |
2436 | flags = CSETBLOCK_INIT_FIELD + CSETBLOCK_WUPC;\r | |
7906cb41 | 2437 | for (i = 0; i < numblock; i++) {\r |
545a1f38 | 2438 | if (i == 1) flags = 0;\r |
7906cb41 F |
2439 | if (i == numblock - 1) flags = CSETBLOCK_HALT + CSETBLOCK_RESET_FIELD;\r |
2440 | \r | |
2441 | if (gen == 2)\r | |
2442 | /* generation 1b magic card */\r | |
2443 | flags |= CSETBLOCK_MAGIC_1B;\r | |
545a1f38 M |
2444 | if (mfCGetBlock(i, buf, flags)) {\r |
2445 | PrintAndLog("Cant get block: %d", i);\r | |
2446 | break;\r | |
2447 | }\r | |
2448 | for (j = 0; j < 16; j++)\r | |
7906cb41 | 2449 | fprintf(f, "%02x", buf[j]);\r |
545a1f38 M |
2450 | fprintf(f,"\n");\r |
2451 | }\r | |
2452 | fclose(f);\r | |
7906cb41 | 2453 | \r |
545a1f38 | 2454 | PrintAndLog("Saved to file: %s", filename);\r |
7906cb41 | 2455 | \r |
545a1f38 M |
2456 | return 0;\r |
2457 | }\r | |
2458 | }\r | |
2459 | \r | |
baeaf579 | 2460 | \r |
b62a5a84 | 2461 | int CmdHF14AMfSniff(const char *Cmd){\r |
3fe4ff4f | 2462 | \r |
c948cbde M |
2463 | bool wantLogToFile = 0;\r |
2464 | bool wantDecrypt = 0;\r | |
eede7162 | 2465 | //bool wantSaveToEml = 0; TODO\r |
55acbb2a M |
2466 | bool wantSaveToEmlFile = 0;\r |
2467 | \r | |
7906cb41 | 2468 | //var\r |
39864b0b M |
2469 | int res = 0;\r |
2470 | int len = 0;\r | |
2471 | int blockLen = 0;\r | |
39864b0b | 2472 | int pckNum = 0;\r |
f71f4deb | 2473 | int num = 0;\r |
2474 | uint8_t uid[7];\r | |
991f13f2 | 2475 | uint8_t uid_len;\r |
5ee70129 | 2476 | uint8_t atqa[2] = {0x00};\r |
39864b0b M |
2477 | uint8_t sak;\r |
2478 | bool isTag;\r | |
f71f4deb | 2479 | uint8_t *buf = NULL;\r |
2480 | uint16_t bufsize = 0;\r | |
2481 | uint8_t *bufPtr = NULL;\r | |
7906cb41 | 2482 | \r |
e3c23565 | 2483 | char ctmp = param_getchar(Cmd, 0);\r |
2484 | if ( ctmp == 'h' || ctmp == 'H' ) {\r | |
baeaf579 | 2485 | PrintAndLog("It continuously gets data from the field and saves it to: log, emulator, emulator file.");\r |
55acbb2a M |
2486 | PrintAndLog("You can specify:");\r |
2487 | PrintAndLog(" l - save encrypted sequence to logfile `uid.log`");\r | |
2488 | PrintAndLog(" d - decrypt sequence and put it to log file `uid.log`");\r | |
2489 | PrintAndLog(" n/a e - decrypt sequence, collect read and write commands and save the result of the sequence to emulator memory");\r | |
3fe4ff4f | 2490 | PrintAndLog(" f - decrypt sequence, collect read and write commands and save the result of the sequence to emulator dump file `uid.eml`");\r |
2491 | PrintAndLog("Usage: hf mf sniff [l][d][e][f]");\r | |
55acbb2a | 2492 | PrintAndLog(" sample: hf mf sniff l d e");\r |
b62a5a84 | 2493 | return 0;\r |
7906cb41 F |
2494 | }\r |
2495 | \r | |
55acbb2a | 2496 | for (int i = 0; i < 4; i++) {\r |
e3c23565 | 2497 | ctmp = param_getchar(Cmd, i);\r |
55acbb2a M |
2498 | if (ctmp == 'l' || ctmp == 'L') wantLogToFile = true;\r |
2499 | if (ctmp == 'd' || ctmp == 'D') wantDecrypt = true;\r | |
eede7162 | 2500 | //if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true; TODO\r |
55acbb2a M |
2501 | if (ctmp == 'f' || ctmp == 'F') wantSaveToEmlFile = true;\r |
2502 | }\r | |
7906cb41 | 2503 | \r |
39864b0b M |
2504 | printf("-------------------------------------------------------------------------\n");\r |
2505 | printf("Executing command. \n");\r | |
2506 | printf("Press the key on the proxmark3 device to abort both proxmark3 and client.\n");\r | |
2507 | printf("Press the key on pc keyboard to abort the client.\n");\r | |
2508 | printf("-------------------------------------------------------------------------\n");\r | |
2509 | \r | |
d714d3ef | 2510 | UsbCommand c = {CMD_MIFARE_SNIFFER, {0, 0, 0}};\r |
2511 | clearCommandBuffer();\r | |
2512 | SendCommand(&c);\r | |
b62a5a84 | 2513 | \r |
39864b0b M |
2514 | // wait cycle\r |
2515 | while (true) {\r | |
2516 | printf(".");\r | |
2517 | fflush(stdout);\r | |
2518 | if (ukbhit()) {\r | |
2519 | getchar();\r | |
2520 | printf("\naborted via keyboard!\n");\r | |
2521 | break;\r | |
2522 | }\r | |
7906cb41 | 2523 | \r |
f71f4deb | 2524 | UsbCommand resp;\r |
2525 | if (WaitForResponseTimeout(CMD_ACK,&resp,2000)) {\r | |
902cb3c0 | 2526 | res = resp.arg[0] & 0xff;\r |
f71f4deb | 2527 | uint16_t traceLen = resp.arg[1];\r |
2528 | len = resp.arg[2];\r | |
2529 | \r | |
4c16ae80 | 2530 | if (res == 0) { // we are done\r |
2531 | free(buf);\r | |
2532 | return 0;\r | |
2533 | }\r | |
f71f4deb | 2534 | \r |
2535 | if (res == 1) { // there is (more) data to be transferred\r | |
2536 | if (pckNum == 0) { // first packet, (re)allocate necessary buffer\r | |
4c16ae80 | 2537 | if (traceLen > bufsize || buf == NULL) {\r |
f71f4deb | 2538 | uint8_t *p;\r |
2539 | if (buf == NULL) { // not yet allocated\r | |
2540 | p = malloc(traceLen);\r | |
2541 | } else { // need more memory\r | |
2542 | p = realloc(buf, traceLen);\r | |
2543 | }\r | |
2544 | if (p == NULL) {\r | |
2545 | PrintAndLog("Cannot allocate memory for trace");\r | |
2546 | free(buf);\r | |
2547 | return 2;\r | |
2548 | }\r | |
2549 | buf = p;\r | |
2550 | }\r | |
39864b0b | 2551 | bufPtr = buf;\r |
f71f4deb | 2552 | bufsize = traceLen;\r |
2553 | memset(buf, 0x00, traceLen);\r | |
39864b0b | 2554 | }\r |
902cb3c0 | 2555 | memcpy(bufPtr, resp.d.asBytes, len);\r |
39864b0b M |
2556 | bufPtr += len;\r |
2557 | pckNum++;\r | |
2558 | }\r | |
f71f4deb | 2559 | \r |
2560 | if (res == 2) { // received all data, start displaying\r | |
39864b0b M |
2561 | blockLen = bufPtr - buf;\r |
2562 | bufPtr = buf;\r | |
2563 | printf(">\n");\r | |
2564 | PrintAndLog("received trace len: %d packages: %d", blockLen, pckNum);\r | |
6a1f2d82 | 2565 | while (bufPtr - buf < blockLen) {\r |
f71f4deb | 2566 | bufPtr += 6; // skip (void) timing information\r |
6a1f2d82 | 2567 | len = *((uint16_t *)bufPtr);\r |
2568 | if(len & 0x8000) {\r | |
2569 | isTag = true;\r | |
2570 | len &= 0x7fff;\r | |
2571 | } else {\r | |
2572 | isTag = false;\r | |
2573 | }\r | |
2574 | bufPtr += 2;\r | |
2575 | if ((len == 14) && (bufPtr[0] == 0xff) && (bufPtr[1] == 0xff) && (bufPtr[12] == 0xff) && (bufPtr[13] == 0xff)) {\r | |
39864b0b M |
2576 | memcpy(uid, bufPtr + 2, 7);\r |
2577 | memcpy(atqa, bufPtr + 2 + 7, 2);\r | |
991f13f2 | 2578 | uid_len = (atqa[0] & 0xC0) == 0x40 ? 7 : 4;\r |
39864b0b | 2579 | sak = bufPtr[11];\r |
7906cb41 | 2580 | PrintAndLog("tag select uid:%s atqa:0x%02x%02x sak:0x%02x",\r |
991f13f2 | 2581 | sprint_hex(uid + (7 - uid_len), uid_len),\r |
7906cb41 F |
2582 | atqa[1],\r |
2583 | atqa[0],\r | |
991f13f2 | 2584 | sak);\r |
d714d3ef | 2585 | if (wantLogToFile || wantDecrypt) {\r |
991f13f2 | 2586 | FillFileNameByUID(logHexFileName, uid + (7 - uid_len), ".log", uid_len);\r |
55acbb2a | 2587 | AddLogCurrentDT(logHexFileName);\r |
7906cb41 F |
2588 | }\r |
2589 | if (wantDecrypt)\r | |
3fe4ff4f | 2590 | mfTraceInit(uid, atqa, sak, wantSaveToEmlFile);\r |
39864b0b M |
2591 | } else {\r |
2592 | PrintAndLog("%s(%d):%s", isTag ? "TAG":"RDR", num, sprint_hex(bufPtr, len));\r | |
7906cb41 | 2593 | if (wantLogToFile)\r |
3fe4ff4f | 2594 | AddLogHex(logHexFileName, isTag ? "TAG: ":"RDR: ", bufPtr, len);\r |
7906cb41 | 2595 | if (wantDecrypt)\r |
3fe4ff4f | 2596 | mfTraceDecode(bufPtr, len, wantSaveToEmlFile);\r |
7906cb41 | 2597 | num++;\r |
39864b0b M |
2598 | }\r |
2599 | bufPtr += len;\r | |
6a1f2d82 | 2600 | bufPtr += ((len-1)/8+1); // ignore parity\r |
39864b0b | 2601 | }\r |
f71f4deb | 2602 | pckNum = 0;\r |
39864b0b | 2603 | }\r |
3fe4ff4f | 2604 | } // resp not NULL\r |
39864b0b | 2605 | } // while (true)\r |
f71f4deb | 2606 | \r |
2607 | free(buf);\r | |
d714d3ef | 2608 | return 0;\r |
b62a5a84 M |
2609 | }\r |
2610 | \r | |
1a5a73ab | 2611 | //needs nt, ar, at, Data to decrypt\r |
2612 | int CmdDecryptTraceCmds(const char *Cmd){\r | |
2613 | uint8_t data[50];\r | |
2614 | int len = 0;\r | |
2615 | param_gethex_ex(Cmd,3,data,&len);\r | |
2616 | return tryDecryptWord(param_get32ex(Cmd,0,0,16),param_get32ex(Cmd,1,0,16),param_get32ex(Cmd,2,0,16),data,len/2);\r | |
2617 | }\r | |
f71f4deb | 2618 | \r |
26fdb4ab | 2619 | static command_t CommandTable[] =\r |
9ca155ba | 2620 | {\r |
c48c4d78 | 2621 | {"help", CmdHelp, 1, "This help"},\r |
2622 | {"dbg", CmdHF14AMfDbg, 0, "Set default debug mode"},\r | |
2623 | {"rdbl", CmdHF14AMfRdBl, 0, "Read MIFARE classic block"},\r | |
2624 | {"rdsc", CmdHF14AMfRdSc, 0, "Read MIFARE classic sector"},\r | |
2625 | {"dump", CmdHF14AMfDump, 0, "Dump MIFARE classic tag to binary file"},\r | |
2626 | {"restore", CmdHF14AMfRestore, 0, "Restore MIFARE classic binary file to BLANK tag"},\r | |
2627 | {"wrbl", CmdHF14AMfWrBl, 0, "Write MIFARE classic block"},\r | |
2628 | {"chk", CmdHF14AMfChk, 0, "Test block keys"},\r | |
2629 | {"mifare", CmdHF14AMifare, 0, "Read parity error messages."},\r | |
2630 | {"hardnested", CmdHF14AMfNestedHard, 0, "Nested attack for hardened Mifare cards"},\r | |
2631 | {"nested", CmdHF14AMfNested, 0, "Test nested authentication"},\r | |
2632 | {"sniff", CmdHF14AMfSniff, 0, "Sniff card-reader communication"},\r | |
2633 | {"sim", CmdHF14AMf1kSim, 0, "Simulate MIFARE card"},\r | |
2634 | {"eclr", CmdHF14AMfEClear, 0, "Clear simulator memory block"},\r | |
2635 | {"eget", CmdHF14AMfEGet, 0, "Get simulator memory block"},\r | |
2636 | {"eset", CmdHF14AMfESet, 0, "Set simulator memory block"},\r | |
2637 | {"eload", CmdHF14AMfELoad, 0, "Load from file emul dump"},\r | |
2638 | {"esave", CmdHF14AMfESave, 0, "Save to file emul dump"},\r | |
2639 | {"ecfill", CmdHF14AMfECFill, 0, "Fill simulator memory with help of keys from simulator"},\r | |
2640 | {"ekeyprn", CmdHF14AMfEKeyPrn, 0, "Print keys from simulator memory"},\r | |
3a05a1e7 | 2641 | {"cwipe", CmdHF14AMfCWipe, 0, "Wipe magic Chinese card"},\r |
c48c4d78 | 2642 | {"csetuid", CmdHF14AMfCSetUID, 0, "Set UID for magic Chinese card"},\r |
2643 | {"csetblk", CmdHF14AMfCSetBlk, 0, "Write block - Magic Chinese card"},\r | |
2644 | {"cgetblk", CmdHF14AMfCGetBlk, 0, "Read block - Magic Chinese card"},\r | |
2645 | {"cgetsc", CmdHF14AMfCGetSc, 0, "Read sector - Magic Chinese card"},\r | |
2646 | {"cload", CmdHF14AMfCLoad, 0, "Load dump into magic Chinese card"},\r | |
2647 | {"csave", CmdHF14AMfCSave, 0, "Save dump from magic Chinese card into file or emulator"},\r | |
2648 | {"decrypt", CmdDecryptTraceCmds, 1, "[nt] [ar_enc] [at_enc] [data] - to decrypt snoop or trace"},\r | |
2649 | {NULL, NULL, 0, NULL}\r | |
9ca155ba M |
2650 | };\r |
2651 | \r | |
2652 | int CmdHFMF(const char *Cmd)\r | |
2653 | {\r | |
2654 | // flush\r | |
7dd1908b | 2655 | WaitForResponseTimeout(CMD_ACK,NULL,100);\r |
9ca155ba M |
2656 | \r |
2657 | CmdsParse(CommandTable, Cmd);\r | |
2658 | return 0;\r | |
2659 | }\r | |
2660 | \r | |
2661 | int CmdHelp(const char *Cmd)\r | |
2662 | {\r | |
2663 | CmdsHelp(CommandTable);\r | |
2664 | return 0;\r | |
2665 | }\r |