Intro

The new version of Proxmark3 family(RDV4) contains special features which might help to understand and analyze Chip-And-PIN cards. This new connector is “hidden” under the base case and can be implemented with the new version of the RDV4 repository based on iceman fork.

This slideshow requires JavaScript.

The command is the “SC” (Smart Card). It has certain functions that can be used to take information from the chip. Specifically, I will write about how I did it manually using the raw command initially to extract data from financial chip credit cards. This method could be applied to many different SIM technologies to interact with the chips.


Story

I bought the Proxmark3 RVD4 at defcon this year from HackerWarehouse. I tested certain functions such as Payment NFC cards support, EMV exploitation and raw commands. Also, I changed antennas to test distance. Everything worked as expected.

The only thing left was to test the Chip connector. I did not have the adapter, so I started researching where could I get it; and thanks to Philippe Teuwen, I bought it at Aliexpress:

After I ordered this adapter, I left US to participate in HITB at Singapore. Surprisingly, I had the opportunity to met part of the great team who design and support the new version of Proxmark3:

photo_2018-10-06_19-34-01

Dennis and Proxgrind

Personally, I congratulated them for this impressive artwork, and I promised that I will work on the SC command to extract data from PSE(Payment System Environment) cards. Moreover, they had chip card adapters, so I could start researching about that right away.


The Process

The main issue was that we “did not have” enough support for SC commands in the Proxmark3 repository to read specific information from financial Chip cards.

Initially, we had a command which extract the ATR(Answer To Reset) information:

pm3 –> sc info

As a bonus, the SC command has the RAW parameter to inject specific ISO-7816 commands depending of the chip type that we are playing with.

pm3 –> sc raw
Usage: sc raw [h|r|c] d

h        :  this help
r         :  do not read response
a         :  active signal field ON without select
s         :  active signal field ON with select
t          :  executes TLV decoder if it possible
d         :  bytes to send

Examples:

sc raw d 11223344

Without specific details, I assumed that I could send raw hexadecimal values using the PSE idea remembering the ISOs relation between contact(chip) and contactless(NFC) technology:

picture1-1

We noticed that they share the same APDU layer which means we can interact them using the similar orders and structure relating the NFC commands. Changing from PPSE to PSE easily; for more reference you can take a look at Intro to Analyze NFC Payment Methods & Contactless Cards:

Initial changes:

From: 00 A4 04 00 0E 32 50 41 59 2E 53 59 53 2E 44 44 46 30 31 00 (PPSE)

To: 00 A4 04 00 0E 31 50 41 59 2E 53 59 53 2E 44 44 46 30 31 00 (PSE)

Class byte = 00 (CLA)
Select command = A4 (INS)
Select by name = 04 (P1)
The first record = 00 (P2)

The data is a PPSE constant “filename” value, 2PAY.SYS.DDF01, so we have to convert it:

2PAY.SYS.DDF01 = PPSE = [0x32, 0x50, 0x41, 0x59, 0x2E, 0x53, 0x59, 0x53, 0x2E, 0x44, 0x44, 0x46, 0x30, 0x31]

1PAY.SYS.DDF01 =   PSE = [0x31, 0x50, 0x41, 0x59, 0x2E, 0x53, 0x59, 0x53, 0x2E, 0x44, 0x44, 0x46, 0x30, 0x31]

dncbzfevsaa5owp-e1539532017723.jpg

At this point, the Proxmark3 received this response:

[+] A4 61 1C

Which means “…If the card answers with a “61 XX”, means that the card has “XX” bytes waiting.” to obtain that information, we should send a new command:

So we have to request with the “GET RESPONSE” command. Being “1C”, the answered number of bytes that the initial “sc raw” obtained.

pm3 –> sc raw d 00 C0 00 00 1C

dncbzfevsaa5owp1.jpg

With this in mind, we are able to automatize scripts or functions to do the “GET RESPONSE” automatically:

dneucl6x0aac1zx

During my trip to Ekoparty, Iceman was able to integrate certain functions in the “SC” module to brute force SFIs files using Adam Laurie work for MasterCard:

And the code could be easily modified to adapt it to another type of cards such as Visa:

Now, we have a new functionality in the Proxmark3 that could assist with the creation of new analytical techniques or attacks approaches against Chip-And-PIN cards.