goodson
goodson

Reputation: 21

How to identify card number,expiry date, cvv, card holder name from from read record result

the following was the result I got from reading the record that contained card info of contactless card using nfc

["70", "73", "9f", "6c", "2", "0", "1", "9f", "62", "6", "0", "0", "0", "0", "e0", "0", "9f", "63", "6",

"0", "0", "0", "0", "1f", "80", "56", "32", "42", "35", "31", "39", "39", "31", "31", "30", "37", "37",

"35", "30", "35", "32", "33", "36", "35", "5e", "20", "2f", "5e", "32", "32", "30", "35", "32", "32",

"31", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30", "30",

"30", "30", "30", "30", "30", "30", "9f", "64", "1", "4", "9f", "65", "2", "1c", "0", "9f", "66", "2",

"3", "f0", "9f", "6b", "13", "XX", "XX", "XX", "XX", "XX", "XX", "XX", "XX", "dY", "YY", "Y2", "21", "0",

"0", "0", "0", "0", "0", "f", "9f", "67", "1", "4", "90", "0"]

note: single values in the array are prefixed with 0 i.e "e" means "0e"

By inspection I have been able to identify the card number which is marked out with XX and expiry date marked out with Y's

But I want to get other info like cvv,card holder name

How am I to identify where these are. Because the card number and cvv was just by physical inspection.What values do I ought to look out for to find them.

Thanks in Advance

Upvotes: 0

Views: 1570

Answers (1)

Adarsh Nanu
Adarsh Nanu

Reputation: 2211

EMV follow TAG, length, value standard. You need to read bit level, understand and implement, or you will end up coding for each tag. Details on where you can find materials to read on it, refer my this answer.

Output of READ RECORD is formatted in a Template 70. Read more about it in EMV BOOKs. Download link is also included in the above link.

Just to see how the data is formatted, remove the double quotes and put your data here here if it is a test card.

Upvotes: 1

Related Questions