]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/mifarehost.c
2 // people from mifare@nethemba.com, 2010
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 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
11 #include "mifarehost.h"
18 #include "crapto1/crapto1.h"
19 #include "proxmark3.h"
24 #include "iso14443crc.h"
28 // mifare tracer flags used in mfTraceDecode()
29 #define TRACE_IDLE 0x00
30 #define TRACE_AUTH1 0x01
31 #define TRACE_AUTH2 0x02
32 #define TRACE_AUTH_OK 0x03
33 #define TRACE_READ_DATA 0x04
34 #define TRACE_WRITE_OK 0x05
35 #define TRACE_WRITE_DATA 0x06
36 #define TRACE_ERROR 0xFF
39 static int compare_uint64 ( const void * a
, const void * b
) {
40 // didn't work: (the result is truncated to 32 bits)
41 //return (*(int64_t*)b - *(int64_t*)a);
44 if (*( uint64_t *) b
== *( uint64_t *) a
) return 0 ;
45 else if (*( uint64_t *) b
< *( uint64_t *) a
) return 1 ;
50 // create the intersection (common members) of two sorted lists. Lists are terminated by -1. Result will be in list1. Number of elements is returned.
51 static uint32_t intersection ( uint64_t * list1
, uint64_t * list2
)
53 if ( list1
== NULL
|| list2
== NULL
) {
56 uint64_t * p1
, * p2
, * p3
;
60 while ( * p1
!= - 1 && * p2
!= - 1 ) {
61 if ( compare_uint64 ( p1
, p2
) == 0 ) {
66 while ( compare_uint64 ( p1
, p2
) < 0 ) ++ p1
;
67 while ( compare_uint64 ( p1
, p2
) > 0 ) ++ p2
;
75 // Darkside attack (hf mf mifare)
76 static uint32_t nonce2key ( uint32_t uid
, uint32_t nt
, uint32_t nr
, uint32_t ar
, uint64_t par_info
, uint64_t ks_info
, uint64_t ** keys
) {
77 struct Crypto1State
* states
;
79 uint8_t bt
, ks3x
[ 8 ], par
[ 8 ][ 8 ];
80 uint64_t key_recovered
;
83 // Reset the last three significant bits of the reader nonce
86 for ( pos
= 0 ; pos
< 8 ; pos
++) {
87 ks3x
[ 7 - pos
] = ( ks_info
>> ( pos
* 8 )) & 0x0f ;
88 bt
= ( par_info
>> ( pos
* 8 )) & 0xff ;
90 par
[ 7 - pos
][ i
] = ( bt
>> i
) & 0x01 ;
94 states
= lfsr_common_prefix ( nr
, ar
, ks3x
, par
, ( par_info
== 0 ));
101 keylist
= ( uint64_t *) states
;
103 for ( i
= 0 ; keylist
[ i
]; i
++) {
104 lfsr_rollback_word ( states
+ i
, uid
^ nt
, 0 );
105 crypto1_get_lfsr ( states
+ i
, & key_recovered
);
106 keylist
[ i
] = key_recovered
;
115 int mfDarkside ( uint64_t * key
)
118 uint32_t nt
= 0 , nr
= 0 , ar
= 0 ;
119 uint64_t par_list
= 0 , ks_list
= 0 ;
120 uint64_t * keylist
= NULL
, * last_keylist
= NULL
;
121 uint32_t keycount
= 0 ;
124 UsbCommand c
= { CMD_READER_MIFARE
, { true , 0 , 0 }};
127 printf ( "------------------------------------------------------------------------- \n " );
128 printf ( "Executing command. Expected execution time: 25sec on average \n " );
129 printf ( "Press button on the proxmark3 device to abort both proxmark3 and client. \n " );
130 printf ( "------------------------------------------------------------------------- \n " );
134 clearCommandBuffer ();
139 int c
= getchar (); ( void ) c
;
152 if ( WaitForResponseTimeout ( CMD_ACK
, & resp
, 1000 )) {
157 uid
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 0 , 4 );
158 nt
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 4 , 4 );
159 par_list
= bytes_to_num ( resp
. d
. asBytes
+ 8 , 8 );
160 ks_list
= bytes_to_num ( resp
. d
. asBytes
+ 16 , 8 );
161 nr
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 24 , 4 );
162 ar
= ( uint32_t ) bytes_to_num ( resp
. d
. asBytes
+ 28 , 4 );
167 if ( par_list
== 0 && c
. arg
[ 0 ] == true ) {
168 PrintAndLog ( "Parity is all zero. Most likely this card sends NACK on every failed authentication." );
172 keycount
= nonce2key ( uid
, nt
, nr
, ar
, par_list
, ks_list
, & keylist
);
175 PrintAndLog ( "Key not found (lfsr_common_prefix list is null). Nt=%08x" , nt
);
176 PrintAndLog ( "This is expected to happen in 25%% of all cases. Trying again with a different reader nonce..." );
181 qsort ( keylist
, keycount
, sizeof (* keylist
), compare_uint64
);
182 keycount
= intersection ( last_keylist
, keylist
);
185 last_keylist
= keylist
;
191 PrintAndLog ( "Found %u possible keys. Trying to authenticate with each of them ... \n " , keycount
);
193 PrintAndLog ( "Found a possible key. Trying to authenticate... \n " );
197 uint8_t keyBlock
[ USB_CMD_DATA_SIZE
];
198 int max_keys
= USB_CMD_DATA_SIZE
/ 6 ;
199 for ( int i
= 0 ; i
< keycount
; i
+= max_keys
) {
200 int size
= keycount
- i
> max_keys
? max_keys
: keycount
- i
;
201 for ( int j
= 0 ; j
< size
; j
++) {
203 num_to_bytes ( last_keylist
[ i
* max_keys
+ j
], 6 , keyBlock
+( j
* 6 ));
205 num_to_bytes ( keylist
[ i
* max_keys
+ j
], 6 , keyBlock
+( j
* 6 ));
208 if (! mfCheckKeys ( 0 , 0 , false , size
, keyBlock
, key
)) {
218 PrintAndLog ( "Authentication failed. Trying again..." );
220 last_keylist
= keylist
;
228 int mfCheckKeys ( uint8_t blockNo
, uint8_t keyType
, bool clear_trace
, uint8_t keycnt
, uint8_t * keyBlock
, uint64_t * key
){
232 UsbCommand c
= { CMD_MIFARE_CHKKEYS
, {(( blockNo
& 0xff ) | (( keyType
& 0xff ) << 8 )), clear_trace
, keycnt
}};
233 memcpy ( c
. d
. asBytes
, keyBlock
, 6 * keycnt
);
237 if (! WaitForResponseTimeout ( CMD_ACK
,& resp
, 3000 )) return 1 ;
238 if (( resp
. arg
[ 0 ] & 0xff ) != 0x01 ) return 2 ;
239 * key
= bytes_to_num ( resp
. d
. asBytes
, 6 );
243 int mfCheckKeysSec ( uint8_t sectorCnt
, uint8_t keyType
, uint8_t timeout14a
, bool clear_trace
, uint8_t keycnt
, uint8_t * keyBlock
, sector_t
* e_sector
){
247 if ( e_sector
== NULL
)
250 UsbCommand c
= { CMD_MIFARE_CHKKEYS
, {(( sectorCnt
& 0xff ) | (( keyType
& 0xff ) << 8 )), ( clear_trace
| 0x02 )|(( timeout14a
& 0xff ) << 8 ), keycnt
}};
251 memcpy ( c
. d
. asBytes
, keyBlock
, 6 * keycnt
);
255 if (! WaitForResponseTimeoutW ( CMD_ACK
, & resp
, MAX ( 3000 , 1000 + 13 * sectorCnt
* keycnt
* ( keyType
== 2 ? 2 : 1 )), false )) return 1 ; // timeout: 13 ms / fail auth
256 if (( resp
. arg
[ 0 ] & 0xff ) != 0x01 ) return 2 ;
258 bool foundAKey
= false ;
259 for ( int sec
= 0 ; sec
< sectorCnt
; sec
++){
260 for ( int keyAB
= 0 ; keyAB
< 2 ; keyAB
++){
261 keyPtr
= *( resp
. d
. asBytes
+ keyAB
* 40 + sec
);
263 e_sector
[ sec
]. foundKey
[ keyAB
] = true ;
264 e_sector
[ sec
]. Key
[ keyAB
] = bytes_to_num ( keyBlock
+ ( keyPtr
- 1 ) * 6 , 6 );
269 return foundAKey
? 0 : 3 ;
272 // Compare 16 Bits out of cryptostate
273 int Compare16Bits ( const void * a
, const void * b
) {
274 if ((*( uint64_t *) b
& 0x00ff000000ff0000 ) == (*( uint64_t *) a
& 0x00ff000000ff0000 )) return 0 ;
275 else if ((*( uint64_t *) b
& 0x00ff000000ff0000 ) > (*( uint64_t *) a
& 0x00ff000000ff0000 )) return 1 ;
282 struct Crypto1State
* slhead
;
286 struct Crypto1State
* sltail
;
298 // wrapper function for multi-threaded lfsr_recovery32
300 #ifdef __has_attribute
301 #if __has_attribute(force_align_arg_pointer)
302 __attribute__ (( force_align_arg_pointer
))
305 * nested_worker_thread ( void * arg
)
307 struct Crypto1State
* p1
;
308 StateList_t
* statelist
= arg
;
310 statelist
-> head
. slhead
= lfsr_recovery32 ( statelist
-> ks1
, statelist
-> nt
^ statelist
-> uid
);
311 for ( p1
= statelist
-> head
. slhead
; *( uint64_t *) p1
!= 0 ; p1
++);
312 statelist
-> len
= p1
- statelist
-> head
. slhead
;
313 statelist
-> tail
. sltail
= -- p1
;
314 qsort ( statelist
-> head
. slhead
, statelist
-> len
, sizeof ( uint64_t ), Compare16Bits
);
316 return statelist
-> head
. slhead
;
320 int mfnested ( uint8_t blockNo
, uint8_t keyType
, uint8_t * key
, uint8_t trgBlockNo
, uint8_t trgKeyType
, uint8_t * resultKey
, bool calibrate
)
326 StateList_t statelists
[ 2 ];
327 struct Crypto1State
* p1
, * p2
, * p3
, * p4
;
330 WaitForResponseTimeout ( CMD_ACK
, NULL
, 100 );
332 UsbCommand c
= { CMD_MIFARE_NESTED
, { blockNo
+ keyType
* 0x100 , trgBlockNo
+ trgKeyType
* 0x100 , calibrate
}};
333 memcpy ( c
. d
. asBytes
, key
, 6 );
336 if (! WaitForResponseTimeout ( CMD_ACK
, & resp
, 1500 )) {
341 return resp
. arg
[ 0 ]; // error during nested
344 memcpy (& uid
, resp
. d
. asBytes
, 4 );
345 PrintAndLog ( "uid:%08x trgbl=%d trgkey=%x" , uid
, ( uint16_t ) resp
. arg
[ 2 ] & 0xff , ( uint16_t ) resp
. arg
[ 2 ] >> 8 );
347 for ( i
= 0 ; i
< 2 ; i
++) {
348 statelists
[ i
]. blockNo
= resp
. arg
[ 2 ] & 0xff ;
349 statelists
[ i
]. keyType
= ( resp
. arg
[ 2 ] >> 8 ) & 0xff ;
350 statelists
[ i
]. uid
= uid
;
351 memcpy (& statelists
[ i
]. nt
, ( void *)( resp
. d
. asBytes
+ 4 + i
* 8 + 0 ), 4 );
352 memcpy (& statelists
[ i
]. ks1
, ( void *)( resp
. d
. asBytes
+ 4 + i
* 8 + 4 ), 4 );
357 pthread_t thread_id
[ 2 ];
359 // create and run worker threads
360 for ( i
= 0 ; i
< 2 ; i
++) {
361 pthread_create ( thread_id
+ i
, NULL
, nested_worker_thread
, & statelists
[ i
]);
364 // wait for threads to terminate:
365 for ( i
= 0 ; i
< 2 ; i
++) {
366 pthread_join ( thread_id
[ i
], ( void *)& statelists
[ i
]. head
. slhead
);
370 // the first 16 Bits of the cryptostate already contain part of our key.
371 // Create the intersection of the two lists based on these 16 Bits and
372 // roll back the cryptostate
373 p1
= p3
= statelists
[ 0 ]. head
. slhead
;
374 p2
= p4
= statelists
[ 1 ]. head
. slhead
;
375 while ( p1
<= statelists
[ 0 ]. tail
. sltail
&& p2
<= statelists
[ 1 ]. tail
. sltail
) {
376 if ( Compare16Bits ( p1
, p2
) == 0 ) {
377 struct Crypto1State savestate
, * savep
= & savestate
;
379 while ( Compare16Bits ( p1
, savep
) == 0 && p1
<= statelists
[ 0 ]. tail
. sltail
) {
381 lfsr_rollback_word ( p3
, statelists
[ 0 ]. nt
^ statelists
[ 0 ]. uid
, 0 );
386 while ( Compare16Bits ( p2
, savep
) == 0 && p2
<= statelists
[ 1 ]. tail
. sltail
) {
388 lfsr_rollback_word ( p4
, statelists
[ 1 ]. nt
^ statelists
[ 1 ]. uid
, 0 );
394 while ( Compare16Bits ( p1
, p2
) == - 1 ) p1
++;
395 while ( Compare16Bits ( p1
, p2
) == 1 ) p2
++;
400 statelists
[ 0 ]. len
= p3
- statelists
[ 0 ]. head
. slhead
;
401 statelists
[ 1 ]. len
= p4
- statelists
[ 1 ]. head
. slhead
;
402 statelists
[ 0 ]. tail
. sltail
=-- p3
;
403 statelists
[ 1 ]. tail
. sltail
=-- p4
;
405 // the statelists now contain possible keys. The key we are searching for must be in the
406 // intersection of both lists. Create the intersection:
407 qsort ( statelists
[ 0 ]. head
. keyhead
, statelists
[ 0 ]. len
, sizeof ( uint64_t ), compare_uint64
);
408 qsort ( statelists
[ 1 ]. head
. keyhead
, statelists
[ 1 ]. len
, sizeof ( uint64_t ), compare_uint64
);
409 statelists
[ 0 ]. len
= intersection ( statelists
[ 0 ]. head
. keyhead
, statelists
[ 1 ]. head
. keyhead
);
411 memset ( resultKey
, 0 , 6 );
412 // The list may still contain several key candidates. Test each of them with mfCheckKeys
413 for ( i
= 0 ; i
< statelists
[ 0 ]. len
; i
++) {
416 crypto1_get_lfsr ( statelists
[ 0 ]. head
. slhead
+ i
, & key64
);
417 num_to_bytes ( key64
, 6 , keyBlock
);
419 if (! mfCheckKeys ( statelists
[ 0 ]. blockNo
, statelists
[ 0 ]. keyType
, false , 1 , keyBlock
, & key64
)) {
420 num_to_bytes ( key64
, 6 , resultKey
);
425 free ( statelists
[ 0 ]. head
. slhead
);
426 free ( statelists
[ 1 ]. head
. slhead
);
433 int mfEmlGetMem ( uint8_t * data
, int blockNum
, int blocksCount
) {
434 UsbCommand c
= { CMD_MIFARE_EML_MEMGET
, { blockNum
, blocksCount
, 0 }};
438 if (! WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) return 1 ;
439 memcpy ( data
, resp
. d
. asBytes
, blocksCount
* 16 );
443 int mfEmlSetMem ( uint8_t * data
, int blockNum
, int blocksCount
) {
444 UsbCommand c
= { CMD_MIFARE_EML_MEMSET
, { blockNum
, blocksCount
, 0 }};
445 memcpy ( c
. d
. asBytes
, data
, blocksCount
* 16 );
452 int mfCGetBlock ( uint8_t blockNo
, uint8_t * data
, uint8_t params
) {
455 UsbCommand c
= { CMD_MIFARE_CGETBLOCK
, { params
, 0 , blockNo
}};
459 if ( WaitForResponseTimeout ( CMD_ACK
,& resp
, 1500 )) {
460 isOK
= resp
. arg
[ 0 ] & 0xff ;
461 memcpy ( data
, resp
. d
. asBytes
, 16 );
464 PrintAndLog ( "Command execute timeout" );
470 int mfCSetBlock ( uint8_t blockNo
, uint8_t * data
, uint8_t * uid
, bool wantWipe
, uint8_t params
) {
473 UsbCommand c
= { CMD_MIFARE_CSETBLOCK
, { wantWipe
, params
& ( 0xFE | ( uid
== NULL
? 0 : 1 )), blockNo
}};
474 memcpy ( c
. d
. asBytes
, data
, 16 );
478 if ( WaitForResponseTimeout ( CMD_ACK
, & resp
, 1500 )) {
479 isOK
= resp
. arg
[ 0 ] & 0xff ;
481 memcpy ( uid
, resp
. d
. asBytes
, 4 );
485 PrintAndLog ( "Command execute timeout" );
492 int mfCWipe ( uint32_t numSectors
, bool gen1b
, bool wantWipe
, bool wantFill
) {
494 uint8_t cmdParams
= wantWipe
+ wantFill
* 0x02 + gen1b
* 0x04 ;
495 UsbCommand c
= { CMD_MIFARE_CWIPE
, { numSectors
, cmdParams
, 0 }};
499 WaitForResponse ( CMD_ACK
,& resp
);
500 isOK
= resp
. arg
[ 0 ] & 0xff ;
505 int mfCSetUID ( uint8_t * uid
, uint8_t * atqa
, uint8_t * sak
, uint8_t * oldUID
) {
506 uint8_t oldblock0
[ 16 ] = { 0x00 };
507 uint8_t block0
[ 16 ] = { 0x00 };
512 /* generation 1a magic card by default */
513 uint8_t cmdParams
= CSETBLOCK_SINGLE_OPER
;
515 /* generation 1b magic card */
516 cmdParams
= CSETBLOCK_SINGLE_OPER
| CSETBLOCK_MAGIC_1B
;
519 res
= mfCGetBlock ( 0 , oldblock0
, cmdParams
);
522 memcpy ( block0
, oldblock0
, 16 );
523 PrintAndLog ( "old block 0: %s" , sprint_hex ( block0
, 16 ));
525 PrintAndLog ( "Couldn't get old data. Will write over the last bytes of Block 0." );
528 // fill in the new values
530 memcpy ( block0
, uid
, 4 );
532 block0
[ 4 ] = block0
[ 0 ] ^ block0
[ 1 ] ^ block0
[ 2 ] ^ block0
[ 3 ];
533 // mifare classic SAK(byte 5) and ATQA(byte 6 and 7, reversed)
540 PrintAndLog ( "new block 0: %s" , sprint_hex ( block0
, 16 ));
542 res
= mfCSetBlock ( 0 , block0
, oldUID
, false , cmdParams
);
544 PrintAndLog ( "Can't set block 0. Error: %d" , res
);
552 UsbCommand c
= { CMD_MIFARE_CIDENT
, { 0 , 0 , 0 }};
555 WaitForResponse ( CMD_ACK
,& resp
);
557 uint8_t isGeneration
= resp
. arg
[ 0 ] & 0xff ;
558 switch ( isGeneration
){
559 case 1 : PrintAndLog ( "Chinese magic backdoor commands (GEN 1a) detected" ); break ;
560 case 2 : PrintAndLog ( "Chinese magic backdoor command (GEN 1b) detected" ); break ;
561 default : PrintAndLog ( "No chinese magic backdoor command detected" ); break ;
564 return ( int ) isGeneration
;
571 static uint8_t trailerAccessBytes
[ 4 ] = { 0x08 , 0x77 , 0x8F , 0x00 };
574 char logHexFileName
[ FILE_PATH_SIZE
] = { 0x00 };
575 static uint8_t traceCard
[ 4096 ] = { 0x00 };
576 static char traceFileName
[ FILE_PATH_SIZE
] = { 0x00 };
577 static int traceState
= TRACE_IDLE
;
578 static uint8_t traceCurBlock
= 0 ;
579 static uint8_t traceCurKey
= 0 ;
581 struct Crypto1State
* traceCrypto1
= NULL
;
583 struct Crypto1State
* revstate
;
588 uint32_t uid
; // serial number
589 uint32_t nt
; // tag challenge
590 uint32_t nr_enc
; // encrypted reader challenge
591 uint32_t ar_enc
; // encrypted reader response
592 uint32_t at_enc
; // encrypted tag response
594 int isTraceCardEmpty ( void ) {
595 return (( traceCard
[ 0 ] == 0 ) && ( traceCard
[ 1 ] == 0 ) && ( traceCard
[ 2 ] == 0 ) && ( traceCard
[ 3 ] == 0 ));
598 int isBlockEmpty ( int blockN
) {
599 for ( int i
= 0 ; i
< 16 ; i
++)
600 if ( traceCard
[ blockN
* 16 + i
] != 0 ) return 0 ;
605 int isBlockTrailer ( int blockN
) {
606 return (( blockN
& 0x03 ) == 0x03 );
609 int saveTraceCard ( void ) {
612 if ((! strlen ( traceFileName
)) || ( isTraceCardEmpty ())) return 0 ;
614 f
= fopen ( traceFileName
, "w+" );
617 for ( int i
= 0 ; i
< 64 ; i
++) { // blocks
618 for ( int j
= 0 ; j
< 16 ; j
++) // bytes
619 fprintf ( f
, "%02x" , *( traceCard
+ i
* 16 + j
));
627 int loadTraceCard ( uint8_t * tuid
) {
629 char buf
[ 64 ] = { 0x00 };
630 uint8_t buf8
[ 64 ] = { 0x00 };
633 if (! isTraceCardEmpty ())
636 memset ( traceCard
, 0x00 , 4096 );
637 memcpy ( traceCard
, tuid
+ 3 , 4 );
639 FillFileNameByUID ( traceFileName
, tuid
, ".eml" , 7 );
641 f
= fopen ( traceFileName
, "r" );
648 memset ( buf
, 0 , sizeof ( buf
));
649 if ( fgets ( buf
, sizeof ( buf
), f
) == NULL
) {
650 PrintAndLog ( "File reading error." );
655 if ( strlen ( buf
) < 32 ){
657 PrintAndLog ( "File content error. Block data must include 32 HEX symbols" );
661 for ( i
= 0 ; i
< 32 ; i
+= 2 )
662 sscanf (& buf
[ i
], "%02x" , ( unsigned int *)& buf8
[ i
/ 2 ]);
664 memcpy ( traceCard
+ blockNum
* 16 , buf8
, 16 );
673 int mfTraceInit ( uint8_t * tuid
, uint8_t * atqa
, uint8_t sak
, bool wantSaveToEmlFile
) {
676 crypto1_destroy ( traceCrypto1
);
680 if ( wantSaveToEmlFile
)
683 traceCard
[ 4 ] = traceCard
[ 0 ] ^ traceCard
[ 1 ] ^ traceCard
[ 2 ] ^ traceCard
[ 3 ];
685 memcpy (& traceCard
[ 6 ], atqa
, 2 );
687 uid
= bytes_to_num ( tuid
+ 3 , 4 );
689 traceState
= TRACE_IDLE
;
694 void mf_crypto1_decrypt ( struct Crypto1State
* pcs
, uint8_t * data
, int len
, bool isEncrypted
){
699 for ( i
= 0 ; i
< len
; i
++)
700 data
[ i
] = crypto1_byte ( pcs
, 0x00 , isEncrypted
) ^ data
[ i
];
703 for ( i
= 0 ; i
< 4 ; i
++)
704 bt
|= ( crypto1_bit ( pcs
, 0 , isEncrypted
) ^ BIT ( data
[ 0 ], i
)) << i
;
712 int mfTraceDecode ( uint8_t * data_src
, int len
, bool wantSaveToEmlFile
) {
715 if ( traceState
== TRACE_ERROR
) return 1 ;
717 traceState
= TRACE_ERROR
;
721 memcpy ( data
, data_src
, len
);
722 if (( traceCrypto1
) && (( traceState
== TRACE_IDLE
) || ( traceState
> TRACE_AUTH_OK
))) {
723 mf_crypto1_decrypt ( traceCrypto1
, data
, len
, 0 );
724 PrintAndLog ( "dec> %s" , sprint_hex ( data
, len
));
725 AddLogHex ( logHexFileName
, "dec> " , data
, len
);
728 switch ( traceState
) {
730 // check packet crc16!
731 if (( len
>= 4 ) && (! CheckCrc14443 ( CRC_14443_A
, data
, len
))) {
732 PrintAndLog ( "dec> CRC ERROR!!!" );
733 AddLogLine ( logHexFileName
, "dec> " , "CRC ERROR!!!" );
734 traceState
= TRACE_ERROR
; // do not decrypt the next commands
739 if (( len
== 4 ) && (( data
[ 0 ] == 0x60 ) || ( data
[ 0 ] == 0x61 ))) {
740 traceState
= TRACE_AUTH1
;
741 traceCurBlock
= data
[ 1 ];
742 traceCurKey
= data
[ 0 ] == 60 ? 1 : 0 ;
747 if (( len
== 4 ) && (( data
[ 0 ] == 0x30 ))) {
748 traceState
= TRACE_READ_DATA
;
749 traceCurBlock
= data
[ 1 ];
754 if (( len
== 4 ) && (( data
[ 0 ] == 0xA0 ))) {
755 traceState
= TRACE_WRITE_OK
;
756 traceCurBlock
= data
[ 1 ];
761 if (( len
== 4 ) && (( data
[ 0 ] == 0x50 ) && ( data
[ 1 ] == 0x00 ))) {
762 traceState
= TRACE_ERROR
; // do not decrypt the next commands
769 case TRACE_READ_DATA
:
771 traceState
= TRACE_IDLE
;
773 if ( isBlockTrailer ( traceCurBlock
)) {
774 memcpy ( traceCard
+ traceCurBlock
* 16 + 6 , data
+ 6 , 4 );
776 memcpy ( traceCard
+ traceCurBlock
* 16 , data
, 16 );
778 if ( wantSaveToEmlFile
) saveTraceCard ();
781 traceState
= TRACE_ERROR
;
787 if (( len
== 1 ) && ( data
[ 0 ] == 0x0a )) {
788 traceState
= TRACE_WRITE_DATA
;
792 traceState
= TRACE_ERROR
;
797 case TRACE_WRITE_DATA
:
799 traceState
= TRACE_IDLE
;
801 memcpy ( traceCard
+ traceCurBlock
* 16 , data
, 16 );
802 if ( wantSaveToEmlFile
) saveTraceCard ();
805 traceState
= TRACE_ERROR
;
812 traceState
= TRACE_AUTH2
;
813 nt
= bytes_to_num ( data
, 4 );
816 traceState
= TRACE_ERROR
;
823 traceState
= TRACE_AUTH_OK
;
825 nr_enc
= bytes_to_num ( data
, 4 );
826 ar_enc
= bytes_to_num ( data
+ 4 , 4 );
829 traceState
= TRACE_ERROR
;
836 traceState
= TRACE_IDLE
;
839 at_enc
= bytes_to_num ( data
, 4 );
842 ks2
= ar_enc
^ prng_successor ( nt
, 64 );
843 ks3
= at_enc
^ prng_successor ( nt
, 96 );
844 revstate
= lfsr_recovery64 ( ks2
, ks3
);
845 lfsr_rollback_word ( revstate
, 0 , 0 );
846 lfsr_rollback_word ( revstate
, 0 , 0 );
847 lfsr_rollback_word ( revstate
, nr_enc
, 1 );
848 lfsr_rollback_word ( revstate
, uid
^ nt
, 0 );
850 crypto1_get_lfsr ( revstate
, & lfsr
);
851 printf ( "key> %x%x \n " , ( unsigned int )(( lfsr
& 0xFFFFFFFF00000000 ) >> 32 ), ( unsigned int )( lfsr
& 0xFFFFFFFF ));
852 AddLogUint64 ( logHexFileName
, "key> " , lfsr
);
854 printf ( "key> nested not implemented! \n " );
855 at_enc
= bytes_to_num ( data
, 4 );
857 crypto1_destroy ( traceCrypto1
);
860 traceState
= TRACE_ERROR
;
863 int blockShift
= (( traceCurBlock
& 0xFC ) + 3 ) * 16 ;
864 if ( isBlockEmpty (( traceCurBlock
& 0xFC ) + 3 )) memcpy ( traceCard
+ blockShift
+ 6 , trailerAccessBytes
, 4 );
867 num_to_bytes ( lfsr
, 6 , traceCard
+ blockShift
+ 10 );
869 num_to_bytes ( lfsr
, 6 , traceCard
+ blockShift
);
871 if ( wantSaveToEmlFile
) saveTraceCard ();
874 crypto1_destroy ( traceCrypto1
);
877 // set cryptosystem state
878 traceCrypto1
= lfsr_recovery64 ( ks2
, ks3
);
881 traceState
= TRACE_ERROR
;
887 traceState
= TRACE_ERROR
;
896 int tryDecryptWord ( uint32_t nt
, uint32_t ar_enc
, uint32_t at_enc
, uint8_t * data
, int len
){
898 uint32_t nt; // tag challenge
899 uint32_t ar_enc; // encrypted reader response
900 uint32_t at_enc; // encrypted tag response
903 crypto1_destroy ( traceCrypto1
);
905 ks2
= ar_enc
^ prng_successor ( nt
, 64 );
906 ks3
= at_enc
^ prng_successor ( nt
, 96 );
907 traceCrypto1
= lfsr_recovery64 ( ks2
, ks3
);
909 mf_crypto1_decrypt ( traceCrypto1
, data
, len
, 0 );
911 PrintAndLog ( "Decrypted data: [%s]" , sprint_hex ( data
, len
) );
912 crypto1_destroy ( traceCrypto1
);
916 /** validate_prng_nonce
917 * Determine if nonce is deterministic. ie: Suspectable to Darkside attack.
920 * false = hardend prng
922 bool validate_prng_nonce ( uint32_t nonce
) {
926 dist
= malloc ( 2 << 16 );
931 for ( x
= i
= 1 ; i
; ++ i
) {
932 dist
[( x
& 0xff ) << 8 | x
>> 8 ] = i
;
933 x
= x
>> 1 | ( x
^ x
>> 2 ^ x
>> 3 ^ x
>> 5 ) << 15 ;
936 uint32_t res
= ( 65535 - dist
[ nonce
>> 16 ] + dist
[ nonce
& 0xffff ]) % 65535 ;
943 * function performs a partial AUTH, where it tries to authenticate against block0, key A, but only collects tag nonce.
944 * the tag nonce is check to see if it has a predictable PRNG.
946 * TRUE if tag uses WEAK prng (ie Now the NACK bug also needs to be present for Darkside attack)
947 * FALSE is tag uses HARDEND prng (ie hardnested attack possible, with known key)
949 int DetectClassicPrng ( void ){
951 UsbCommand resp
, respA
;
952 uint8_t cmd
[] = { 0x60 , 0x00 }; // MIFARE_AUTH_KEYA
953 uint32_t flags
= ISO14A_CONNECT
| ISO14A_RAW
| ISO14A_APPEND_CRC
| ISO14A_NO_RATS
;
955 UsbCommand c
= { CMD_READER_ISO_14443a
, { flags
, sizeof ( cmd
), 0 }};
956 memcpy ( c
. d
. asBytes
, cmd
, sizeof ( cmd
));
958 clearCommandBuffer ();
960 if (! WaitForResponseTimeout ( CMD_ACK
, & resp
, 2000 )) {
961 PrintAndLog ( "PRNG UID: Reply timeout." );
965 // if select tag failed.
966 if ( resp
. arg
[ 0 ] == 0 ) {
967 PrintAndLog ( "PRNG error: selecting tag failed, can't detect prng." );
971 if (! WaitForResponseTimeout ( CMD_ACK
, & respA
, 5000 )) {
972 PrintAndLog ( "PRNG data: Reply timeout." );
977 if ( respA
. arg
[ 0 ] != 4 ) {
978 PrintAndLog ( "PRNG data error: Wrong length: %d" , respA
. arg
[ 0 ]);
982 uint32_t nonce
= bytes_to_num ( respA
. d
. asBytes
, respA
. arg
[ 0 ]);
983 return validate_prng_nonce ( nonce
);