]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhfmf.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2011,2012 Merlok
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // High frequency MIFARE commands
9 //-----------------------------------------------------------------------------
12 #include "./nonce2key/nonce2key.h"
14 static int CmdHelp ( const char * Cmd
);
16 int CmdHF14AMifare ( const char * Cmd
)
19 uint32_t nt
= 0 , nr
= 0 ;
20 uint64_t par_list
= 0 , ks_list
= 0 , r_key
= 0 ;
23 UsbCommand c
= { CMD_READER_MIFARE
, { true , 0 , 0 }};
26 printf ( "------------------------------------------------------------------------- \n " );
27 printf ( "Executing command. Expected execution time: 25sec on average :-) \n " );
28 printf ( "Press button on the proxmark3 device to abort both proxmark3 and client. \n " );
29 printf ( "------------------------------------------------------------------------- \n " );
37 while ( ukbhit ()) getchar ();
45 printf ( " \n aborted via keyboard! \n " );
50 if ( WaitForResponseTimeout ( CMD_ACK
, & resp
, 1000 )) {
52 uid
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 0 , 4 );
53 nt
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 4 , 4 );
54 par_list
= bytes_to_num ( resp
. d
. asBytes
+ 8 , 8 );
55 ks_list
= bytes_to_num ( resp
. d
. asBytes
+ 16 , 8 );
56 nr
= bytes_to_num ( resp
. d
. asBytes
+ 24 , 4 );
59 case - 1 : PrintAndLog ( "Button pressed. Aborted. \n " ); break ;
60 case - 2 : PrintAndLog ( "Card is not vulnerable to Darkside attack (doesn't send NACK on authentication requests). \n " ); break ;
61 case - 3 : PrintAndLog ( "Card is not vulnerable to Darkside attack (its random number generator is not predictable). \n " ); break ;
62 case - 4 : PrintAndLog ( "Card is not vulnerable to Darkside attack (its random number generator seems to be based on the wellknown" );
63 PrintAndLog ( "generating polynomial with 16 effective bits only, but shows unexpected behaviour. \n " ); break ;
73 if ( isOK
!= 1 ) return 1 ;
75 // execute original function from util nonce2key
76 if ( nonce2key ( uid
, nt
, nr
, par_list
, ks_list
, & r_key
)) {
78 PrintAndLog ( "Key not found (lfsr_common_prefix list is null). Nt=%08x" , nt
);
79 PrintAndLog ( "Failing is expected to happen in 25%% of all cases. Trying again with a different reader nonce..." );
84 printf ( "------------------------------------------------------------------ \n " );
85 PrintAndLog ( "Found valid key:%012" llx
" \n " , r_key
);
92 int CmdHF14AMfWrBl ( const char * Cmd
)
96 uint8_t key
[ 6 ] = { 0 , 0 , 0 , 0 , 0 , 0 };
97 uint8_t bldata
[ 16 ] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
102 PrintAndLog ( "Usage: hf mf wrbl <block number> <key A/B> <key (12 hex symbols)> <block data (32 hex symbols)>" );
103 PrintAndLog ( " sample: hf mf wrbl 0 A FFFFFFFFFFFF 000102030405060708090A0B0C0D0E0F" );
107 blockNo
= param_get8 ( Cmd
, 0 );
108 cmdp
= param_getchar ( Cmd
, 1 );
110 PrintAndLog ( "Key type must be A or B" );
113 if ( cmdp
!= 'A' && cmdp
!= 'a' ) keyType
= 1 ;
114 if ( param_gethex ( Cmd
, 2 , key
, 12 )) {
115 PrintAndLog ( "Key must include 12 HEX symbols" );
118 if ( param_gethex ( Cmd
, 3 , bldata
, 32 )) {
119 PrintAndLog ( "Block data must include 32 HEX symbols" );
122 PrintAndLog ( "--block no:%d, key type:%c, key:%s" , blockNo
, keyType
? 'B' : 'A' , sprint_hex ( key
, 6 ));
123 PrintAndLog ( "--data: %s" , sprint_hex ( bldata
, 16 ));
125 UsbCommand c
= { CMD_MIFARE_WRITEBL
, { blockNo
, keyType
, 0 }};
126 memcpy ( c
. d
. asBytes
, key
, 6 );
127 memcpy ( c
. d
. asBytes
+ 10 , bldata
, 16 );
131 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
132 uint8_t isOK
= resp
. arg
[ 0 ] & 0xff ;
133 PrintAndLog ( "isOk:%02x" , isOK
);
135 PrintAndLog ( "Command execute timeout" );
141 int CmdHF14AMfRdBl ( const char * Cmd
)
145 uint8_t key
[ 6 ] = { 0 , 0 , 0 , 0 , 0 , 0 };
151 PrintAndLog ( "Usage: hf mf rdbl <block number> <key A/B> <key (12 hex symbols)>" );
152 PrintAndLog ( " sample: hf mf rdbl 0 A FFFFFFFFFFFF " );
156 blockNo
= param_get8 ( Cmd
, 0 );
157 cmdp
= param_getchar ( Cmd
, 1 );
159 PrintAndLog ( "Key type must be A or B" );
162 if ( cmdp
!= 'A' && cmdp
!= 'a' ) keyType
= 1 ;
163 if ( param_gethex ( Cmd
, 2 , key
, 12 )) {
164 PrintAndLog ( "Key must include 12 HEX symbols" );
167 PrintAndLog ( "--block no:%d, key type:%c, key:%s " , blockNo
, keyType
? 'B' : 'A' , sprint_hex ( key
, 6 ));
169 UsbCommand c
= { CMD_MIFARE_READBL
, { blockNo
, keyType
, 0 }};
170 memcpy ( c
. d
. asBytes
, key
, 6 );
174 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
175 uint8_t isOK
= resp
. arg
[ 0 ] & 0xff ;
176 uint8_t * data
= resp
. d
. asBytes
;
179 PrintAndLog ( "isOk:%02x data:%s" , isOK
, sprint_hex ( data
, 16 ));
181 PrintAndLog ( "isOk:%02x" , isOK
);
183 PrintAndLog ( "Command execute timeout" );
189 int CmdHF14AMfRdSc ( const char * Cmd
)
192 uint8_t sectorNo
= 0 ;
194 uint8_t key
[ 6 ] = { 0 , 0 , 0 , 0 , 0 , 0 };
196 uint8_t * data
= NULL
;
200 PrintAndLog ( "Usage: hf mf rdsc <sector number> <key A/B> <key (12 hex symbols)>" );
201 PrintAndLog ( " sample: hf mf rdsc 0 A FFFFFFFFFFFF " );
205 sectorNo
= param_get8 ( Cmd
, 0 );
207 PrintAndLog ( "Sector number must be less than 40" );
210 cmdp
= param_getchar ( Cmd
, 1 );
211 if ( cmdp
!= 'a' && cmdp
!= 'A' && cmdp
!= 'b' && cmdp
!= 'B' ) {
212 PrintAndLog ( "Key type must be A or B" );
215 if ( cmdp
!= 'A' && cmdp
!= 'a' ) keyType
= 1 ;
216 if ( param_gethex ( Cmd
, 2 , key
, 12 )) {
217 PrintAndLog ( "Key must include 12 HEX symbols" );
220 PrintAndLog ( "--sector no:%d key type:%c key:%s " , sectorNo
, keyType
? 'B' : 'A' , sprint_hex ( key
, 6 ));
222 UsbCommand c
= { CMD_MIFARE_READSC
, { sectorNo
, keyType
, 0 }};
223 memcpy ( c
. d
. asBytes
, key
, 6 );
228 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
229 isOK
= resp
. arg
[ 0 ] & 0xff ;
230 data
= resp
. d
. asBytes
;
232 PrintAndLog ( "isOk:%02x" , isOK
);
234 for ( i
= 0 ; i
< ( sectorNo
< 32 ? 3 : 15 ); i
++) {
235 PrintAndLog ( "data : %s" , sprint_hex ( data
+ i
* 16 , 16 ));
237 PrintAndLog ( "trailer: %s" , sprint_hex ( data
+ ( sectorNo
< 32 ? 3 : 15 ) * 16 , 16 ));
240 PrintAndLog ( "Command execute timeout" );
246 uint8_t FirstBlockOfSector ( uint8_t sectorNo
)
251 return 32 * 4 + ( sectorNo
- 32 ) * 16 ;
255 uint8_t NumBlocksPerSector ( uint8_t sectorNo
)
264 int CmdHF14AMfDump ( const char * Cmd
)
266 uint8_t sectorNo
, blockNo
;
270 uint8_t rights
[ 40 ][ 4 ];
271 uint8_t carddata
[ 256 ][ 16 ];
272 uint8_t numSectors
= 16 ;
279 char cmdp
= param_getchar ( Cmd
, 0 );
281 case '0' : numSectors
= 5 ; break ;
283 case '\0' : numSectors
= 16 ; break ;
284 case '2' : numSectors
= 32 ; break ;
285 case '4' : numSectors
= 40 ; break ;
286 default : numSectors
= 16 ;
289 if ( strlen ( Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H' ) {
290 PrintAndLog ( "Usage: hf mf dump [card memory]" );
291 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
293 PrintAndLog ( "Samples: hf mf dump" );
294 PrintAndLog ( " hf mf dump 4" );
298 if (( fin
= fopen ( "dumpkeys.bin" , "rb" )) == NULL
) {
299 PrintAndLog ( "Could not find file dumpkeys.bin" );
303 // Read keys A from file
304 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
305 if ( fread ( keyA
[ sectorNo
], 1 , 6 , fin
) == 0 ) {
306 PrintAndLog ( "File reading error." );
312 // Read keys B from file
313 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
314 if ( fread ( keyB
[ sectorNo
], 1 , 6 , fin
) == 0 ) {
315 PrintAndLog ( "File reading error." );
323 PrintAndLog ( "|-----------------------------------------|" );
324 PrintAndLog ( "|------ Reading sector access bits...-----|" );
325 PrintAndLog ( "|-----------------------------------------|" );
327 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
328 UsbCommand c
= { CMD_MIFARE_READBL
, { FirstBlockOfSector ( sectorNo
) + NumBlocksPerSector ( sectorNo
) - 1 , 0 , 0 }};
329 memcpy ( c
. d
. asBytes
, keyA
[ sectorNo
], 6 );
332 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
333 uint8_t isOK
= resp
. arg
[ 0 ] & 0xff ;
334 uint8_t * data
= resp
. d
. asBytes
;
336 rights
[ sectorNo
][ 0 ] = (( data
[ 7 ] & 0x10 )>> 2 ) | (( data
[ 8 ] & 0x1 )<< 1 ) | (( data
[ 8 ] & 0x10 )>> 4 ); // C1C2C3 for data area 0
337 rights
[ sectorNo
][ 1 ] = (( data
[ 7 ] & 0x20 )>> 3 ) | (( data
[ 8 ] & 0x2 )<< 0 ) | (( data
[ 8 ] & 0x20 )>> 5 ); // C1C2C3 for data area 1
338 rights
[ sectorNo
][ 2 ] = (( data
[ 7 ] & 0x40 )>> 4 ) | (( data
[ 8 ] & 0x4 )>> 1 ) | (( data
[ 8 ] & 0x40 )>> 6 ); // C1C2C3 for data area 2
339 rights
[ sectorNo
][ 3 ] = (( data
[ 7 ] & 0x80 )>> 5 ) | (( data
[ 8 ] & 0x8 )>> 2 ) | (( data
[ 8 ] & 0x80 )>> 7 ); // C1C2C3 for sector trailer
341 PrintAndLog ( "Could not get access rights for sector %2d. Trying with defaults..." , sectorNo
);
342 rights
[ sectorNo
][ 0 ] = rights
[ sectorNo
][ 1 ] = rights
[ sectorNo
][ 2 ] = 0x00 ;
343 rights
[ sectorNo
][ 3 ] = 0x01 ;
346 PrintAndLog ( "Command execute timeout when trying to read access rights for sector %2d. Trying with defaults..." , sectorNo
);
347 rights
[ sectorNo
][ 0 ] = rights
[ sectorNo
][ 1 ] = rights
[ sectorNo
][ 2 ] = 0x00 ;
348 rights
[ sectorNo
][ 3 ] = 0x01 ;
352 PrintAndLog ( "|-----------------------------------------|" );
353 PrintAndLog ( "|----- Dumping all blocks to file... -----|" );
354 PrintAndLog ( "|-----------------------------------------|" );
357 for ( sectorNo
= 0 ; isOK
&& sectorNo
< numSectors
; sectorNo
++) {
358 for ( blockNo
= 0 ; isOK
&& blockNo
< NumBlocksPerSector ( sectorNo
); blockNo
++) {
359 bool received
= false ;
361 if ( blockNo
== NumBlocksPerSector ( sectorNo
) - 1 ) { // sector trailer. At least the Access Conditions can always be read with key A.
362 UsbCommand c
= { CMD_MIFARE_READBL
, { FirstBlockOfSector ( sectorNo
) + blockNo
, 0 , 0 }};
363 memcpy ( c
. d
. asBytes
, keyA
[ sectorNo
], 6 );
365 received
= WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 );
366 } else { // data block. Check if it can be read with key A or key B
367 uint8_t data_area
= sectorNo
< 32 ? blockNo
: blockNo
/ 5 ;
368 if (( rights
[ sectorNo
][ data_area
] == 0x03 ) || ( rights
[ sectorNo
][ data_area
] == 0x05 )) { // only key B would work
369 UsbCommand c
= { CMD_MIFARE_READBL
, { FirstBlockOfSector ( sectorNo
) + blockNo
, 1 , 0 }};
370 memcpy ( c
. d
. asBytes
, keyB
[ sectorNo
], 6 );
372 received
= WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 );
373 } else if ( rights
[ sectorNo
][ data_area
] == 0x07 ) { // no key would work
375 PrintAndLog ( "Access rights do not allow reading of sector %2d block %3d" , sectorNo
, blockNo
);
376 } else { // key A would work
377 UsbCommand c
= { CMD_MIFARE_READBL
, { FirstBlockOfSector ( sectorNo
) + blockNo
, 0 , 0 }};
378 memcpy ( c
. d
. asBytes
, keyA
[ sectorNo
], 6 );
380 received
= WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 );
385 isOK
= resp
. arg
[ 0 ] & 0xff ;
386 uint8_t * data
= resp
. d
. asBytes
;
387 if ( blockNo
== NumBlocksPerSector ( sectorNo
) - 1 ) { // sector trailer. Fill in the keys.
388 data
[ 0 ] = ( keyA
[ sectorNo
][ 0 ]);
389 data
[ 1 ] = ( keyA
[ sectorNo
][ 1 ]);
390 data
[ 2 ] = ( keyA
[ sectorNo
][ 2 ]);
391 data
[ 3 ] = ( keyA
[ sectorNo
][ 3 ]);
392 data
[ 4 ] = ( keyA
[ sectorNo
][ 4 ]);
393 data
[ 5 ] = ( keyA
[ sectorNo
][ 5 ]);
394 data
[ 10 ] = ( keyB
[ sectorNo
][ 0 ]);
395 data
[ 11 ] = ( keyB
[ sectorNo
][ 1 ]);
396 data
[ 12 ] = ( keyB
[ sectorNo
][ 2 ]);
397 data
[ 13 ] = ( keyB
[ sectorNo
][ 3 ]);
398 data
[ 14 ] = ( keyB
[ sectorNo
][ 4 ]);
399 data
[ 15 ] = ( keyB
[ sectorNo
][ 5 ]);
402 memcpy ( carddata
[ FirstBlockOfSector ( sectorNo
) + blockNo
], data
, 16 );
403 PrintAndLog ( "Successfully read block %2d of sector %2d." , blockNo
, sectorNo
);
405 PrintAndLog ( "Could not read block %2d of sector %2d" , blockNo
, sectorNo
);
411 PrintAndLog ( "Command execute timeout when trying to read block %2d of sector %2d." , blockNo
, sectorNo
);
418 if (( fout
= fopen ( "dumpdata.bin" , "wb" )) == NULL
) {
419 PrintAndLog ( "Could not create file name dumpdata.bin" );
422 uint16_t numblocks
= FirstBlockOfSector ( numSectors
- 1 ) + NumBlocksPerSector ( numSectors
- 1 );
423 fwrite ( carddata
, 1 , 16 * numblocks
, fout
);
425 PrintAndLog ( "Dumped %d blocks (%d bytes) to file dumpdata.bin" , numblocks
, 16 * numblocks
);
431 int CmdHF14AMfRestore ( const char * Cmd
)
433 uint8_t sectorNo
, blockNo
;
435 uint8_t key
[ 6 ] = { 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF };
436 uint8_t bldata
[ 16 ] = { 0x00 };
444 char cmdp
= param_getchar ( Cmd
, 0 );
446 case '0' : numSectors
= 5 ; break ;
448 case '\0' : numSectors
= 16 ; break ;
449 case '2' : numSectors
= 32 ; break ;
450 case '4' : numSectors
= 40 ; break ;
451 default : numSectors
= 16 ;
454 if ( strlen ( Cmd
) > 1 || cmdp
== 'h' || cmdp
== 'H' ) {
455 PrintAndLog ( "Usage: hf mf restore [card memory]" );
456 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
458 PrintAndLog ( "Samples: hf mf restore" );
459 PrintAndLog ( " hf mf restore 4" );
463 if (( fkeys
= fopen ( "dumpkeys.bin" , "rb" )) == NULL
) {
464 PrintAndLog ( "Could not find file dumpkeys.bin" );
468 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
469 if ( fread ( keyA
[ sectorNo
], 1 , 6 , fkeys
) == 0 ) {
470 PrintAndLog ( "File reading error (dumpkeys.bin)." );
477 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
478 if ( fread ( keyB
[ sectorNo
], 1 , 6 , fkeys
) == 0 ) {
479 PrintAndLog ( "File reading error (dumpkeys.bin)." );
487 if (( fdump
= fopen ( "dumpdata.bin" , "rb" )) == NULL
) {
488 PrintAndLog ( "Could not find file dumpdata.bin" );
491 PrintAndLog ( "Restoring dumpdata.bin to card" );
493 for ( sectorNo
= 0 ; sectorNo
< numSectors
; sectorNo
++) {
494 for ( blockNo
= 0 ; blockNo
< NumBlocksPerSector ( sectorNo
); blockNo
++) {
495 UsbCommand c
= { CMD_MIFARE_WRITEBL
, { FirstBlockOfSector ( sectorNo
) + blockNo
, keyType
, 0 }};
496 memcpy ( c
. d
. asBytes
, key
, 6 );
498 if ( fread ( bldata
, 1 , 16 , fdump
) == 0 ) {
499 PrintAndLog ( "File reading error (dumpdata.bin)." );
504 if ( blockNo
== NumBlocksPerSector ( sectorNo
) - 1 ) { // sector trailer
505 bldata
[ 0 ] = ( keyA
[ sectorNo
][ 0 ]);
506 bldata
[ 1 ] = ( keyA
[ sectorNo
][ 1 ]);
507 bldata
[ 2 ] = ( keyA
[ sectorNo
][ 2 ]);
508 bldata
[ 3 ] = ( keyA
[ sectorNo
][ 3 ]);
509 bldata
[ 4 ] = ( keyA
[ sectorNo
][ 4 ]);
510 bldata
[ 5 ] = ( keyA
[ sectorNo
][ 5 ]);
511 bldata
[ 10 ] = ( keyB
[ sectorNo
][ 0 ]);
512 bldata
[ 11 ] = ( keyB
[ sectorNo
][ 1 ]);
513 bldata
[ 12 ] = ( keyB
[ sectorNo
][ 2 ]);
514 bldata
[ 13 ] = ( keyB
[ sectorNo
][ 3 ]);
515 bldata
[ 14 ] = ( keyB
[ sectorNo
][ 4 ]);
516 bldata
[ 15 ] = ( keyB
[ sectorNo
][ 5 ]);
519 PrintAndLog ( "Writing to block %3d: %s" , FirstBlockOfSector ( sectorNo
) + blockNo
, sprint_hex ( bldata
, 16 ));
521 memcpy ( c
. d
. asBytes
+ 10 , bldata
, 16 );
525 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
526 uint8_t isOK
= resp
. arg
[ 0 ] & 0xff ;
527 PrintAndLog ( "isOk:%02x" , isOK
);
529 PrintAndLog ( "Command execute timeout" );
538 int CmdHF14AMfNested ( const char * Cmd
)
540 int i
, j
, res
, iterations
;
541 sector
* e_sector
= NULL
;
544 uint8_t trgBlockNo
= 0 ;
545 uint8_t trgKeyType
= 0 ;
546 uint8_t SectorsCnt
= 0 ;
547 uint8_t key
[ 6 ] = { 0 , 0 , 0 , 0 , 0 , 0 };
548 uint8_t keyBlock
[ 14 * 6 ];
550 bool transferToEml
= false ;
552 bool createDumpFile
= false ;
554 uint8_t standart
[ 6 ] = { 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF };
555 uint8_t tempkey
[ 6 ] = { 0xFF , 0xFF , 0xFF , 0xFF , 0xFF , 0xFF };
560 PrintAndLog ( "Usage:" );
561 PrintAndLog ( " all sectors: hf mf nested <card memory> <block number> <key A/B> <key (12 hex symbols)> [t,d]" );
562 PrintAndLog ( " one sector: hf mf nested o <block number> <key A/B> <key (12 hex symbols)>" );
563 PrintAndLog ( " <target block number> <target key A/B> [t]" );
564 PrintAndLog ( "card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K" );
565 PrintAndLog ( "t - transfer keys into emulator memory" );
566 PrintAndLog ( "d - write keys to binary file" );
568 PrintAndLog ( " sample1: hf mf nested 1 0 A FFFFFFFFFFFF " );
569 PrintAndLog ( " sample2: hf mf nested 1 0 A FFFFFFFFFFFF t " );
570 PrintAndLog ( " sample3: hf mf nested 1 0 A FFFFFFFFFFFF d " );
571 PrintAndLog ( " sample4: hf mf nested o 0 A FFFFFFFFFFFF 4 A" );
575 cmdp
= param_getchar ( Cmd
, 0 );
576 blockNo
= param_get8 ( Cmd
, 1 );
577 ctmp
= param_getchar ( Cmd
, 2 );
579 if ( ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B' ) {
580 PrintAndLog ( "Key type must be A or B" );
584 if ( ctmp
!= 'A' && ctmp
!= 'a' )
587 if ( param_gethex ( Cmd
, 3 , key
, 12 )) {
588 PrintAndLog ( "Key must include 12 HEX symbols" );
592 if ( cmdp
== 'o' || cmdp
== 'O' ) {
594 trgBlockNo
= param_get8 ( Cmd
, 4 );
595 ctmp
= param_getchar ( Cmd
, 5 );
596 if ( ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B' ) {
597 PrintAndLog ( "Target key type must be A or B" );
600 if ( ctmp
!= 'A' && ctmp
!= 'a' )
605 case '0' : SectorsCnt
= 05 ; break ;
606 case '1' : SectorsCnt
= 16 ; break ;
607 case '2' : SectorsCnt
= 32 ; break ;
608 case '4' : SectorsCnt
= 40 ; break ;
609 default : SectorsCnt
= 16 ;
613 ctmp
= param_getchar ( Cmd
, 4 );
614 if ( ctmp
== 't' || ctmp
== 'T' ) transferToEml
= true ;
615 else if ( ctmp
== 'd' || ctmp
== 'D' ) createDumpFile
= true ;
617 ctmp
= param_getchar ( Cmd
, 6 );
618 transferToEml
|= ( ctmp
== 't' || ctmp
== 'T' );
619 transferToEml
|= ( ctmp
== 'd' || ctmp
== 'D' );
622 PrintAndLog ( "--target block no:%3d, target key type:%c " , trgBlockNo
, trgKeyType
? 'B' : 'A' );
623 int16_t isOK
= mfnested ( blockNo
, keyType
, key
, trgBlockNo
, trgKeyType
, keyBlock
, true );
626 case - 1 : PrintAndLog ( "Error: No response from Proxmark. \n " ); break ;
627 case - 2 : PrintAndLog ( "Button pressed. Aborted. \n " ); break ;
628 case - 3 : PrintAndLog ( "Tag isn't vulnerable to Nested Attack (random numbers are not predictable). \n " ); break ;
629 default : PrintAndLog ( "Unknown Error. \n " );
633 key64
= bytes_to_num ( keyBlock
, 6 );
635 PrintAndLog ( "Found valid key:%012" llx
, key64
);
637 // transfer key to the emulator
639 uint8_t sectortrailer
;
640 if ( trgBlockNo
< 32 * 4 ) { // 4 block sector
641 sectortrailer
= ( trgBlockNo
& 0x03 ) + 3 ;
642 } else { // 16 block sector
643 sectortrailer
= ( trgBlockNo
& 0x0f ) + 15 ;
645 mfEmlGetMem ( keyBlock
, sectortrailer
, 1 );
648 num_to_bytes ( key64
, 6 , keyBlock
);
650 num_to_bytes ( key64
, 6 , & keyBlock
[ 10 ]);
651 mfEmlSetMem ( keyBlock
, sectortrailer
, 1 );
654 PrintAndLog ( "No valid key found" );
657 else { // ------------------------------------ multiple sectors working
661 e_sector
= calloc ( SectorsCnt
, sizeof ( sector
));
662 if ( e_sector
== NULL
) return 1 ;
664 //test current key and additional standard keys first
665 memcpy ( keyBlock
, key
, 6 );
666 num_to_bytes ( 0xffffffffffff , 6 , ( uint8_t *)( keyBlock
+ 1 * 6 ));
667 num_to_bytes ( 0x000000000000 , 6 , ( uint8_t *)( keyBlock
+ 2 * 6 ));
668 num_to_bytes ( 0xa0a1a2a3a4a5 , 6 , ( uint8_t *)( keyBlock
+ 3 * 6 ));
669 num_to_bytes ( 0xb0b1b2b3b4b5 , 6 , ( uint8_t *)( keyBlock
+ 4 * 6 ));
670 num_to_bytes ( 0xaabbccddeeff , 6 , ( uint8_t *)( keyBlock
+ 5 * 6 ));
671 num_to_bytes ( 0x4d3a99c351dd , 6 , ( uint8_t *)( keyBlock
+ 6 * 6 ));
672 num_to_bytes ( 0x1a982c7e459a , 6 , ( uint8_t *)( keyBlock
+ 7 * 6 ));
673 num_to_bytes ( 0xd3f7d3f7d3f7 , 6 , ( uint8_t *)( keyBlock
+ 8 * 6 ));
674 num_to_bytes ( 0x714c5c886e97 , 6 , ( uint8_t *)( keyBlock
+ 9 * 6 ));
675 num_to_bytes ( 0x587ee5f9350f , 6 , ( uint8_t *)( keyBlock
+ 10 * 6 ));
676 num_to_bytes ( 0xa0478cc39091 , 6 , ( uint8_t *)( keyBlock
+ 11 * 6 ));
677 num_to_bytes ( 0x533cb6c723f6 , 6 , ( uint8_t *)( keyBlock
+ 12 * 6 ));
678 num_to_bytes ( 0x8fd0a4f256e9 , 6 , ( uint8_t *)( keyBlock
+ 13 * 6 ));
680 PrintAndLog ( "Testing known keys. Sector count=%d" , SectorsCnt
);
681 for ( i
= 0 ; i
< SectorsCnt
; i
++) {
682 for ( j
= 0 ; j
< 2 ; j
++) {
683 if ( e_sector
[ i
]. foundKey
[ j
]) continue ;
685 res
= mfCheckKeys ( FirstBlockOfSector ( i
), j
, true , 6 , keyBlock
, & key64
);
688 e_sector
[ i
]. Key
[ j
] = key64
;
689 e_sector
[ i
]. foundKey
[ j
] = 1 ;
696 PrintAndLog ( "nested..." );
697 bool calibrate
= true ;
698 for ( i
= 0 ; i
< NESTED_SECTOR_RETRY
; i
++) {
699 for ( uint8_t sectorNo
= 0 ; sectorNo
< SectorsCnt
; sectorNo
++) {
700 for ( trgKeyType
= 0 ; trgKeyType
< 2 ; trgKeyType
++) {
701 if ( e_sector
[ sectorNo
]. foundKey
[ trgKeyType
]) continue ;
702 PrintAndLog ( "-----------------------------------------------" );
703 int16_t isOK
= mfnested ( blockNo
, keyType
, key
, FirstBlockOfSector ( sectorNo
), trgKeyType
, keyBlock
, calibrate
);
706 case - 1 : PrintAndLog ( "Error: No response from Proxmark. \n " ); break ;
707 case - 2 : PrintAndLog ( "Button pressed. Aborted. \n " ); break ;
708 case - 3 : PrintAndLog ( "Tag isn't vulnerable to Nested Attack (random numbers are not predictable). \n " ); break ;
709 default : PrintAndLog ( "Unknown Error. \n " );
719 key64
= bytes_to_num ( keyBlock
, 6 );
721 PrintAndLog ( "Found valid key:%012" llx
, key64
);
722 e_sector
[ sectorNo
]. foundKey
[ trgKeyType
] = 1 ;
723 e_sector
[ sectorNo
]. Key
[ trgKeyType
] = key64
;
729 printf ( "Time in nested: %1.3f (%1.3f sec per key) \n\n " , (( float ) clock () - time1
)/ CLOCKS_PER_SEC
, (( float ) clock () - time1
)/ iterations
/ CLOCKS_PER_SEC
);
731 PrintAndLog ( "----------------------------------------------- \n Iterations count: %d \n\n " , iterations
);
733 PrintAndLog ( "|---|----------------|---|----------------|---|" );
734 PrintAndLog ( "|sec|key A |res|key B |res|" );
735 PrintAndLog ( "|---|----------------|---|----------------|---|" );
736 for ( i
= 0 ; i
< SectorsCnt
; i
++) {
737 PrintAndLog ( "|%03d| %012" llx
" | %d | %012" llx
" | %d |" , i
,
738 e_sector
[ i
]. Key
[ 0 ], e_sector
[ i
]. foundKey
[ 0 ], e_sector
[ i
]. Key
[ 1 ], e_sector
[ i
]. foundKey
[ 1 ]);
740 PrintAndLog ( "|---|----------------|---|----------------|---|" );
742 // transfer them to the emulator
744 for ( i
= 0 ; i
< SectorsCnt
; i
++) {
745 mfEmlGetMem ( keyBlock
, FirstBlockOfSector ( i
) + NumBlocksPerSector ( i
) - 1 , 1 );
746 if ( e_sector
[ i
]. foundKey
[ 0 ])
747 num_to_bytes ( e_sector
[ i
]. Key
[ 0 ], 6 , keyBlock
);
748 if ( e_sector
[ i
]. foundKey
[ 1 ])
749 num_to_bytes ( e_sector
[ i
]. Key
[ 1 ], 6 , & keyBlock
[ 10 ]);
750 mfEmlSetMem ( keyBlock
, FirstBlockOfSector ( i
) + NumBlocksPerSector ( i
) - 1 , 1 );
755 if ( createDumpFile
) {
756 if (( fkeys
= fopen ( "dumpkeys.bin" , "wb" )) == NULL
) {
757 PrintAndLog ( "Could not create file dumpkeys.bin" );
761 PrintAndLog ( "Printing keys to binary file dumpkeys.bin..." );
762 for ( i
= 0 ; i
< SectorsCnt
; i
++) {
763 if ( e_sector
[ i
]. foundKey
[ 0 ]){
764 num_to_bytes ( e_sector
[ i
]. Key
[ 0 ], 6 , tempkey
);
765 fwrite ( tempkey
, 1 , 6 , fkeys
);
768 fwrite ( & standart
, 1 , 6 , fkeys
);
771 for ( i
= 0 ; i
< SectorsCnt
; i
++) {
772 if ( e_sector
[ i
]. foundKey
[ 1 ]){
773 num_to_bytes ( e_sector
[ i
]. Key
[ 1 ], 6 , tempkey
);
774 fwrite ( tempkey
, 1 , 6 , fkeys
);
777 fwrite ( & standart
, 1 , 6 , fkeys
);
788 int CmdHF14AMfChk ( const char * Cmd
)
791 PrintAndLog ( "Usage: hf mf chk <block number>|<*card memory> <key type (A/B/?)> [t|d] [<key (12 hex symbols)>] [<dic (*.dic)>]" );
792 PrintAndLog ( " * - all sectors" );
793 PrintAndLog ( "card memory - 0 - MINI(320 bytes), 1 - 1K, 2 - 2K, 4 - 4K, <other> - 1K" );
794 PrintAndLog ( "d - write keys to binary file \n " );
795 PrintAndLog ( "t - write keys to emulator memory" );
796 PrintAndLog ( " sample: hf mf chk 0 A 1234567890ab keys.dic" );
797 PrintAndLog ( " hf mf chk *1 ? t" );
798 PrintAndLog ( " hf mf chk *1 ? d" );
803 char filename
[ FILE_PATH_SIZE
]={ 0 };
805 uint8_t * keyBlock
= NULL
, * p
;
806 uint8_t stKeyBlock
= 20 ;
812 uint8_t SectorsCnt
= 1 ;
816 int transferToEml
= 0 ;
817 int createDumpFile
= 0 ;
819 keyBlock
= calloc ( stKeyBlock
, 6 );
820 if ( keyBlock
== NULL
) return 1 ;
822 uint64_t defaultKeys
[] =
824 0xffffffffffff , // Default key (first key used by program if no user defined key)
825 0x000000000000 , // Blank key
826 0xa0a1a2a3a4a5 , // NFCForum MAD key
838 int defaultKeysSize
= sizeof ( defaultKeys
) / sizeof ( uint64_t );
840 for ( int defaultKeyCounter
= 0 ; defaultKeyCounter
< defaultKeysSize
; defaultKeyCounter
++)
842 num_to_bytes ( defaultKeys
[ defaultKeyCounter
], 6 , ( uint8_t *)( keyBlock
+ defaultKeyCounter
* 6 ));
845 if ( param_getchar ( Cmd
, 0 )== '*' ) {
847 switch ( param_getchar ( Cmd
+ 1 , 0 )) {
848 case '0' : SectorsCnt
= 5 ; break ;
849 case '1' : SectorsCnt
= 16 ; break ;
850 case '2' : SectorsCnt
= 32 ; break ;
851 case '4' : SectorsCnt
= 40 ; break ;
852 default : SectorsCnt
= 16 ;
856 blockNo
= param_get8 ( Cmd
, 0 );
858 ctmp
= param_getchar ( Cmd
, 1 );
870 PrintAndLog ( "Key type must be A , B or ?" );
874 ctmp
= param_getchar ( Cmd
, 2 );
875 if ( ctmp
== 't' || ctmp
== 'T' ) transferToEml
= 1 ;
876 else if ( ctmp
== 'd' || ctmp
== 'D' ) createDumpFile
= 1 ;
878 for ( i
= transferToEml
|| createDumpFile
; param_getchar ( Cmd
, 2 + i
); i
++) {
879 if (! param_gethex ( Cmd
, 2 + i
, keyBlock
+ 6 * keycnt
, 12 )) {
880 if ( stKeyBlock
- keycnt
< 2 ) {
881 p
= realloc ( keyBlock
, 6 *( stKeyBlock
+= 10 ));
883 PrintAndLog ( "Cannot allocate memory for Keys" );
889 PrintAndLog ( "chk key[%2d] %02x%02x%02x%02x%02x%02x" , keycnt
,
890 ( keyBlock
+ 6 * keycnt
)[ 0 ],( keyBlock
+ 6 * keycnt
)[ 1 ], ( keyBlock
+ 6 * keycnt
)[ 2 ],
891 ( keyBlock
+ 6 * keycnt
)[ 3 ], ( keyBlock
+ 6 * keycnt
)[ 4 ], ( keyBlock
+ 6 * keycnt
)[ 5 ], 6 );
895 if ( param_getstr ( Cmd
, 2 + i
, filename
) >= FILE_PATH_SIZE
) {
896 PrintAndLog ( "File name too long" );
901 if ( ( f
= fopen ( filename
, "r" )) ) {
902 while ( fgets ( buf
, sizeof ( buf
), f
) ){
903 if ( strlen ( buf
) < 12 || buf
[ 11 ] == ' \n ' )
906 while ( fgetc ( f
) != ' \n ' && ! feof ( f
)) ; //goto next line
908 if ( buf
[ 0 ]== '#' ) continue ; //The line start with # is comment, skip
910 if (! isxdigit ( buf
[ 0 ])){
911 PrintAndLog ( "File content error. '%s' must include 12 HEX symbols" , buf
);
917 if ( stKeyBlock
- keycnt
< 2 ) {
918 p
= realloc ( keyBlock
, 6 *( stKeyBlock
+= 10 ));
920 PrintAndLog ( "Cannot allocate memory for defKeys" );
926 memset ( keyBlock
+ 6 * keycnt
, 0 , 6 );
927 num_to_bytes ( strtoll ( buf
, NULL
, 16 ), 6 , keyBlock
+ 6 * keycnt
);
928 PrintAndLog ( "chk custom key[%2d] %012" llx
, keycnt
, bytes_to_num ( keyBlock
+ 6 * keycnt
, 6 ));
930 memset ( buf
, 0 , sizeof ( buf
));
934 PrintAndLog ( "File: %s: not found or locked." , filename
);
943 PrintAndLog ( "No key specified, trying default keys" );
944 for (; keycnt
< defaultKeysSize
; keycnt
++)
945 PrintAndLog ( "chk default key[%2d] %02x%02x%02x%02x%02x%02x" , keycnt
,
946 ( keyBlock
+ 6 * keycnt
)[ 0 ],( keyBlock
+ 6 * keycnt
)[ 1 ], ( keyBlock
+ 6 * keycnt
)[ 2 ],
947 ( keyBlock
+ 6 * keycnt
)[ 3 ], ( keyBlock
+ 6 * keycnt
)[ 4 ], ( keyBlock
+ 6 * keycnt
)[ 5 ], 6 );
950 // initialize storage for found keys
951 bool validKey
[ 2 ][ 40 ];
952 uint8_t foundKey
[ 2 ][ 40 ][ 6 ];
953 for ( uint16_t t
= 0 ; t
< 2 ; t
++) {
954 for ( uint16_t sectorNo
= 0 ; sectorNo
< SectorsCnt
; sectorNo
++) {
955 validKey
[ t
][ sectorNo
] = false ;
956 for ( uint16_t i
= 0 ; i
< 6 ; i
++) {
957 foundKey
[ t
][ sectorNo
][ i
] = 0xff ;
962 for ( int t
= ! keyType
; t
< 2 ; keyType
== 2 ?( t
++):( t
= 2 ) ) {
964 for ( int i
= 0 ; i
< SectorsCnt
; ++ i
) {
965 PrintAndLog ( "--sector:%2d, block:%3d, key type:%C, key count:%2d " , i
, b
, t
? 'B' : 'A' , keycnt
);
966 uint32_t max_keys
= keycnt
> USB_CMD_DATA_SIZE
/ 6 ? USB_CMD_DATA_SIZE
/ 6 : keycnt
;
967 for ( uint32_t c
= 0 ; c
< keycnt
; c
+= max_keys
) {
968 uint32_t size
= keycnt
- c
> max_keys
? max_keys
: keycnt
- c
;
969 res
= mfCheckKeys ( b
, t
, true , size
, & keyBlock
[ 6 * c
], & key64
);
972 PrintAndLog ( "Found valid key:[%012" llx
"]" , key64
);
973 num_to_bytes ( key64
, 6 , foundKey
[ t
][ i
]);
974 validKey
[ t
][ i
] = true ;
977 PrintAndLog ( "Command execute timeout" );
980 b
< 127 ?( b
+= 4 ):( b
+= 16 );
986 for ( uint16_t sectorNo
= 0 ; sectorNo
< SectorsCnt
; sectorNo
++) {
987 if ( validKey
[ 0 ][ sectorNo
] || validKey
[ 1 ][ sectorNo
]) {
988 mfEmlGetMem ( block
, FirstBlockOfSector ( sectorNo
) + NumBlocksPerSector ( sectorNo
) - 1 , 1 );
989 for ( uint16_t t
= 0 ; t
< 2 ; t
++) {
990 if ( validKey
[ t
][ sectorNo
]) {
991 memcpy ( block
+ t
* 10 , foundKey
[ t
][ sectorNo
], 6 );
994 mfEmlSetMem ( block
, FirstBlockOfSector ( sectorNo
) + NumBlocksPerSector ( sectorNo
) - 1 , 1 );
997 PrintAndLog ( "Found keys have been transferred to the emulator memory" );
1000 if ( createDumpFile
) {
1001 FILE * fkeys
= fopen ( "dumpkeys.bin" , "wb" );
1002 if ( fkeys
== NULL
) {
1003 PrintAndLog ( "Could not create file dumpkeys.bin" );
1007 for ( uint16_t t
= 0 ; t
< 2 ; t
++) {
1008 fwrite ( foundKey
[ t
], 1 , 6 * SectorsCnt
, fkeys
);
1011 PrintAndLog ( "Found keys have been dumped to file dumpkeys.bin. 0xffffffffffff has been inserted for unknown keys." );
1019 void readerAttack ( nonces_t ar_resp
[], bool setEmulatorMem
, bool doStandardAttack
) {
1020 #define ATTACK_KEY_COUNT 8 // keep same as define in iso14443a.c -> Mifare1ksim()
1026 st_t sector_trailer
[ ATTACK_KEY_COUNT
];
1027 memset ( sector_trailer
, 0x00 , sizeof ( sector_trailer
));
1029 uint8_t stSector
[ ATTACK_KEY_COUNT
];
1030 memset ( stSector
, 0x00 , sizeof ( stSector
));
1031 uint8_t key_cnt
[ ATTACK_KEY_COUNT
];
1032 memset ( key_cnt
, 0x00 , sizeof ( key_cnt
));
1034 for ( uint8_t i
= 0 ; i
< ATTACK_KEY_COUNT
; i
++) {
1035 if ( ar_resp
[ i
]. ar2
> 0 ) {
1036 //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);
1037 if ( doStandardAttack
&& mfkey32 ( ar_resp
[ i
], & key
)) {
1038 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 ));
1040 for ( uint8_t ii
= 0 ; ii
< ATTACK_KEY_COUNT
; ii
++) {
1041 if ( key_cnt
[ ii
]== 0 || stSector
[ ii
]== ar_resp
[ i
]. sector
) {
1042 if ( ar_resp
[ i
]. keytype
== 0 ) {
1044 sector_trailer
[ ii
]. keyA
= key
;
1045 stSector
[ ii
] = ar_resp
[ i
]. sector
;
1050 sector_trailer
[ ii
]. keyB
= key
;
1051 stSector
[ ii
] = ar_resp
[ i
]. sector
;
1057 } else if ( tryMfk32_moebius ( ar_resp
[ i
+ ATTACK_KEY_COUNT
], & key
)) {
1058 uint8_t sectorNum
= ar_resp
[ i
+ ATTACK_KEY_COUNT
]. sector
;
1059 uint8_t keyType
= ar_resp
[ i
+ ATTACK_KEY_COUNT
]. keytype
;
1061 PrintAndLog ( "M-Found Key%s for sector %02d: [%012" llx
"]"
1062 , keyType
? "B" : "A"
1067 for ( uint8_t ii
= 0 ; ii
< ATTACK_KEY_COUNT
; ii
++) {
1068 if ( key_cnt
[ ii
]== 0 || stSector
[ ii
]== sectorNum
) {
1071 sector_trailer
[ ii
]. keyA
= key
;
1072 stSector
[ ii
] = sectorNum
;
1077 sector_trailer
[ ii
]. keyB
= key
;
1078 stSector
[ ii
] = sectorNum
;
1088 //set emulator memory for keys
1089 if ( setEmulatorMem
) {
1090 for ( uint8_t i
= 0 ; i
< ATTACK_KEY_COUNT
; i
++) {
1092 uint8_t memBlock
[ 16 ];
1093 memset ( memBlock
, 0x00 , sizeof ( memBlock
));
1095 memset ( cmd1
, 0x00 , sizeof ( cmd1
));
1096 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 ));
1097 PrintAndLog ( "Setting Emulator Memory Block %02d: [%s]" , stSector
[ i
]* 4 + 3 , cmd1
);
1098 if ( param_gethex ( cmd1
, 0 , memBlock
, 32 )) {
1099 PrintAndLog ( "block data must include 32 HEX symbols" );
1103 UsbCommand c
= { CMD_MIFARE_EML_MEMSET
, {( stSector
[ i
]* 4 + 3 ), 1 , 0 }};
1104 memcpy ( c
. d
. asBytes
, memBlock
, 16 );
1105 clearCommandBuffer ();
1111 //un-comment to use as well moebius attack
1112 for (uint8_t i = ATTACK_KEY_COUNT; i<ATTACK_KEY_COUNT*2; i++) {
1113 if (ar_resp[i].ar2 > 0) {
1114 if (tryMfk32_moebius(ar_resp[i], &key)) {
1115 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));
1121 int usage_hf14_mf1ksim ( void ) {
1122 PrintAndLog ( "Usage: hf mf sim h u <uid (8, 14, or 20 hex symbols)> n <numreads> i x" );
1123 PrintAndLog ( "options:" );
1124 PrintAndLog ( " h this help" );
1125 PrintAndLog ( " u (Optional) UID 4,7 or 10 bytes. If not specified, the UID 4B from emulator memory will be used" );
1126 PrintAndLog ( " n (Optional) Automatically exit simulation after <numreads> blocks have been read by reader. 0 = infinite" );
1127 PrintAndLog ( " i (Optional) Interactive, means that console will not be returned until simulation finishes or is aborted" );
1128 PrintAndLog ( " x (Optional) Crack, performs the 'reader attack', nr/ar attack against a legitimate reader, fishes out the key(s)" );
1129 PrintAndLog ( " e (Optional) set keys found from 'reader attack' to emulator memory (implies x and i)" );
1130 PrintAndLog ( " f (Optional) get UIDs to use for 'reader attack' from file 'f <filename.txt>' (implies x and i)" );
1131 PrintAndLog ( " r (Optional) Generate random nonces instead of sequential nonces. Standard reader attack won't work with this option, only moebius attack works." );
1132 PrintAndLog ( "samples:" );
1133 PrintAndLog ( " hf mf sim u 0a0a0a0a" );
1134 PrintAndLog ( " hf mf sim u 11223344556677" );
1135 PrintAndLog ( " hf mf sim u 112233445566778899AA" );
1136 PrintAndLog ( " hf mf sim f uids.txt" );
1137 PrintAndLog ( " hf mf sim u 0a0a0a0a e" );
1142 int CmdHF14AMf1kSim ( const char * Cmd
) {
1144 uint8_t uid
[ 10 ] = { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 };
1145 uint8_t exitAfterNReads
= 0 ;
1149 bool setEmulatorMem
= false ;
1150 bool attackFromFile
= false ;
1152 char filename
[ FILE_PATH_SIZE
];
1153 memset ( filename
, 0x00 , sizeof ( filename
));
1158 bool errors
= false ;
1160 while ( param_getchar ( Cmd
, cmdp
) != 0x00 ) {
1161 switch ( param_getchar ( Cmd
, cmdp
)) {
1164 setEmulatorMem
= true ;
1166 flags
|= FLAG_INTERACTIVE
;
1167 flags
|= FLAG_NR_AR_ATTACK
;
1172 len
= param_getstr ( Cmd
, cmdp
+ 1 , filename
);
1174 PrintAndLog ( "error no filename found" );
1177 attackFromFile
= true ;
1179 flags
|= FLAG_INTERACTIVE
;
1180 flags
|= FLAG_NR_AR_ATTACK
;
1185 return usage_hf14_mf1ksim ();
1188 flags
|= FLAG_INTERACTIVE
;
1193 exitAfterNReads
= param_get8 ( Cmd
, pnr
+ 1 );
1198 flags
|= FLAG_RANDOM_NONCE
;
1203 param_gethex_ex ( Cmd
, cmdp
+ 1 , uid
, & uidlen
);
1205 case 20 : flags
= FLAG_10B_UID_IN_DATA
; break ; //not complete
1206 case 14 : flags
= FLAG_7B_UID_IN_DATA
; break ;
1207 case 8 : flags
= FLAG_4B_UID_IN_DATA
; break ;
1208 default : return usage_hf14_mf1ksim ();
1214 flags
|= FLAG_NR_AR_ATTACK
;
1218 PrintAndLog ( "Unknown parameter '%c'" , param_getchar ( Cmd
, cmdp
));
1225 if ( errors
) return usage_hf14_mf1ksim ();
1228 if ( attackFromFile
) {
1231 f
= fopen ( filename
, "r" );
1233 PrintAndLog ( "File %s not found or locked" , filename
);
1236 PrintAndLog ( "Loading file and simulating. Press keyboard to abort" );
1237 while (! feof ( f
) && ! ukbhit ()){
1238 memset ( buf
, 0 , sizeof ( buf
));
1239 memset ( uid
, 0 , sizeof ( uid
));
1241 if ( fgets ( buf
, sizeof ( buf
), f
) == NULL
) {
1242 if ( count
> 0 ) break ;
1244 PrintAndLog ( "File reading error." );
1248 if (! strlen ( buf
) && feof ( f
)) break ;
1250 uidlen
= strlen ( buf
)- 1 ;
1252 case 20 : flags
|= FLAG_10B_UID_IN_DATA
; break ; //not complete
1253 case 14 : flags
|= FLAG_7B_UID_IN_DATA
; break ;
1254 case 8 : flags
|= FLAG_4B_UID_IN_DATA
; break ;
1256 PrintAndLog ( "uid in file wrong length at %d (length: %d) [%s]" , count
, uidlen
, buf
);
1261 for ( uint8_t i
= 0 ; i
< uidlen
; i
+= 2 ) {
1262 sscanf (& buf
[ i
], "%02x" , ( unsigned int *)& uid
[ i
/ 2 ]);
1265 PrintAndLog ( "mf 1k sim uid: %s, numreads:%d, flags:%d (0x%02x) - press button to abort" ,
1266 flags
& FLAG_4B_UID_IN_DATA
? sprint_hex ( uid
, 4 ):
1267 flags
& FLAG_7B_UID_IN_DATA
? sprint_hex ( uid
, 7 ):
1268 flags
& FLAG_10B_UID_IN_DATA
? sprint_hex ( uid
, 10 ): "N/A"
1269 , exitAfterNReads
, flags
, flags
);
1271 UsbCommand c
= { CMD_SIMULATE_MIFARE_CARD
, { flags
, exitAfterNReads
, 0 }};
1272 memcpy ( c
. d
. asBytes
, uid
, sizeof ( uid
));
1273 clearCommandBuffer ();
1276 while (! WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
1277 //We're waiting only 1.5 s at a time, otherwise we get the
1278 // annoying message about "Waiting for a response... "
1281 nonces_t ar_resp
[ ATTACK_KEY_COUNT
* 2 ];
1282 memcpy ( ar_resp
, resp
. d
. asBytes
, sizeof ( ar_resp
));
1283 // We can skip the standard attack if we have RANDOM_NONCE set.
1284 readerAttack ( ar_resp
, setEmulatorMem
, !( flags
& FLAG_RANDOM_NONCE
));
1285 if (( bool ) resp
. arg
[ 1 ]) {
1286 PrintAndLog ( "Device button pressed - quitting" );
1293 } else { //not from file
1295 PrintAndLog ( "mf 1k sim uid: %s, numreads:%d, flags:%d (0x%02x) " ,
1296 flags
& FLAG_4B_UID_IN_DATA
? sprint_hex ( uid
, 4 ):
1297 flags
& FLAG_7B_UID_IN_DATA
? sprint_hex ( uid
, 7 ):
1298 flags
& FLAG_10B_UID_IN_DATA
? sprint_hex ( uid
, 10 ): "N/A"
1299 , exitAfterNReads
, flags
, flags
);
1301 UsbCommand c
= { CMD_SIMULATE_MIFARE_CARD
, { flags
, exitAfterNReads
, 0 }};
1302 memcpy ( c
. d
. asBytes
, uid
, sizeof ( uid
));
1303 clearCommandBuffer ();
1306 if ( flags
& FLAG_INTERACTIVE
) {
1307 PrintAndLog ( "Press pm3-button to abort simulation" );
1308 while (! WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
1309 //We're waiting only 1.5 s at a time, otherwise we get the
1310 // annoying message about "Waiting for a response... "
1313 if ( flags
& FLAG_NR_AR_ATTACK
) {
1314 nonces_t ar_resp
[ ATTACK_KEY_COUNT
* 2 ];
1315 memcpy ( ar_resp
, resp
. d
. asBytes
, sizeof ( ar_resp
));
1316 // We can skip the standard attack if we have RANDOM_NONCE set.
1317 readerAttack ( ar_resp
, setEmulatorMem
, !( flags
& FLAG_RANDOM_NONCE
));
1325 int CmdHF14AMfDbg ( const char * Cmd
)
1327 int dbgMode
= param_get32ex ( Cmd
, 0 , 0 , 10 );
1329 PrintAndLog ( "Max debug mode parameter is 4 \n " );
1332 if ( strlen ( Cmd
) < 1 || ! param_getchar ( Cmd
, 0 ) || dbgMode
> 4 ) {
1333 PrintAndLog ( "Usage: hf mf dbg <debug level>" );
1334 PrintAndLog ( " 0 - no debug messages" );
1335 PrintAndLog ( " 1 - error messages" );
1336 PrintAndLog ( " 2 - plus information messages" );
1337 PrintAndLog ( " 3 - plus debug messages" );
1338 PrintAndLog ( " 4 - print even debug messages in timing critical functions" );
1339 PrintAndLog ( " Note: this option therefore may cause malfunction itself" );
1343 UsbCommand c
= { CMD_MIFARE_SET_DBGMODE
, { dbgMode
, 0 , 0 }};
1349 int CmdHF14AMfEGet ( const char * Cmd
)
1351 uint8_t blockNo
= 0 ;
1352 uint8_t data
[ 16 ] = { 0x00 };
1354 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1355 PrintAndLog ( "Usage: hf mf eget <block number>" );
1356 PrintAndLog ( " sample: hf mf eget 0 " );
1360 blockNo
= param_get8 ( Cmd
, 0 );
1363 if (! mfEmlGetMem ( data
, blockNo
, 1 )) {
1364 PrintAndLog ( "data[%3d]:%s" , blockNo
, sprint_hex ( data
, 16 ));
1366 PrintAndLog ( "Command execute timeout" );
1372 int CmdHF14AMfEClear ( const char * Cmd
)
1374 if ( param_getchar ( Cmd
, 0 ) == 'h' ) {
1375 PrintAndLog ( "Usage: hf mf eclr" );
1376 PrintAndLog ( "It set card emulator memory to empty data blocks and key A/B FFFFFFFFFFFF \n " );
1380 UsbCommand c
= { CMD_MIFARE_EML_MEMCLR
, { 0 , 0 , 0 }};
1386 int CmdHF14AMfESet ( const char * Cmd
)
1388 uint8_t memBlock
[ 16 ];
1389 uint8_t blockNo
= 0 ;
1391 memset ( memBlock
, 0x00 , sizeof ( memBlock
));
1393 if ( strlen ( Cmd
) < 3 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1394 PrintAndLog ( "Usage: hf mf eset <block number> <block data (32 hex symbols)>" );
1395 PrintAndLog ( " sample: hf mf eset 1 000102030405060708090a0b0c0d0e0f " );
1399 blockNo
= param_get8 ( Cmd
, 0 );
1401 if ( param_gethex ( Cmd
, 1 , memBlock
, 32 )) {
1402 PrintAndLog ( "block data must include 32 HEX symbols" );
1407 UsbCommand c
= { CMD_MIFARE_EML_MEMSET
, { blockNo
, 1 , 0 }};
1408 memcpy ( c
. d
. asBytes
, memBlock
, 16 );
1414 int CmdHF14AMfELoad ( const char * Cmd
)
1417 char filename
[ FILE_PATH_SIZE
];
1418 char * fnameptr
= filename
;
1419 char buf
[ 64 ] = { 0x00 };
1420 uint8_t buf8
[ 64 ] = { 0x00 };
1421 int i
, len
, blockNum
, numBlocks
;
1422 int nameParamNo
= 1 ;
1424 char ctmp
= param_getchar ( Cmd
, 0 );
1426 if ( ctmp
== 'h' || ctmp
== 0x00 ) {
1427 PrintAndLog ( "It loads emul dump from the file `filename.eml`" );
1428 PrintAndLog ( "Usage: hf mf eload [card memory] <file name w/o `.eml`>" );
1429 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
1431 PrintAndLog ( " sample: hf mf eload filename" );
1432 PrintAndLog ( " hf mf eload 4 filename" );
1437 case '0' : numBlocks
= 5 * 4 ; break ;
1439 case '\0' : numBlocks
= 16 * 4 ; break ;
1440 case '2' : numBlocks
= 32 * 4 ; break ;
1441 case '4' : numBlocks
= 256 ; break ;
1448 len
= param_getstr ( Cmd
, nameParamNo
, filename
);
1450 if ( len
> FILE_PATH_SIZE
- 4 ) len
= FILE_PATH_SIZE
- 4 ;
1454 sprintf ( fnameptr
, ".eml" );
1457 f
= fopen ( filename
, "r" );
1459 PrintAndLog ( "File %s not found or locked" , filename
);
1465 memset ( buf
, 0 , sizeof ( buf
));
1467 if ( fgets ( buf
, sizeof ( buf
), f
) == NULL
) {
1469 if ( blockNum
>= numBlocks
) break ;
1471 PrintAndLog ( "File reading error." );
1476 if ( strlen ( buf
) < 32 ){
1477 if ( strlen ( buf
) && feof ( f
))
1479 PrintAndLog ( "File content error. Block data must include 32 HEX symbols" );
1484 for ( i
= 0 ; i
< 32 ; i
+= 2 ) {
1485 sscanf (& buf
[ i
], "%02x" , ( unsigned int *)& buf8
[ i
/ 2 ]);
1488 if ( mfEmlSetMem ( buf8
, blockNum
, 1 )) {
1489 PrintAndLog ( "Cant set emul block: %3d" , blockNum
);
1496 if ( blockNum
>= numBlocks
) break ;
1501 if (( blockNum
!= numBlocks
)) {
1502 PrintAndLog ( "File content error. Got %d must be %d blocks." , blockNum
, numBlocks
);
1505 PrintAndLog ( "Loaded %d blocks from file: %s" , blockNum
, filename
);
1510 int CmdHF14AMfESave ( const char * Cmd
)
1513 char filename
[ FILE_PATH_SIZE
];
1514 char * fnameptr
= filename
;
1516 int i
, j
, len
, numBlocks
;
1517 int nameParamNo
= 1 ;
1519 memset ( filename
, 0 , sizeof ( filename
));
1520 memset ( buf
, 0 , sizeof ( buf
));
1522 char ctmp
= param_getchar ( Cmd
, 0 );
1524 if ( ctmp
== 'h' || ctmp
== 'H' ) {
1525 PrintAndLog ( "It saves emul dump into the file `filename.eml` or `cardID.eml`" );
1526 PrintAndLog ( " Usage: hf mf esave [card memory] [file name w/o `.eml`]" );
1527 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
1529 PrintAndLog ( " sample: hf mf esave " );
1530 PrintAndLog ( " hf mf esave 4" );
1531 PrintAndLog ( " hf mf esave 4 filename" );
1536 case '0' : numBlocks
= 5 * 4 ; break ;
1538 case '\0' : numBlocks
= 16 * 4 ; break ;
1539 case '2' : numBlocks
= 32 * 4 ; break ;
1540 case '4' : numBlocks
= 256 ; break ;
1547 len
= param_getstr ( Cmd
, nameParamNo
, filename
);
1549 if ( len
> FILE_PATH_SIZE
- 4 ) len
= FILE_PATH_SIZE
- 4 ;
1551 // user supplied filename?
1553 // get filename (UID from memory)
1554 if ( mfEmlGetMem ( buf
, 0 , 1 )) {
1555 PrintAndLog ( "Can \' t get UID from block: %d" , 0 );
1556 len
= sprintf ( fnameptr
, "dump" );
1560 for ( j
= 0 ; j
< 7 ; j
++, fnameptr
+= 2 )
1561 sprintf ( fnameptr
, "%02X" , buf
[ j
]);
1567 // add file extension
1568 sprintf ( fnameptr
, ".eml" );
1571 f
= fopen ( filename
, "w+" );
1574 PrintAndLog ( "Can't open file %s " , filename
);
1579 for ( i
= 0 ; i
< numBlocks
; i
++) {
1580 if ( mfEmlGetMem ( buf
, i
, 1 )) {
1581 PrintAndLog ( "Cant get block: %d" , i
);
1584 for ( j
= 0 ; j
< 16 ; j
++)
1585 fprintf ( f
, "%02X" , buf
[ j
]);
1590 PrintAndLog ( "Saved %d blocks to file: %s" , numBlocks
, filename
);
1596 int CmdHF14AMfECFill ( const char * Cmd
)
1598 uint8_t keyType
= 0 ;
1599 uint8_t numSectors
= 16 ;
1601 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1602 PrintAndLog ( "Usage: hf mf ecfill <key A/B> [card memory]" );
1603 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
1605 PrintAndLog ( "samples: hf mf ecfill A" );
1606 PrintAndLog ( " hf mf ecfill A 4" );
1607 PrintAndLog ( "Read card and transfer its data to emulator memory." );
1608 PrintAndLog ( "Keys must be laid in the emulator memory. \n " );
1612 char ctmp
= param_getchar ( Cmd
, 0 );
1613 if ( ctmp
!= 'a' && ctmp
!= 'A' && ctmp
!= 'b' && ctmp
!= 'B' ) {
1614 PrintAndLog ( "Key type must be A or B" );
1617 if ( ctmp
!= 'A' && ctmp
!= 'a' ) keyType
= 1 ;
1619 ctmp
= param_getchar ( Cmd
, 1 );
1621 case '0' : numSectors
= 5 ; break ;
1623 case '\0' : numSectors
= 16 ; break ;
1624 case '2' : numSectors
= 32 ; break ;
1625 case '4' : numSectors
= 40 ; break ;
1626 default : numSectors
= 16 ;
1629 printf ( "--params: numSectors: %d, keyType:%d" , numSectors
, keyType
);
1630 UsbCommand c
= { CMD_MIFARE_EML_CARDLOAD
, { numSectors
, keyType
, 0 }};
1636 int CmdHF14AMfEKeyPrn ( const char * Cmd
)
1641 uint64_t keyA
, keyB
;
1643 if ( param_getchar ( Cmd
, 0 ) == 'h' ) {
1644 PrintAndLog ( "It prints the keys loaded in the emulator memory" );
1645 PrintAndLog ( "Usage: hf mf ekeyprn [card memory]" );
1646 PrintAndLog ( " [card memory]: 0 = 320 bytes (Mifare Mini), 1 = 1K (default), 2 = 2K, 4 = 4K" );
1648 PrintAndLog ( " sample: hf mf ekeyprn 1" );
1652 char cmdp
= param_getchar ( Cmd
, 0 );
1655 case '0' : numSectors
= 5 ; break ;
1657 case '\0' : numSectors
= 16 ; break ;
1658 case '2' : numSectors
= 32 ; break ;
1659 case '4' : numSectors
= 40 ; break ;
1660 default : numSectors
= 16 ;
1663 PrintAndLog ( "|---|----------------|----------------|" );
1664 PrintAndLog ( "|sec|key A |key B |" );
1665 PrintAndLog ( "|---|----------------|----------------|" );
1666 for ( i
= 0 ; i
< numSectors
; i
++) {
1667 if ( mfEmlGetMem ( data
, FirstBlockOfSector ( i
) + NumBlocksPerSector ( i
) - 1 , 1 )) {
1668 PrintAndLog ( "error get block %d" , FirstBlockOfSector ( i
) + NumBlocksPerSector ( i
) - 1 );
1671 keyA
= bytes_to_num ( data
, 6 );
1672 keyB
= bytes_to_num ( data
+ 10 , 6 );
1673 PrintAndLog ( "|%03d| %012" llx
" | %012" llx
" |" , i
, keyA
, keyB
);
1675 PrintAndLog ( "|---|----------------|----------------|" );
1681 int CmdHF14AMfCSetUID ( const char * Cmd
)
1683 uint8_t wipeCard
= 0 ;
1684 uint8_t uid
[ 8 ] = { 0x00 };
1685 uint8_t oldUid
[ 8 ] = { 0x00 };
1686 uint8_t atqa
[ 2 ] = { 0x00 };
1687 uint8_t sak
[ 1 ] = { 0x00 };
1688 uint8_t atqaPresent
= 1 ;
1693 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, argi
) == 'h' ) {
1694 PrintAndLog ( "Usage: hf mf csetuid <UID 8 hex symbols> [ATQA 4 hex symbols SAK 2 hex symbols] [w]" );
1695 PrintAndLog ( "sample: hf mf csetuid 01020304" );
1696 PrintAndLog ( "sample: hf mf csetuid 01020304 0004 08 w" );
1697 PrintAndLog ( "Set UID, ATQA, and SAK for magic Chinese card (only works with such cards)" );
1698 PrintAndLog ( "If you also want to wipe the card then add 'w' at the end of the command line." );
1702 if ( param_getchar ( Cmd
, argi
) && param_gethex ( Cmd
, argi
, uid
, 8 )) {
1703 PrintAndLog ( "UID must include 8 HEX symbols" );
1708 ctmp
= param_getchar ( Cmd
, argi
);
1709 if ( ctmp
== 'w' || ctmp
== 'W' ) {
1715 if ( param_getchar ( Cmd
, argi
)) {
1716 if ( param_gethex ( Cmd
, argi
, atqa
, 4 )) {
1717 PrintAndLog ( "ATQA must include 4 HEX symbols" );
1721 if (! param_getchar ( Cmd
, argi
) || param_gethex ( Cmd
, argi
, sak
, 2 )) {
1722 PrintAndLog ( "SAK must include 2 HEX symbols" );
1731 ctmp
= param_getchar ( Cmd
, argi
);
1732 if ( ctmp
== 'w' || ctmp
== 'W' ) {
1737 PrintAndLog ( "--wipe card:%s uid:%s" , ( wipeCard
)? "YES" : "NO" , sprint_hex ( uid
, 4 ));
1739 res
= mfCSetUID ( uid
, ( atqaPresent
)? atqa
: NULL
, ( atqaPresent
)? sak
: NULL
, oldUid
, wipeCard
);
1741 PrintAndLog ( "Can't set UID. error=%d" , res
);
1745 PrintAndLog ( "old UID:%s" , sprint_hex ( oldUid
, 4 ));
1746 PrintAndLog ( "new UID:%s" , sprint_hex ( uid
, 4 ));
1750 int CmdHF14AMfCSetBlk ( const char * Cmd
)
1752 uint8_t memBlock
[ 16 ] = { 0x00 };
1753 uint8_t blockNo
= 0 ;
1754 bool wipeCard
= FALSE
;
1757 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1758 PrintAndLog ( "Usage: hf mf csetblk <block number> <block data (32 hex symbols)> [w]" );
1759 PrintAndLog ( "sample: hf mf csetblk 1 01020304050607080910111213141516" );
1760 PrintAndLog ( "Set block data for magic Chinese card (only works with such cards)" );
1761 PrintAndLog ( "If you also want wipe the card then add 'w' at the end of the command line" );
1765 blockNo
= param_get8 ( Cmd
, 0 );
1767 if ( param_gethex ( Cmd
, 1 , memBlock
, 32 )) {
1768 PrintAndLog ( "block data must include 32 HEX symbols" );
1772 char ctmp
= param_getchar ( Cmd
, 2 );
1773 wipeCard
= ( ctmp
== 'w' || ctmp
== 'W' );
1774 PrintAndLog ( "--block number:%2d data:%s" , blockNo
, sprint_hex ( memBlock
, 16 ));
1776 res
= mfCSetBlock ( blockNo
, memBlock
, NULL
, wipeCard
, CSETBLOCK_SINGLE_OPER
);
1778 PrintAndLog ( "Can't write block. error=%d" , res
);
1785 int CmdHF14AMfCLoad ( const char * Cmd
)
1788 char filename
[ FILE_PATH_SIZE
] = { 0x00 };
1789 char * fnameptr
= filename
;
1790 char buf
[ 64 ] = { 0x00 };
1791 uint8_t buf8
[ 64 ] = { 0x00 };
1792 uint8_t fillFromEmulator
= 0 ;
1793 int i
, len
, blockNum
, flags
= 0 ;
1795 if ( param_getchar ( Cmd
, 0 ) == 'h' || param_getchar ( Cmd
, 0 )== 0x00 ) {
1796 PrintAndLog ( "It loads magic Chinese card from the file `filename.eml`" );
1797 PrintAndLog ( "or from emulator memory (option `e`)" );
1798 PrintAndLog ( "Usage: hf mf cload <file name w/o `.eml`>" );
1799 PrintAndLog ( " or: hf mf cload e " );
1800 PrintAndLog ( " sample: hf mf cload filename" );
1804 char ctmp
= param_getchar ( Cmd
, 0 );
1805 if ( ctmp
== 'e' || ctmp
== 'E' ) fillFromEmulator
= 1 ;
1807 if ( fillFromEmulator
) {
1808 for ( blockNum
= 0 ; blockNum
< 16 * 4 ; blockNum
+= 1 ) {
1809 if ( mfEmlGetMem ( buf8
, blockNum
, 1 )) {
1810 PrintAndLog ( "Cant get block: %d" , blockNum
);
1813 if ( blockNum
== 0 ) flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
; // switch on field and send magic sequence
1814 if ( blockNum
== 1 ) flags
= 0 ; // just write
1815 if ( blockNum
== 16 * 4 - 1 ) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
; // Done. Magic Halt and switch off field.
1817 if ( mfCSetBlock ( blockNum
, buf8
, NULL
, 0 , flags
)) {
1818 PrintAndLog ( "Cant set magic card block: %d" , blockNum
);
1825 if ( len
> FILE_PATH_SIZE
- 4 ) len
= FILE_PATH_SIZE
- 4 ;
1827 memcpy ( filename
, Cmd
, len
);
1830 sprintf ( fnameptr
, ".eml" );
1833 f
= fopen ( filename
, "r" );
1835 PrintAndLog ( "File not found or locked." );
1842 memset ( buf
, 0 , sizeof ( buf
));
1844 if ( fgets ( buf
, sizeof ( buf
), f
) == NULL
) {
1846 PrintAndLog ( "File reading error." );
1850 if ( strlen ( buf
) < 32 ) {
1851 if ( strlen ( buf
) && feof ( f
))
1853 PrintAndLog ( "File content error. Block data must include 32 HEX symbols" );
1857 for ( i
= 0 ; i
< 32 ; i
+= 2 )
1858 sscanf (& buf
[ i
], "%02x" , ( unsigned int *)& buf8
[ i
/ 2 ]);
1860 if ( blockNum
== 0 ) flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
; // switch on field and send magic sequence
1861 if ( blockNum
== 1 ) flags
= 0 ; // just write
1862 if ( blockNum
== 16 * 4 - 1 ) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
; // Done. Switch off field.
1864 if ( mfCSetBlock ( blockNum
, buf8
, NULL
, 0 , flags
)) {
1865 PrintAndLog ( "Can't set magic card block: %d" , blockNum
);
1870 if ( blockNum
>= 16 * 4 ) break ; // magic card type - mifare 1K
1874 if ( blockNum
!= 16 * 4 && blockNum
!= 32 * 4 + 8 * 16 ){
1875 PrintAndLog ( "File content error. There must be 64 blocks" );
1878 PrintAndLog ( "Loaded from file: %s" , filename
);
1884 int CmdHF14AMfCGetBlk ( const char * Cmd
) {
1885 uint8_t memBlock
[ 16 ];
1886 uint8_t blockNo
= 0 ;
1888 memset ( memBlock
, 0x00 , sizeof ( memBlock
));
1890 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1891 PrintAndLog ( "Usage: hf mf cgetblk <block number>" );
1892 PrintAndLog ( "sample: hf mf cgetblk 1" );
1893 PrintAndLog ( "Get block data from magic Chinese card (only works with such cards) \n " );
1897 blockNo
= param_get8 ( Cmd
, 0 );
1899 PrintAndLog ( "--block number:%2d " , blockNo
);
1901 res
= mfCGetBlock ( blockNo
, memBlock
, CSETBLOCK_SINGLE_OPER
);
1903 PrintAndLog ( "Can't read block. error=%d" , res
);
1907 PrintAndLog ( "block data:%s" , sprint_hex ( memBlock
, 16 ));
1912 int CmdHF14AMfCGetSc ( const char * Cmd
) {
1913 uint8_t memBlock
[ 16 ] = { 0x00 };
1914 uint8_t sectorNo
= 0 ;
1917 if ( strlen ( Cmd
) < 1 || param_getchar ( Cmd
, 0 ) == 'h' ) {
1918 PrintAndLog ( "Usage: hf mf cgetsc <sector number>" );
1919 PrintAndLog ( "sample: hf mf cgetsc 0" );
1920 PrintAndLog ( "Get sector data from magic Chinese card (only works with such cards) \n " );
1924 sectorNo
= param_get8 ( Cmd
, 0 );
1925 if ( sectorNo
> 15 ) {
1926 PrintAndLog ( "Sector number must be in [0..15] as in MIFARE classic." );
1930 PrintAndLog ( "--sector number:%d " , sectorNo
);
1932 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1933 for ( i
= 0 ; i
< 4 ; i
++) {
1934 if ( i
== 1 ) flags
= 0 ;
1935 if ( i
== 3 ) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1937 res
= mfCGetBlock ( sectorNo
* 4 + i
, memBlock
, flags
);
1939 PrintAndLog ( "Can't read block. %d error=%d" , sectorNo
* 4 + i
, res
);
1943 PrintAndLog ( "block %3d data:%s" , sectorNo
* 4 + i
, sprint_hex ( memBlock
, 16 ));
1949 int CmdHF14AMfCSave ( const char * Cmd
) {
1952 char filename
[ FILE_PATH_SIZE
] = { 0x00 };
1953 char * fnameptr
= filename
;
1954 uint8_t fillFromEmulator
= 0 ;
1955 uint8_t buf
[ 64 ] = { 0x00 };
1956 int i
, j
, len
, flags
;
1958 // memset(filename, 0, sizeof(filename));
1959 // memset(buf, 0, sizeof(buf));
1961 if ( param_getchar ( Cmd
, 0 ) == 'h' ) {
1962 PrintAndLog ( "It saves `magic Chinese` card dump into the file `filename.eml` or `cardID.eml`" );
1963 PrintAndLog ( "or into emulator memory (option `e`)" );
1964 PrintAndLog ( "Usage: hf mf esave [file name w/o `.eml`][e]" );
1965 PrintAndLog ( " sample: hf mf esave " );
1966 PrintAndLog ( " hf mf esave filename" );
1967 PrintAndLog ( " hf mf esave e \n " );
1971 char ctmp
= param_getchar ( Cmd
, 0 );
1972 if ( ctmp
== 'e' || ctmp
== 'E' ) fillFromEmulator
= 1 ;
1974 if ( fillFromEmulator
) {
1975 // put into emulator
1976 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
1977 for ( i
= 0 ; i
< 16 * 4 ; i
++) {
1978 if ( i
== 1 ) flags
= 0 ;
1979 if ( i
== 16 * 4 - 1 ) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
1981 if ( mfCGetBlock ( i
, buf
, flags
)) {
1982 PrintAndLog ( "Cant get block: %d" , i
);
1986 if ( mfEmlSetMem ( buf
, i
, 1 )) {
1987 PrintAndLog ( "Cant set emul block: %d" , i
);
1994 if ( len
> FILE_PATH_SIZE
- 4 ) len
= FILE_PATH_SIZE
- 4 ;
1998 if ( mfCGetBlock ( 0 , buf
, CSETBLOCK_SINGLE_OPER
)) {
1999 PrintAndLog ( "Cant get block: %d" , 0 );
2000 len
= sprintf ( fnameptr
, "dump" );
2004 for ( j
= 0 ; j
< 7 ; j
++, fnameptr
+= 2 )
2005 sprintf ( fnameptr
, "%02x" , buf
[ j
]);
2008 memcpy ( filename
, Cmd
, len
);
2012 sprintf ( fnameptr
, ".eml" );
2015 f
= fopen ( filename
, "w+" );
2018 PrintAndLog ( "File not found or locked." );
2023 flags
= CSETBLOCK_INIT_FIELD
+ CSETBLOCK_WUPC
;
2024 for ( i
= 0 ; i
< 16 * 4 ; i
++) {
2025 if ( i
== 1 ) flags
= 0 ;
2026 if ( i
== 16 * 4 - 1 ) flags
= CSETBLOCK_HALT
+ CSETBLOCK_RESET_FIELD
;
2028 if ( mfCGetBlock ( i
, buf
, flags
)) {
2029 PrintAndLog ( "Cant get block: %d" , i
);
2032 for ( j
= 0 ; j
< 16 ; j
++)
2033 fprintf ( f
, "%02x" , buf
[ j
]);
2038 PrintAndLog ( "Saved to file: %s" , filename
);
2045 int CmdHF14AMfSniff ( const char * Cmd
){
2047 bool wantLogToFile
= 0 ;
2048 bool wantDecrypt
= 0 ;
2049 //bool wantSaveToEml = 0; TODO
2050 bool wantSaveToEmlFile
= 0 ;
2060 uint8_t atqa
[ 2 ] = { 0x00 };
2063 uint8_t * buf
= NULL
;
2064 uint16_t bufsize
= 0 ;
2065 uint8_t * bufPtr
= NULL
;
2067 char ctmp
= param_getchar ( Cmd
, 0 );
2068 if ( ctmp
== 'h' || ctmp
== 'H' ) {
2069 PrintAndLog ( "It continuously gets data from the field and saves it to: log, emulator, emulator file." );
2070 PrintAndLog ( "You can specify:" );
2071 PrintAndLog ( " l - save encrypted sequence to logfile `uid.log`" );
2072 PrintAndLog ( " d - decrypt sequence and put it to log file `uid.log`" );
2073 PrintAndLog ( " n/a e - decrypt sequence, collect read and write commands and save the result of the sequence to emulator memory" );
2074 PrintAndLog ( " f - decrypt sequence, collect read and write commands and save the result of the sequence to emulator dump file `uid.eml`" );
2075 PrintAndLog ( "Usage: hf mf sniff [l][d][e][f]" );
2076 PrintAndLog ( " sample: hf mf sniff l d e" );
2080 for ( int i
= 0 ; i
< 4 ; i
++) {
2081 ctmp
= param_getchar ( Cmd
, i
);
2082 if ( ctmp
== 'l' || ctmp
== 'L' ) wantLogToFile
= true ;
2083 if ( ctmp
== 'd' || ctmp
== 'D' ) wantDecrypt
= true ;
2084 //if (ctmp == 'e' || ctmp == 'E') wantSaveToEml = true; TODO
2085 if ( ctmp
== 'f' || ctmp
== 'F' ) wantSaveToEmlFile
= true ;
2088 printf ( "------------------------------------------------------------------------- \n " );
2089 printf ( "Executing command. \n " );
2090 printf ( "Press the key on the proxmark3 device to abort both proxmark3 and client. \n " );
2091 printf ( "Press the key on pc keyboard to abort the client. \n " );
2092 printf ( "------------------------------------------------------------------------- \n " );
2094 UsbCommand c
= { CMD_MIFARE_SNIFFER
, { 0 , 0 , 0 }};
2095 clearCommandBuffer ();
2104 printf ( " \n aborted via keyboard! \n " );
2109 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 2000 )) {
2110 res
= resp
. arg
[ 0 ] & 0xff ;
2111 uint16_t traceLen
= resp
. arg
[ 1 ];
2114 if ( res
== 0 ) return 0 ; // we are done
2116 if ( res
== 1 ) { // there is (more) data to be transferred
2117 if ( pckNum
== 0 ) { // first packet, (re)allocate necessary buffer
2118 if ( traceLen
> bufsize
) {
2120 if ( buf
== NULL
) { // not yet allocated
2121 p
= malloc ( traceLen
);
2122 } else { // need more memory
2123 p
= realloc ( buf
, traceLen
);
2126 PrintAndLog ( "Cannot allocate memory for trace" );
2134 memset ( buf
, 0x00 , traceLen
);
2136 memcpy ( bufPtr
, resp
. d
. asBytes
, len
);
2141 if ( res
== 2 ) { // received all data, start displaying
2142 blockLen
= bufPtr
- buf
;
2145 PrintAndLog ( "received trace len: %d packages: %d" , blockLen
, pckNum
);
2146 while ( bufPtr
- buf
< blockLen
) {
2147 bufPtr
+= 6 ; // skip (void) timing information
2148 len
= *(( uint16_t *) bufPtr
);
2156 if (( len
== 14 ) && ( bufPtr
[ 0 ] == 0xff ) && ( bufPtr
[ 1 ] == 0xff ) && ( bufPtr
[ 12 ] == 0xff ) && ( bufPtr
[ 13 ] == 0xff )) {
2157 memcpy ( uid
, bufPtr
+ 2 , 7 );
2158 memcpy ( atqa
, bufPtr
+ 2 + 7 , 2 );
2159 uid_len
= ( atqa
[ 0 ] & 0xC0 ) == 0x40 ? 7 : 4 ;
2161 PrintAndLog ( "tag select uid:%s atqa:0x%02x%02x sak:0x%02x" ,
2162 sprint_hex ( uid
+ ( 7 - uid_len
), uid_len
),
2166 if ( wantLogToFile
|| wantDecrypt
) {
2167 FillFileNameByUID ( logHexFileName
, uid
+ ( 7 - uid_len
), ".log" , uid_len
);
2168 AddLogCurrentDT ( logHexFileName
);
2171 mfTraceInit ( uid
, atqa
, sak
, wantSaveToEmlFile
);
2173 PrintAndLog ( "%s(%d):%s" , isTag
? "TAG" : "RDR" , num
, sprint_hex ( bufPtr
, len
));
2175 AddLogHex ( logHexFileName
, isTag
? "TAG: " : "RDR: " , bufPtr
, len
);
2177 mfTraceDecode ( bufPtr
, len
, wantSaveToEmlFile
);
2181 bufPtr
+= (( len
- 1 )/ 8 + 1 ); // ignore parity
2192 //needs nt, ar, at, Data to decrypt
2193 int CmdDecryptTraceCmds ( const char * Cmd
){
2196 param_gethex_ex ( Cmd
, 3 , data
,& len
);
2197 return tryDecryptWord ( param_get32ex ( Cmd
, 0 , 0 , 16 ), param_get32ex ( Cmd
, 1 , 0 , 16 ), param_get32ex ( Cmd
, 2 , 0 , 16 ), data
, len
/ 2 );
2200 static command_t CommandTable
[] =
2202 { "help" , CmdHelp
, 1 , "This help" },
2203 { "dbg" , CmdHF14AMfDbg
, 0 , "Set default debug mode" },
2204 { "rdbl" , CmdHF14AMfRdBl
, 0 , "Read MIFARE classic block" },
2205 { "rdsc" , CmdHF14AMfRdSc
, 0 , "Read MIFARE classic sector" },
2206 { "dump" , CmdHF14AMfDump
, 0 , "Dump MIFARE classic tag to binary file" },
2207 { "restore" , CmdHF14AMfRestore
, 0 , "Restore MIFARE classic binary file to BLANK tag" },
2208 { "wrbl" , CmdHF14AMfWrBl
, 0 , "Write MIFARE classic block" },
2209 { "chk" , CmdHF14AMfChk
, 0 , "Test block keys" },
2210 { "mifare" , CmdHF14AMifare
, 0 , "Read parity error messages." },
2211 { "nested" , CmdHF14AMfNested
, 0 , "Test nested authentication" },
2212 { "sniff" , CmdHF14AMfSniff
, 0 , "Sniff card-reader communication" },
2213 { "sim" , CmdHF14AMf1kSim
, 0 , "Simulate MIFARE card" },
2214 { "eclr" , CmdHF14AMfEClear
, 0 , "Clear simulator memory block" },
2215 { "eget" , CmdHF14AMfEGet
, 0 , "Get simulator memory block" },
2216 { "eset" , CmdHF14AMfESet
, 0 , "Set simulator memory block" },
2217 { "eload" , CmdHF14AMfELoad
, 0 , "Load from file emul dump" },
2218 { "esave" , CmdHF14AMfESave
, 0 , "Save to file emul dump" },
2219 { "ecfill" , CmdHF14AMfECFill
, 0 , "Fill simulator memory with help of keys from simulator" },
2220 { "ekeyprn" , CmdHF14AMfEKeyPrn
, 0 , "Print keys from simulator memory" },
2221 { "csetuid" , CmdHF14AMfCSetUID
, 0 , "Set UID for magic Chinese card" },
2222 { "csetblk" , CmdHF14AMfCSetBlk
, 0 , "Write block - Magic Chinese card" },
2223 { "cgetblk" , CmdHF14AMfCGetBlk
, 0 , "Read block - Magic Chinese card" },
2224 { "cgetsc" , CmdHF14AMfCGetSc
, 0 , "Read sector - Magic Chinese card" },
2225 { "cload" , CmdHF14AMfCLoad
, 0 , "Load dump into magic Chinese card" },
2226 { "csave" , CmdHF14AMfCSave
, 0 , "Save dump from magic Chinese card into file or emulator" },
2227 { "decrypt" , CmdDecryptTraceCmds
, 1 , "[nt] [ar_enc] [at_enc] [data] - to decrypt snoop or trace" },
2228 { NULL
, NULL
, 0 , NULL
}
2231 int CmdHFMF ( const char * Cmd
)
2234 WaitForResponseTimeout ( CMD_ACK
, NULL
, 100 );
2236 CmdsParse ( CommandTable
, Cmd
);
2240 int CmdHelp ( const char * Cmd
)
2242 CmdsHelp ( CommandTable
);