]>
Commit | Line | Data |
---|---|---|
cee5a30d | 1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>, Hagen Fritsch | |
3 | // Copyright (C) 2011 Gerhard de Koning Gans | |
fecd8202 | 4 | // Copyright (C) 2014 Midnitesnake & Andy Davies |
cee5a30d | 5 | // |
6 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
7 | // at your option, any later version. See the LICENSE.txt file for the text of | |
8 | // the license. | |
9 | //----------------------------------------------------------------------------- | |
10 | // High frequency iClass commands | |
11 | //----------------------------------------------------------------------------- | |
12 | ||
13 | #include <stdio.h> | |
14 | #include <stdlib.h> | |
15 | #include <string.h> | |
16 | #include "iso14443crc.h" // Can also be used for iClass, using 0xE012 as CRC-type | |
17 | #include "data.h" | |
28fdb04f | 18 | //#include "proxusb.h" |
902cb3c0 | 19 | #include "proxmark3.h" |
cee5a30d | 20 | #include "ui.h" |
21 | #include "cmdparser.h" | |
22 | #include "cmdhficlass.h" | |
23 | #include "common.h" | |
14006804 | 24 | #include "util.h" |
a66fca86 AD |
25 | #include "loclass/des.h" |
26 | #include "loclass/cipherutils.h" | |
27 | #include "loclass/cipher.h" | |
28 | #include "loclass/ikeys.h" | |
cee5a30d | 29 | |
30 | static int CmdHelp(const char *Cmd); | |
31 | ||
32 | int CmdHFiClassList(const char *Cmd) | |
33 | { | |
34 | uint8_t got[1920]; | |
db09cb3a | 35 | GetFromBigBuf(got,sizeof(got),0); |
cee5a30d | 36 | |
37 | PrintAndLog("recorded activity:"); | |
38 | PrintAndLog(" ETU :rssi: who bytes"); | |
39 | PrintAndLog("---------+----+----+-----------"); | |
40 | ||
41 | int i = 0; | |
42 | int prev = -1; | |
43 | ||
44 | for (;;) { | |
45 | if(i >= 1900) { | |
46 | break; | |
47 | } | |
48 | ||
49 | bool isResponse; | |
50 | int timestamp = *((uint32_t *)(got+i)); | |
51 | if (timestamp & 0x80000000) { | |
52 | timestamp &= 0x7fffffff; | |
53 | isResponse = 1; | |
54 | } else { | |
55 | isResponse = 0; | |
56 | } | |
57 | ||
58 | int metric = 0; | |
59 | int parityBits = *((uint32_t *)(got+i+4)); | |
60 | // 4 bytes of additional information... | |
61 | // maximum of 32 additional parity bit information | |
62 | // | |
63 | // TODO: | |
64 | // at each quarter bit period we can send power level (16 levels) | |
65 | // or each half bit period in 256 levels. | |
66 | ||
67 | ||
68 | int len = got[i+8]; | |
69 | ||
70 | if (len > 100) { | |
71 | break; | |
72 | } | |
73 | if (i + len >= 1900) { | |
74 | break; | |
75 | } | |
76 | ||
77 | uint8_t *frame = (got+i+9); | |
78 | ||
79 | // Break and stick with current result if buffer was not completely full | |
80 | if (frame[0] == 0x44 && frame[1] == 0x44 && frame[3] == 0x44) { break; } | |
81 | ||
82 | char line[1000] = ""; | |
83 | int j; | |
84 | for (j = 0; j < len; j++) { | |
85 | int oddparity = 0x01; | |
86 | int k; | |
87 | ||
88 | for (k=0;k<8;k++) { | |
89 | oddparity ^= (((frame[j] & 0xFF) >> k) & 0x01); | |
90 | } | |
91 | ||
92 | //if((parityBits >> (len - j - 1)) & 0x01) { | |
93 | if (isResponse && (oddparity != ((parityBits >> (len - j - 1)) & 0x01))) { | |
94 | sprintf(line+(j*4), "%02x! ", frame[j]); | |
95 | } | |
96 | else { | |
97 | sprintf(line+(j*4), "%02x ", frame[j]); | |
98 | } | |
99 | } | |
100 | ||
101 | char *crc; | |
102 | crc = ""; | |
103 | if (len > 2) { | |
104 | uint8_t b1, b2; | |
105 | for (j = 0; j < (len - 1); j++) { | |
106 | // gives problems... search for the reason.. | |
107 | /*if(frame[j] == 0xAA) { | |
108 | switch(frame[j+1]) { | |
109 | case 0x01: | |
110 | crc = "[1] Two drops close after each other"; | |
111 | break; | |
112 | case 0x02: | |
113 | crc = "[2] Potential SOC with a drop in second half of bitperiod"; | |
114 | break; | |
115 | case 0x03: | |
116 | crc = "[3] Segment Z after segment X is not possible"; | |
117 | break; | |
118 | case 0x04: | |
119 | crc = "[4] Parity bit of a fully received byte was wrong"; | |
120 | break; | |
121 | default: | |
122 | crc = "[?] Unknown error"; | |
123 | break; | |
124 | } | |
125 | break; | |
126 | }*/ | |
127 | } | |
128 | ||
129 | if (strlen(crc)==0) { | |
130 | if(!isResponse && len == 4) { | |
131 | // Rough guess that this is a command from the reader | |
132 | // For iClass the command byte is not part of the CRC | |
133 | ComputeCrc14443(CRC_ICLASS, &frame[1], len-3, &b1, &b2); | |
134 | } | |
135 | else { | |
136 | // For other data.. CRC might not be applicable (UPDATE commands etc.) | |
137 | ComputeCrc14443(CRC_ICLASS, frame, len-2, &b1, &b2); | |
138 | } | |
139 | //printf("%1x %1x",(unsigned)b1,(unsigned)b2); | |
140 | if (b1 != frame[len-2] || b2 != frame[len-1]) { | |
141 | crc = (isResponse & (len < 8)) ? "" : " !crc"; | |
142 | } else { | |
143 | crc = ""; | |
144 | } | |
145 | } | |
146 | } else { | |
147 | crc = ""; // SHORT | |
148 | } | |
149 | ||
150 | char metricString[100]; | |
151 | if (isResponse) { | |
152 | sprintf(metricString, "%3d", metric); | |
153 | } else { | |
154 | strcpy(metricString, " "); | |
155 | } | |
156 | ||
157 | PrintAndLog(" +%7d: %s: %s %s %s", | |
158 | (prev < 0 ? 0 : (timestamp - prev)), | |
159 | metricString, | |
160 | (isResponse ? "TAG" : " "), line, crc); | |
161 | ||
162 | prev = timestamp; | |
163 | i += (len + 9); | |
164 | } | |
165 | return 0; | |
166 | } | |
167 | ||
cee5a30d | 168 | int CmdHFiClassSnoop(const char *Cmd) |
169 | { | |
170 | UsbCommand c = {CMD_SNOOP_ICLASS}; | |
171 | SendCommand(&c); | |
172 | return 0; | |
173 | } | |
174 | ||
1e262141 | 175 | int CmdHFiClassSim(const char *Cmd) |
176 | { | |
177 | uint8_t simType = 0; | |
178 | uint8_t CSN[8] = {0, 0, 0, 0, 0, 0, 0, 0}; | |
179 | ||
180 | if (strlen(Cmd)<2) { | |
181 | PrintAndLog("Usage: hf iclass sim <sim type> <CSN (16 hex symbols)>"); | |
182 | PrintAndLog(" sample: hf iclass sim 0 031FEC8AF7FF12E0"); | |
183 | return 0; | |
184 | } | |
185 | ||
186 | simType = param_get8(Cmd, 0); | |
187 | if (param_gethex(Cmd, 1, CSN, 16)) { | |
188 | PrintAndLog("A CSN should consist of 16 HEX symbols"); | |
189 | return 1; | |
190 | } | |
191 | PrintAndLog("--simtype:%02x csn:%s", simType, sprint_hex(CSN, 8)); | |
192 | ||
193 | UsbCommand c = {CMD_SIMULATE_TAG_ICLASS, {simType}}; | |
194 | memcpy(c.d.asBytes, CSN, 8); | |
195 | SendCommand(&c); | |
196 | ||
1e262141 | 197 | return 0; |
198 | } | |
199 | ||
200 | int CmdHFiClassReader(const char *Cmd) | |
201 | { | |
202 | uint8_t readerType = 0; | |
203 | ||
204 | if (strlen(Cmd)<1) { | |
205 | PrintAndLog("Usage: hf iclass reader <reader type>"); | |
206 | PrintAndLog(" sample: hf iclass reader 0"); | |
207 | return 0; | |
208 | } | |
209 | ||
210 | readerType = param_get8(Cmd, 0); | |
211 | PrintAndLog("--readertype:%02x", readerType); | |
212 | ||
213 | UsbCommand c = {CMD_READER_ICLASS, {readerType}}; | |
1e262141 | 214 | SendCommand(&c); |
215 | ||
c3963755 | 216 | return 0; |
217 | } | |
218 | ||
219 | int CmdHFiClassReader_Replay(const char *Cmd) | |
220 | { | |
221 | uint8_t readerType = 0; | |
222 | uint8_t MAC[4]={0x00, 0x00, 0x00, 0x00}; | |
223 | ||
224 | if (strlen(Cmd)<1) { | |
225 | PrintAndLog("Usage: hf iclass replay <MAC>"); | |
226 | PrintAndLog(" sample: hf iclass replay 00112233"); | |
227 | return 0; | |
228 | } | |
229 | ||
230 | if (param_gethex(Cmd, 0, MAC, 8)) { | |
231 | PrintAndLog("MAC must include 8 HEX symbols"); | |
232 | return 1; | |
233 | } | |
234 | ||
235 | UsbCommand c = {CMD_READER_ICLASS_REPLAY, {readerType}}; | |
236 | memcpy(c.d.asBytes, MAC, 4); | |
237 | SendCommand(&c); | |
1e262141 | 238 | |
239 | return 0; | |
240 | } | |
241 | ||
a66fca86 AD |
242 | int CmdHFiClassReader_Dump(const char *Cmd) |
243 | { | |
244 | uint8_t readerType = 0; | |
245 | uint8_t MAC[4]={0x00,0x00,0x00,0x00}; | |
246 | uint8_t KEY[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
247 | uint8_t CSN[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
248 | uint8_t CCNR[12]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
fecd8202 | 249 | //uint8_t CC_temp[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; |
a66fca86 AD |
250 | uint8_t result[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; |
251 | uint8_t div_key[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
252 | des_context ctx_enc; | |
253 | uint64_t crypted_id=0; | |
254 | ||
fecd8202 | 255 | if (strlen(Cmd)<1) |
256 | { | |
257 | //PrintAndLog("Usage: hf iclass dump <Key> <CSN> <CC>"); | |
258 | //PrintAndLog(" sample: hf iclass dump 0011223344556677 aabbccddeeffgghh FFFFFFFFFFFFFFFF"); | |
259 | PrintAndLog("Usage: hf iclass dump <Key>"); | |
260 | PrintAndLog(" sample: hf iclass dump 0011223344556677"); | |
a66fca86 AD |
261 | return 0; |
262 | } | |
263 | ||
fecd8202 | 264 | if (param_gethex(Cmd, 0, KEY, 16)) |
265 | { | |
a66fca86 AD |
266 | PrintAndLog("KEY must include 16 HEX symbols"); |
267 | return 1; | |
268 | } | |
269 | ||
fecd8202 | 270 | /*if (param_gethex(Cmd, 1, CSN, 16)) |
271 | { | |
a66fca86 AD |
272 | PrintAndLog("CSN must include 16 HEX symbols"); |
273 | return 1; | |
274 | } | |
fecd8202 | 275 | if (param_gethex(Cmd, 2, CC_temp, 16)) |
276 | { | |
a66fca86 AD |
277 | PrintAndLog("CC must include 16 HEX symbols"); |
278 | return 1; | |
fecd8202 | 279 | }*/ |
280 | ||
281 | UsbCommand c = {CMD_ICLASS_ISO14443A_GETPUBLIC, {0}}; | |
282 | //memcpy(c.d.asBytes, MAC, 4); | |
283 | SendCommand(&c); | |
284 | ||
285 | UsbCommand resp; | |
286 | if (WaitForResponseTimeout(CMD_ACK,&resp,4500)) { | |
287 | uint8_t isOK = resp.arg[0] & 0xff; | |
288 | uint8_t * data = resp.d.asBytes; | |
289 | ||
290 | memcpy(CSN,data,8); | |
291 | memcpy(CCNR,data+8,8); | |
292 | PrintAndLog("DEBUG: %s",sprint_hex(CSN,8)); | |
293 | PrintAndLog("DEBUG: %s",sprint_hex(CCNR,8)); | |
294 | PrintAndLog("isOk:%02x", isOK); | |
295 | } else { | |
296 | PrintAndLog("Command execute timeout"); | |
a66fca86 AD |
297 | } |
298 | ||
fecd8202 | 299 | |
300 | //memcpy(CCNR,CC_temp,8); | |
a66fca86 AD |
301 | des_setkey_enc( &ctx_enc, KEY); |
302 | des_crypt_ecb(&ctx_enc,CSN,result); | |
303 | PrintAndLog("DES Key: %s",sprint_hex(result,8)); | |
fecd8202 | 304 | uint64_t newz=0; |
305 | crypted_id = bytes_to_num(result,8); | |
306 | uint64_t x = (crypted_id & 0xFFFF000000000000 ); | |
307 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,0),7); | |
308 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,1),6); | |
309 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,2),5); | |
310 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,3),4); | |
311 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,4),3); | |
312 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,5),2); | |
313 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,6),1); | |
314 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,7),0); | |
315 | newz|= x; | |
316 | crypted_id=newz; | |
317 | num_to_bytes(crypted_id,8,result); | |
a66fca86 | 318 | PrintAndLog("DESr Key: %s",sprint_hex(result,8)); |
a66fca86 | 319 | hash0(crypted_id,div_key); |
a66fca86 | 320 | PrintAndLog("Div Key: %s",sprint_hex(div_key,8)); |
fe53c031 | 321 | calc_iclass_mac(CCNR,12,div_key,MAC); |
a66fca86 | 322 | |
fecd8202 | 323 | UsbCommand d = {CMD_READER_ICLASS_REPLAY, {readerType}}; |
324 | memcpy(d.d.asBytes, MAC, 4); | |
325 | SendCommand(&d); | |
326 | ||
327 | return 0; | |
328 | } | |
329 | ||
330 | int CmdHFiClass_iso14443A_write(const char *Cmd) | |
331 | { | |
332 | uint8_t readerType = 0; | |
333 | uint8_t MAC[4]={0x00,0x00,0x00,0x00}; | |
334 | uint8_t KEY[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
335 | uint8_t CSN[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
336 | uint8_t CCNR[12]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
337 | uint8_t CC_temp[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
338 | uint8_t result[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
339 | uint8_t div_key[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; | |
340 | des_context ctx_enc; | |
341 | uint64_t crypted_id=0; | |
342 | uint8_t blockNo=0; | |
343 | uint8_t bldata[8]={0}; | |
344 | ||
345 | if (strlen(Cmd)<3) | |
346 | { | |
347 | PrintAndLog("Usage: hf iclass write <Key> <Block> <Data>"); | |
348 | PrintAndLog(" sample: hf iclass write 0011223344556677 10 AAAAAAAAAAAAAAAA"); | |
349 | return 0; | |
350 | } | |
351 | ||
352 | if (param_gethex(Cmd, 0, KEY, 16)) | |
353 | { | |
354 | PrintAndLog("KEY must include 16 HEX symbols"); | |
355 | return 1; | |
356 | } | |
357 | ||
358 | blockNo = param_get8(Cmd, 1); | |
359 | if (blockNo>32) | |
360 | { | |
361 | PrintAndLog("Error: Maximum number of blocks is 32 for iClass 2K Cards!"); | |
362 | return 1; | |
363 | } | |
364 | if (param_gethex(Cmd, 2, bldata, 8)) | |
365 | { | |
366 | PrintAndLog("Block data must include 8 HEX symbols"); | |
367 | return 1; | |
368 | } | |
369 | ||
370 | UsbCommand c = {CMD_ICLASS_ISO14443A_GETPUBLIC, {0}}; | |
371 | //memcpy(c.d.asBytes, MAC, 4); | |
372 | SendCommand(&c); | |
373 | ||
374 | UsbCommand resp; | |
375 | if (WaitForResponseTimeout(CMD_ACK,&resp,4500)) { | |
376 | uint8_t isOK = resp.arg[0] & 0xff; | |
377 | uint8_t * data = resp.d.asBytes; | |
378 | ||
379 | memcpy(CSN,data,8); | |
380 | memcpy(CCNR,data+8,8); | |
381 | PrintAndLog("DEBUG: %s",sprint_hex(CSN,8)); | |
382 | PrintAndLog("DEBUG: %s",sprint_hex(CCNR,8)); | |
383 | PrintAndLog("isOk:%02x", isOK); | |
384 | } else { | |
385 | PrintAndLog("Command execute timeout"); | |
386 | } | |
387 | ||
388 | des_setkey_enc( &ctx_enc, KEY); | |
389 | des_crypt_ecb(&ctx_enc,CSN,result); | |
390 | PrintAndLog("DES Key: %s",sprint_hex(result,8)); | |
391 | uint64_t newz=0; | |
392 | crypted_id = bytes_to_num(result,8); | |
393 | uint64_t x = (crypted_id & 0xFFFF000000000000 ); | |
394 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,0),7); | |
395 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,1),6); | |
396 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,2),5); | |
397 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,3),4); | |
398 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,4),3); | |
399 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,5),2); | |
400 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,6),1); | |
401 | pushbackSixBitByte(&newz, getSixBitByte(crypted_id,7),0); | |
402 | newz|= x; | |
403 | crypted_id=newz; | |
404 | num_to_bytes(crypted_id,8,result); | |
405 | PrintAndLog("DESr Key: %s",sprint_hex(result,8)); | |
406 | hash0(crypted_id,div_key); | |
407 | PrintAndLog("Div Key: %s",sprint_hex(div_key,8)); | |
408 | calc_iclass_mac(CCNR,12,div_key,MAC); | |
409 | ||
410 | UsbCommand c = {CMD_ICLASS_ISO14443A_WRITE, {readerType,blockNo}}; | |
411 | memcpy(c.d.asBytes, bldata, 8); | |
412 | memcpy(c.d.asBytes+8, MAC, 4); | |
a66fca86 AD |
413 | SendCommand(&c); |
414 | ||
fecd8202 | 415 | UsbCommand resp; |
416 | if (WaitForResponseTimeout(CMD_ACK,&resp,1500)) { | |
417 | uint8_t isOK = resp.arg[0] & 0xff; | |
418 | uint8_t * data = resp.d.asBytes; | |
419 | ||
420 | if (isOK) | |
421 | PrintAndLog("isOk:%02x data:%s", isOK, sprint_hex(data, 4)); | |
422 | else | |
423 | PrintAndLog("isOk:%02x", isOK); | |
424 | } else { | |
425 | PrintAndLog("Command execute timeout"); | |
426 | } | |
a66fca86 AD |
427 | return 0; |
428 | } | |
429 | ||
c3963755 | 430 | |
cee5a30d | 431 | static command_t CommandTable[] = |
432 | { | |
fecd8202 | 433 | {"help", CmdHelp, 1, "This help"}, |
434 | {"list", CmdHFiClassList, 0, "List iClass history"}, | |
435 | {"snoop", CmdHFiClassSnoop, 0, "Eavesdrop iClass communication"}, | |
436 | {"sim", CmdHFiClassSim, 0, "Simulate iClass tag"}, | |
437 | {"reader",CmdHFiClassReader, 0, "Read an iClass tag"}, | |
438 | {"replay",CmdHFiClassReader_Replay, 0, "Read an iClass tag via Reply Attack"}, | |
439 | {"dump", CmdHFiClassReader_Dump, 0, "Authenticate and Dump iClass tag"}, | |
440 | {"write", CmdHFiClass_iso14443A_write, 0, "Authenticate and Write iClass block"}, | |
cee5a30d | 441 | {NULL, NULL, 0, NULL} |
442 | }; | |
443 | ||
444 | int CmdHFiClass(const char *Cmd) | |
445 | { | |
446 | CmdsParse(CommandTable, Cmd); | |
447 | return 0; | |
448 | } | |
449 | ||
450 | int CmdHelp(const char *Cmd) | |
451 | { | |
452 | CmdsHelp(CommandTable); | |
453 | return 0; | |
454 | } |