diff --git a/CHANGELOG.md b/CHANGELOG.md index a075cdfe61..f83683b5fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log... ## [unreleased][unreleased] +- Updated atrs list (@iceman1001) +- Added support for a new KDF (@iceman1001) - Added Inner range aid and mad entries (@iceman1001) - Changed `mem spiffs` - Use all available space in SPI flash (@ANTodorov) - Fixed wrong size check in MifareSim (@iceman1001) @@ -70,6 +72,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac - Fixed arguments for `SimulateIso14443aTag` and `SimulateIso14443aInit` in `hf_young.c`, `hf_aveful.c`, `hf_msdsal.c`, `hf_cardhopper.c`, `hf_reblay.c`, `hf_tcprst.c` and `hf_craftbyte.c` (@archi) - Added `mf_backdoor_dump.py` script that dumps FM11RF08S and similar (Mifare Classic 1k) tag data that can be directly read by known backdoor keys. (@Aptimex) - Added keys for Metro Q transit cards in Huston, TX. (@Anarchothulhu) +- Add new Mifare Classic keys from MifareClassicTool and Flipper projects. (@onovy) ## [Backdoor.4.18994][2024-09-10] - Changed flashing messages to be less scary (@iceman1001) diff --git a/armsrc/Standalone/hf_cardhopper.c b/armsrc/Standalone/hf_cardhopper.c index 4b4321a379..ed6e660bf7 100644 --- a/armsrc/Standalone/hf_cardhopper.c +++ b/armsrc/Standalone/hf_cardhopper.c @@ -232,7 +232,7 @@ static void become_card(void) { uint32_t counters[3] = { 0 }; uint8_t tearings[3] = { 0xbd, 0xbd, 0xbd }; uint8_t pages; - SimulateIso14443aInit(tagType, flags, data, NULL, &canned, &cuid, counters, tearings, &pages); + SimulateIso14443aInit(tagType, flags, data, NULL, 0, &canned, &cuid, counters, tearings, &pages); DbpString(_CYAN_("[@]") " Setup done - entering emulation loop"); int fromReaderLen; diff --git a/armsrc/Standalone/hf_msdsal.c b/armsrc/Standalone/hf_msdsal.c index c26ef07de2..4ea27b0824 100644 --- a/armsrc/Standalone/hf_msdsal.c +++ b/armsrc/Standalone/hf_msdsal.c @@ -379,7 +379,7 @@ void RunMod(void) { BigBuf_free_keep_EM(); // tag type: 11 = ISO/IEC 14443-4 - javacard (JCOP) - if (SimulateIso14443aInit(11, flags, data, NULL, &responses, &cuid, NULL, NULL, NULL) == false) { + if (SimulateIso14443aInit(11, flags, data, NULL, 0, &responses, &cuid, NULL, NULL, NULL) == false) { BigBuf_free_keep_EM(); reply_ng(CMD_HF_MIFARE_SIMULATE, PM3_EINIT, NULL, 0); DbpString(_RED_("Error initializing the emulation process!")); diff --git a/armsrc/Standalone/hf_reblay.c b/armsrc/Standalone/hf_reblay.c index d9f60abcf2..51a30f64e5 100644 --- a/armsrc/Standalone/hf_reblay.c +++ b/armsrc/Standalone/hf_reblay.c @@ -268,7 +268,7 @@ void RunMod() { BigBuf_free_keep_EM(); // 4 = ISO/IEC 14443-4 - javacard (JCOP) - if (SimulateIso14443aInit(4, flags, data, NULL, &responses, &cuid, NULL, NULL, NULL) == false) { + if (SimulateIso14443aInit(4, flags, data, NULL, 0, &responses, &cuid, NULL, NULL, NULL) == false) { BigBuf_free_keep_EM(); reply_ng(CMD_HF_MIFARE_SIMULATE, PM3_EINIT, NULL, 0); DbpString(_RED_("Error initializing the emulation process!")); diff --git a/armsrc/Standalone/hf_tcprst.c b/armsrc/Standalone/hf_tcprst.c index 8fb8621b30..9b42d0fd04 100644 --- a/armsrc/Standalone/hf_tcprst.c +++ b/armsrc/Standalone/hf_tcprst.c @@ -193,7 +193,7 @@ void RunMod(void) { memcpy(data, stuid, sizeof(stuid)); - if (SimulateIso14443aInit(tagType, flags, data, NULL, &responses, &cuid, counters, tearings, &pages) == false) { + if (SimulateIso14443aInit(tagType, flags, data, NULL, 0, &responses, &cuid, counters, tearings, &pages) == false) { BigBuf_free_keep_EM(); reply_ng(CMD_HF_MIFARE_SIMULATE, PM3_EINIT, NULL, 0); DbpString(_YELLOW_("!!") "Error initializing the simulation process!"); @@ -371,7 +371,7 @@ void RunMod(void) { memcpy(data, stuid, sizeof(stuid)); - if (SimulateIso14443aInit(tagType, flags, data, NULL, &responses, &cuid, counters, tearings, &pages) == false) { + if (SimulateIso14443aInit(tagType, flags, data, NULL, 0, &responses, &cuid, counters, tearings, &pages) == false) { BigBuf_free_keep_EM(); reply_ng(CMD_HF_MIFARE_SIMULATE, PM3_EINIT, NULL, 0); DbpString(_YELLOW_("!!") "Error initializing the simulation process!"); diff --git a/armsrc/appmain.c b/armsrc/appmain.c index 152c15335d..b258b4ff5d 100644 --- a/armsrc/appmain.c +++ b/armsrc/appmain.c @@ -2748,11 +2748,11 @@ static void PacketReceived(PacketCommandNG *packet) { break; } - if (payload->startidx == DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_p64k)) { + if (payload->startidx == DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_pages64k)) { Flash_CheckBusy(BUSY_TIMEOUT); Flash_WriteEnable(); Flash_Erase4k(3, 0xC); - } else if (payload->startidx == DEFAULT_MF_KEYS_OFFSET_P(spi_flash_p64k)) { + } else if (payload->startidx == DEFAULT_MF_KEYS_OFFSET_P(spi_flash_pages64k)) { Flash_CheckBusy(BUSY_TIMEOUT); Flash_WriteEnable(); Flash_Erase4k(3, 0x8); @@ -2762,11 +2762,11 @@ static void PacketReceived(PacketCommandNG *packet) { Flash_CheckBusy(BUSY_TIMEOUT); Flash_WriteEnable(); Flash_Erase4k(3, 0xA); - } else if (payload->startidx == DEFAULT_ICLASS_KEYS_OFFSET_P(spi_flash_p64k)) { + } else if (payload->startidx == DEFAULT_ICLASS_KEYS_OFFSET_P(spi_flash_pages64k)) { Flash_CheckBusy(BUSY_TIMEOUT); Flash_WriteEnable(); Flash_Erase4k(3, 0xB); - } else if (payload->startidx == FLASH_MEM_SIGNATURE_OFFSET_P(spi_flash_p64k)) { + } else if (payload->startidx == FLASH_MEM_SIGNATURE_OFFSET_P(spi_flash_pages64k)) { Flash_CheckBusy(BUSY_TIMEOUT); Flash_WriteEnable(); Flash_Erase4k(3, 0xF); @@ -2789,7 +2789,7 @@ static void PacketReceived(PacketCommandNG *packet) { LED_B_OFF(); break; } - if (page < spi_flash_p64k-1) { + if (page < spi_flash_pages64k - 1) { isok = Flash_WipeMemoryPage(page); // let spiffs check and update its info post flash erase rdv40_spiffs_check(); @@ -2836,7 +2836,7 @@ static void PacketReceived(PacketCommandNG *packet) { LED_B_ON(); rdv40_validation_t *info = (rdv40_validation_t *)BigBuf_malloc(sizeof(rdv40_validation_t)); - bool isok = Flash_ReadData(FLASH_MEM_SIGNATURE_OFFSET_P(spi_flash_p64k), info->signature, FLASH_MEM_SIGNATURE_LEN); + bool isok = Flash_ReadData(FLASH_MEM_SIGNATURE_OFFSET_P(spi_flash_pages64k), info->signature, FLASH_MEM_SIGNATURE_LEN); if (FlashInit()) { Flash_UniqueID(info->flashid); @@ -2856,11 +2856,11 @@ static void PacketReceived(PacketCommandNG *packet) { if (FlashInit()) { isok = true; if (g_dbglevel >= DBG_DEBUG) { - Dbprintf(" CMD_FLASHMEM_PAGE64K 0x%02x (%d 64k pages)", spi_flash_p64k, spi_flash_p64k); + Dbprintf(" CMD_FLASHMEM_PAGE64K 0x%02x (%d 64k pages)", spi_flash_pages64k, spi_flash_pages64k); } FlashStop(); } - reply_mix(CMD_ACK, isok, 0, 0, &spi_flash_p64k, sizeof(uint8_t)); + reply_mix(CMD_ACK, isok, 0, 0, &spi_flash_pages64k, sizeof(uint8_t)); LED_B_OFF(); break; diff --git a/armsrc/lfops.c b/armsrc/lfops.c index b5567f020d..2639054663 100644 --- a/armsrc/lfops.c +++ b/armsrc/lfops.c @@ -2148,7 +2148,7 @@ void T55xx_ChkPwds(uint8_t flags, bool ledcontrol) { BigBuf_Clear_EM(); uint16_t isok = 0; uint8_t counter[2] = {0x00, 0x00}; - isok = Flash_ReadData(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_p64k), counter, sizeof(counter)); + isok = Flash_ReadData(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_pages64k), counter, sizeof(counter)); if (isok != sizeof(counter)) goto OUT; @@ -2164,7 +2164,7 @@ void T55xx_ChkPwds(uint8_t flags, bool ledcontrol) { // adjust available pwd_count pwd_count = pwd_size_available / 4; - isok = Flash_ReadData(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_p64k) + 2, pwds, pwd_size_available); + isok = Flash_ReadData(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_pages64k) + 2, pwds, pwd_size_available); if (isok != pwd_size_available) goto OUT; diff --git a/armsrc/mifarecmd.c b/armsrc/mifarecmd.c index 034012fcff..026b509b8e 100644 --- a/armsrc/mifarecmd.c +++ b/armsrc/mifarecmd.c @@ -1789,7 +1789,7 @@ void MifareChkKeys_fast(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *da BigBuf_free(); uint16_t isok = 0; uint8_t size[2] = {0x00, 0x00}; - isok = Flash_ReadData(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_p64k), size, 2); + isok = Flash_ReadData(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_pages64k), size, 2); if (isok != 2) goto OUT; @@ -1808,7 +1808,7 @@ void MifareChkKeys_fast(uint32_t arg0, uint32_t arg1, uint32_t arg2, uint8_t *da if (datain == NULL) goto OUT; - isok = Flash_ReadData(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_p64k) + 2, datain, key_mem_available); + isok = Flash_ReadData(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_pages64k) + 2, datain, key_mem_available); if (isok != key_mem_available) goto OUT; diff --git a/armsrc/spiffs_config.h b/armsrc/spiffs_config.h index 1e00afc3ca..4f8a5dd26c 100644 --- a/armsrc/spiffs_config.h +++ b/armsrc/spiffs_config.h @@ -236,7 +236,7 @@ typedef uint8_t u8_t; // Instead of giving parameters in config struct, singleton build must // give parameters in defines below. #ifndef SPIFFS_CFG_PHYS_SZ -#define SPIFFS_CFG_PHYS_SZ(ignore) (1024 * 64 * (spi_flash_p64k - 1)) +#define SPIFFS_CFG_PHYS_SZ(ignore) (1024 * 64 * (spi_flash_pages64k - 1)) #endif #ifndef SPIFFS_CFG_PHYS_ERASE_SZ #define SPIFFS_CFG_PHYS_ERASE_SZ(ignore) (4*1024) diff --git a/client/deps/mbedtls.cmake b/client/deps/mbedtls.cmake index c1ab8d8802..49c141b685 100644 --- a/client/deps/mbedtls.cmake +++ b/client/deps/mbedtls.cmake @@ -22,7 +22,8 @@ add_library(pm3rrg_rdv4_mbedtls STATIC ../../common/mbedtls/des.c ../../common/mbedtls/ecdsa.c ../../common/mbedtls/md.c - ../../common/mbedtls/md5.c + ../../common/mbedtls/hkdf.c + ../../common/mbedtls/md5.c ../../common/mbedtls/oid.c ../../common/mbedtls/pem.c ../../common/mbedtls/arc4.c diff --git a/client/dictionaries/mfc_default_keys.dic b/client/dictionaries/mfc_default_keys.dic index eec6aea94e..e1d425b809 100644 --- a/client/dictionaries/mfc_default_keys.dic +++ b/client/dictionaries/mfc_default_keys.dic @@ -2726,4 +2726,32 @@ D9D1C447E427 93B43D689F85 525A869053F1 69B25667E0B4 -6AACA2D97645 \ No newline at end of file +6AACA2D97645 +# UK London Office +435DF6296EC4 +2338B4913222 +# Acces card of students, and more in Occitanie, France +E9A553102EA5 +F982E971CFED +1F42AB9159EE +BBFB836A48B8 +B5D170B2E8F5 +E76978A05F10 +0B1A995DD007 +650DB9CEDB6B +13E54B4448B7 +3E3540C2C273 +A76152840117 +066CCC7666BC +3C0B3AC3AFA3 +CCB541598D72 +1988B5D48EC3 +892EEF0D30FB +0FE5CE5CC640 +# Volgograd (Russia) Volna transport cards keys +2B787A063D5D +D37C8F1793F7 +# H World Hotel Chain Room Keys +543071543071 +5F01015F0101 +200510241234 diff --git a/client/resources/aid_desfire.json b/client/resources/aid_desfire.json index 9a6fdcadef..565c51b0eb 100644 --- a/client/resources/aid_desfire.json +++ b/client/resources/aid_desfire.json @@ -415,6 +415,14 @@ "Description": "Digital Keys Sent To The dormakaba mobile access App", "Type": "pacs" }, + { + "AID": "F534F1", + "Vendor": "MOBOTIX AG", + "Country": "DE", + "Name": "MOBOTIX AG Access Credential", + "Description": "T26 Outdoor Station and Access Module Credential", + "Type": "pacs" + }, { "AID": "F518F0", "Vendor": "Telenot Electronic GmbH", @@ -817,10 +825,10 @@ }, { "AID": "0000F0", - "Vendor": "Metropolitan Transportation Authority (MTA)", - "Country": "US", - "Name": "OMNY (One Metro New York) (JFK)", - "Description": "JFK OMNY (One Metro New York) Card", + "Vendor": "Metropolitan Transportation Authority (MTA) / Bayerische Motoren Werke (BMW) AG", + "Country": "US / DE", + "Name": "OMNY (One Metro New York) (JFK) / BMW Digital Key", + "Description": "JFK OMNY (One Metro New York) Card / BMW Digital Key 5B3611-01", "Type": "transport" }, { diff --git a/client/src/atrs.h b/client/src/atrs.h index 1e7979c53e..dd94200979 100644 --- a/client/src/atrs.h +++ b/client/src/atrs.h @@ -102,6 +102,7 @@ const static atr_t AtrTable[] = { { "3B058073F701C0", "(Shenzhen, China) Mingwah Aohan eKey, eID\nhttp://en.mwcard.com/index.php?option=com_k2&view=item&layout=item&id=79&Itemid=439" }, { "3B060000042ECF4C", "HID 1346 ProxKey III\nhttp://www.hidglobal.com/products/cards-and-credentials/hid-proximity/1346" }, { "3B06000564032B2B", "HID 0009 P (eID)" }, + { "3B060009C480003B", "XceedID (Other)" }, { "3B06001001D6C546", "HID ProxKey II FOB\nhttp://www.hidglobal.com/documents/proxkey_ds_en.pdf" }, { "3B0601........", "HID Prox H10301 Format\n26 bit (FAC+CN)\nhttps://www.hidglobal.com/sites/default/files/omnikey_contactless_developer_guide.pdf" }, { "3B06010002009606", "EM4200 (eID)\nhttps://www.emmicroelectronic.com/product/lf-animal-access-ics/em4200" }, @@ -182,6 +183,7 @@ const static atr_t AtrTable[] = { { "3B1695D0016CFD0D00", "Virgin Mobile SIM card (SIM)" }, { "3B1695D0017B010E00", "Vivo Brasil - SIM Card (Telecommunication)" }, { "3B1695D0017BDA0D00", "Verizon GSM SIM (Telecommunication)" }, + { "3B16962A000E010103", "RW SIM card for mobile forensics (Telecommunication)" }, { "3B1696417374726964", "Gemalto IDPrime v2+ .NET" }, { "3B1696770006010403", "AIS One-2-Call GSM UICC (Telecommunication)\nhttp://www.ais.co.th" }, { "3B1696BA000E010603", "Vinaphone Vietnam SIM" }, @@ -235,9 +237,11 @@ const static atr_t AtrTable[] = { { "3B1D1106027F3F130317010011351000", "XL (Telecommunication)\nhttp://www.xl.co.id/" }, { "3B1D11434C5F53414D00143800009000", "Planeta Informatica CL-SAM (Transport)\nhttp://www.planeta.inf.br" }, { "3B1D9600230700000000000000009000", "emulator card prototype from ST" }, + { "3B1D968117081212003D17020000C300", "J3R180 SecID (Telecommunication)\nhttp://www.gdrfid.com/" }, { "3B1D97434C5F53414D00143800009000", "CLSAM (Transport)\nhttp://www.planeta.inf.br" }, { "3B1E130069454D4345663228F86B009000", "ECHS (Ex-servicemen Contributory Health Scheme) Card (HealthCare)\nhttp://echs.gov.in/" }, { "3B1E95806721544D4D04120E7132829F00", "SIM card of old Ukrainian Telecommunications Operator Ace&Base (deriving from Kyivstar) (Telecommunication)\nhttps://kyivstar.ua/uk/mm" }, + { "3B1E96806908485104376172020A0F9000", "Swedish Defense electronic ID card (PKI)" }, { "3B1F110067424146495345535266FF819000", "Finnish student id card" }, { "3B1F110067804246495345105266FF819000", "Nokia branded SC (Setec)" }, { "3B1F11006A013846495345108C02FF079000", "GSM-SIM Saunalahti (from 2004)\nFinnish cell phone operator 'Sonera' SIM card (from 2002)" }, @@ -324,6 +328,7 @@ const static atr_t AtrTable[] = { { "3B39110026BF00F00000839000", "MAGIS Club Access card (Other)" }, { "3B391300806416040186829000", "The cantonal bank of Baselland (Bank)" }, { "3B391300806416040282829000", "Swiss cantonal bank (Bank)" }, + { "3B391300806420040183829000", "Credit Suisse CSX Mastercard Debit (Bank)\nhttps://www.credit-suisse.com/ch/en/private-clients/account-cards/bank-cards/debit-mastercard.html" }, { "3B391900534F4D41445333303[1,3]", "Identity card of the Republic of Kazakhstan (passport)\nhttp://pki.gov.kz/" }, { "3B3B..00806.A[FE]030[CD]....83..9000", "GemXplore Xpresso V3" }, { "3B3B026F333BDB9600801F030031C0", "US Government CAC (PKI)" }, @@ -350,6 +355,7 @@ const static atr_t AtrTable[] = { { "3B3B94006A3820000000A033339000", "Croatia VIPNet Mobile Operator (Telecommunication)" }, { "3B3B94006A3820000009E033339000", "virgin mobile (french) SIM card" }, { "3B3B94006A382000000A2033339000", "SIM Card for cellular (Orange) (Telecommunication)" }, + { "3B3B94006F38101041018003039000", "Orange SIM (Telecommunication)" }, { "3B3B94008065321304033083819000", "SIM cards by the austrian cell phone provider A1" }, { "3B3B94008065AF030D0174830F9000", "Gemplus GemXplore Xpresso V3 B1P\nMobistar SIM - Belgium (Gemplus)" }, { "3B3B94009138115046974033339000", "Leclerc Mobile (French MVNO) SIM card" }, @@ -408,6 +414,7 @@ const static atr_t AtrTable[] = { { "3B3F94008069AF03070668007F0A0E833E9F16", "Debitel Vodafone, de (Telecommunication)" }, { "3B3F94008069AF0307066800850A0E833E9F16", "O2 (UK) SIM" }, { "3B3F94008069AF030F0280FFFF060E833E9F16", "GSM-SIM Telefonica Movistar, prepaid (Spain)" }, + { "3B3F94008069AF030F06A3FFFF060E833E9F16", "Kievstar gsm operator Ukrain (Telecommunication)" }, { "3B3F94008069AF030F07A40000060E833E9F16", "SIM Card PRO from the austrian telecom 'A1'" }, { "3B3F95008065AF0312016F7332211B83009000", "Gemplus GemXpresso PRO 64 PK SIM" }, { "3B3F95008065AF0312016F7332211B830F9000", "Vodafone Italia SIM 64K" }, @@ -423,6 +430,7 @@ const static atr_t AtrTable[] = { { "3B4F0041543838534331303220202020FFFF", "siral smartcard (JavaCard)" }, { "3B4F004932435F436172643D4E6F5F515452", "AT24C (Bank)" }, { "3B4F00536C653434322D34343DA2131091", "Debit card (Bank)" }, + { "3B4F00536C65343433322D34323D30000000", "Blank card (Other)" }, { "3B4F00536C65343433322D34323DA2131091", "VISA (Bank)" }, { "3B501100", "JAVA (JavaCard)" }, { "3B57180293020101019000", "Easyflex FastOS 2.0 / Schlumberger" }, @@ -438,8 +446,17 @@ const static atr_t AtrTable[] = { { "3B5F9600805A2C1100101000FFFFFFFF829000", "Calypso (Transport)" }, { "3B5F9600805A3F0608140101C546DEDC829000", "Navegante(r) Personalizado (Lisbon public transportation card) (Transport)\nhttps://www.navegante.pt/viajar/cartoes" }, { "3B5F9600805A3F0608140101C546EBDC829000", "Multi-Transport Pass (Navegante) (Metro, Bus, Electric, Boat) Carris Metropolitano, PT (Transport)\nhttps://www.navegante.pt/" }, + { "3B5F9600805A3F0608201223C42F0E8D829000", "OPUS Card / Montreal (Transport)\nhttps://opusenligne.ca/en" }, { "3B5F9600805A3F0608201223C4325FDE829000", "Montreal metropolitan area and Quebec city area OPUS card (Transport)\nhttps://www.carteopus.info/" }, { "3B5F9600805A3F0608201223C43AA6E0829000", "Montreal/Quebec transit OPUS card (Transport)\nhttps://www.carteopus.info/?language=en" }, + { "3B5F9600805A3F0608201223C4427698829000", "Opus Card for public transportation in the Greater Montreal Area, and in Quebec City. It uses the Calypso Standard. (Transport)\nhttps://en.wikipedia.org/wiki/OPUS_card" }, + { "3B5F9600805A3F0608201223C44CFB30829000", "OPUS Card, used for transit in Greater Montreal and Quebec City, Canada (Transport)\nhttps://www.carteopus.info/?language=en" }, + { "3B5F9600805A3F0608201223C44E6F25829000", "OPUS Metro card from Quebec, Canada (Transport)\nhttps://en.wikipedia.org/wiki/Opus_card" }, + { "3B5F9600805A3F1330141001C5D3ADC1829000", "OURA card (Transport)" }, + { "3B5F9600805A3F1330141001C5D7A7E9829000", "<< Oura >> transport card (Transport)\nhttps://www.oura.com/" }, + { "3B5F9600805A3F1330141001C656B5AA829000", "Oura Auvergne Rhone Alpes (Transport)\nhttps://oura.com" }, + { "3B5F9600805A3F1330141001C6619BEA829000", "Oura card for Auvergne-Rhone-Alpes region in France. Using for several public transport (Transport)\nhttps://www.oura.com/" }, + { "3B5F9600805A3F2BC4141001C5826963829000", "MOBIB Personal Travel Card, Brussels | STIB-MIVB (Transport)\nhttps://www.stib-mivb.be/article.html?_guid=d02c7fb6-3e9c-3810-248e-eec4ee5ebc8c&l=en" }, { "3B5F9600805AFFFF00FFFF0178724041829000", "Oura Card SNCF Transport - France Auvergne Rhone-Alpes (Transport)\nhttps://www.oura.com/xbi/boutique/card" }, { "3B600000", "Meano (Bank)" }, { "3B61000080", "blank A40CR card (JavaCard)" }, @@ -450,6 +467,9 @@ const static atr_t AtrTable[] = { { "3B6500002063CB1020", "VISA Premier debit card (Bank)" }, { "3B6500002063CB3020", "CB / VISA La Banque Postale (IDEMIA) (Bank)" }, { "3B6500002063CB3040", "Credit Mutuel Debit card (Bank)" }, + { "3B6500002063CB3220", "Societe Generale CB Visa Debit (Bank)" }, + { "3B6500002063CB3240", "Fnac MasterCard (contact interface) (Bank)\nhttps://www.fnac.com/carte-fnac-mastercard" }, + { "3B6500002063CB32C1", "Credit Card Credit Mutuel (Bank)\nhttps://www.creditmutuel.fr/partage/fr/CC/telechargements/communiques-de-presse/CM/2021/2021-03-17_CP-Carte_PVC_recycle.pdf" }, { "3B6500002063CB4700", "Orga SmartyPlus DATA STORE issued by MORPHO CARDS PERU" }, { "3B6500002063CB6300", "Bank card from Societe Generale (Oberthur)" }, { "3B6500002063CB6400", "Bank card Caisse d'Epargne" }, @@ -511,6 +531,7 @@ const static atr_t AtrTable[] = { { "3B6500002063CBC000", "Nickel Credit Card (Bank)\nhttps://nickel.eu" }, { "3B6500002063CBC080", "VISA debit card (Bank)\nhttps://www.cic.fr/fr/banques/professionnels/gestion-courante/cartes-paiement-professionnelles.html" }, { "3B6500002063CBC100", "CIC (Bank)\nhttps://www.cic.fr/" }, + { "3B6500002063CBC280", "Debit Card (Bank)" }, { "3B6500002063CBC300", "CIC Credit Card (Bank)" }, { "3B6500002063CBC310", "Pass Restaurant Sodexo Pass France (Bank)\nhttps://moncompte.sodexopass.fr/" }, { "3B6500002063CBC380", "Apetiz restaurant card (French luncheon vouchers) (Bank)\nhttps://www.apetiz.com/faq/?thematic=achats-apetiz-quoi-quand-combien" }, @@ -681,7 +702,7 @@ const static atr_t AtrTable[] = { { "3B6A000030303030333044333544", "Building access card (eID)" }, { "3B6A000030303030333044454241", "HID Global DuoProx II Low Frequency 125 KHz (HealthCare)\nhttps://www.hidglobal.com/sites/default/files/resource_files/prox-duoprox-ii-card-ds-en.pdf" }, { "3B6A000031383030424130373935", "SYNNIX STD200 - Clinique SAINT PAUL - Fort de France (HealthCare)\nhttp://www.synnix.com/Downloads/STD200/STD200%20datasheet/STD200IC%20spec.pdf" }, - { "3B6A00004A434F50313056323331", "Dongle Smart Card (MxKey) (Other)\nhttp://www.mxkey.biz/" }, + { "3B6A00004A434F50313056323331", "Dongle Smart Card (MxKey) (Other)" }, { "3B6A00008031C0A1020301328116", "Lloyds TSB Visa Credit/Debit Card" }, { "3B6A00008065A2........72D6..", "IDClassic 3XX Cards (with MPCOS Applet)" }, { "3B6A00008065A20101013D72D643", "GemSafe Xpresso 16k" }, @@ -780,6 +801,7 @@ const static atr_t AtrTable[] = { { "3B6B00004348495031342056312E30", "Swiss PostFinance Card (Bank)\nhttps://www.postfinance.ch/en/priv/prod/card/pfcard.html" }, { "3B6B00004750003A060141200F9000", "SBI Debit Card (Bank)\nhttps://www.sbi.co.in/portal/web/personal-banking/state-bank-classic-debit-card" }, { "3B6B0000475000630A0040000F9000", "cash app visa prepaid debit (Bank)\nhttps://cash.app/" }, + { "3B6B00004830540A0405303E0F9000", "Belfius Beats Debit/Credit Mastercard | Bancontact (Bank)\nhttps://www.belfius.be/retail/nl/producten/betalen/kredietkaarten-prepaidkaarten/mastercard-new/Index.aspx" }, { "3B6B000053430015020250010F9000", "Visa (Bank)" }, { "3B6B000053430015080250010F9000", "ALELO-BENEFICIOS (Other)" }, { "3B6B00008031C06348107F83E09000", "ABL card (Bank)\nasdasd (Bank)" }, @@ -809,6 +831,7 @@ const static atr_t AtrTable[] = { { "3B6C0000806411650190730000008107", "Universal Electronic Card (UEC Russia) (eID)" }, { "3B6C00008066B1A30401110B83009000", "NAVY F.C.U. (JavaCard)" }, { "3B6C00008066B1A330401110B8300900", "Visa debit (Bank)" }, + { "3B6C000081000300203002220100140C", "CRDB TEMBO CARD (Bank)\nhttps://crdbbank.co.tz" }, { "3B6C0002366186384B8C13046203598A", "Nagravision, Swiss mode" }, { "3B6C00FF50564A434F50323156323331", "Al Etihad (Bank)" }, { "3B6C00FF8073C8211366010611590001", "Visa Crypto Business Electron by neyvabank.ru (Bank)\nhttps://neyvabank.ru/uploads/files/download/bankdirectvisacryptocardreader.pdf" }, @@ -870,6 +893,7 @@ const static atr_t AtrTable[] = { { "3B6D000080318065B0893501F183009000", "Bank of America BankAmericard Travel Visa Chip Card (Gemalto)\nhttps://www.bankofamerica.com/credit-cards/products/bankamericard-travel-rewards-credit-card.go\nCredito Trevigiano - Banca di Credito Cooperativo - Carta BCC\nVISA Signature issued by RBC Bank (Georgia), N.A.\nhttps://www.rbcbank.com/\nBanca Popolare di Novara - (Bancomat Maestro)" }, { "3B6D000080318065B0894001F283009000", "PSAM Card\nNordea Mastercard Card" }, { "3B6D00008067A1110101640855830E9000", "Italian Intesa SanPaolo Maestro" }, + { "3B6D0000860148444D7102070426696810", "Sinopec Gas Card (Other)\nhttps://www.sinopec.com" }, { "3B6D00FF003180718E6448D50200829000", "Blue for Business, American Express@Business" }, { "3B6D00FF0031C173C8400052A1D8009000", "Discover it Credit Card (Bank)\nhttps://www.discover.com/credit-cards/cash-back/it-card.html" }, { "3B6D00FF0031C173C8400052A262009000", "Platinum American Express (Bank)\nhttps://www.americanexpress.com/en-gb/credit-cards/platinum-card/" }, @@ -973,6 +997,7 @@ const static atr_t AtrTable[] = { { "3B6E000033304A3033868876703676332E30", "Agricultural Bank of China (Bank)" }, { "3B6E00004573744549442076657220312E30", "Estonian Identity Card (EstEID v1.1 'MULTOS' cold)" }, { "3B6E00004B41444E494B414876312E309000", "Nikah, Cerai, Rujuk (NCR) - The marriage information with identity of Husband and Wife registered at Jabatan Agama Islam Selangor, Malaysia (eID)\nhttp://ncr.jais.gov.my/" }, + { "3B6E0000506C6179657273506C7573312E31", "ACOS3 Microprocessor Card (Loyalty)\nhttps://www.acs.com.hk/en/products/470/acos3-microprocessor-card/" }, { "3B6E00005744361369869302221936281211", "bb token bank Banco do Brasil (Bank)" }, { "3B6E00005744361369869302321256282532", "Watchdata Brazil CSP v1.0 (Banco do Brasil)\nhttp://www.watchdata.com/en/bank/solutions.jsp" }, { "3B6E00005744361969869302211815500E2B", "Usb Token from watchdata from Brazil (PKI)\nhttp://www.watchdata.com/brazil/watchkey/index.htm" }, @@ -1025,6 +1050,7 @@ const static atr_t AtrTable[] = { { "3B6F00000031C173C8211064474D3533009000", "American Express Platinum Card Mexico (Bank)\nhttps://www.americanexpress.com/mx/tarjetas-de-credito/the-platinum-credit-card/" }, { "3B6F00000031C173C821106457493035009000", "Discover EMV Card (Bank)" }, { "3B6F00000031C173C821106457493036009000", "neat MasterCard (Bank)\nhttps://www.neatcommerce.com/" }, + { "3B6F00000031C173C821106457493037009000", "Payment VISA card (Bank)" }, { "3B6F00000031C173C821106457493131009000", "Banca Popolare Di Sondrio (IT) - Ateneo+ Card for University of Brescia (Bank)\nhttps://www.ateneopiu.it/home" }, { "3B6F00000031C173C8211064574B3037009000", "NatWest VISA Debit card (Bank)\nhttps://personal.natwest.com/personal/current-accounts/select_account.html" }, { "3B6F00000031C173C8211064574B3133009000", "Carta HYPE MasterCard (Italy) (Bank)\nhttps://www.hype.it/\nRACC Master (Bank)\nhttps://www.racc.cat/targeta-racc-master" }, @@ -1043,6 +1069,7 @@ const static atr_t AtrTable[] = { { "3B6F000000B854311007900000000000000000", "Revolut Premium Mastercard (Bank)\nhttps://www.revolut.com/revolut-premium\nMonzo Bank (UK) Debit Mastercard\nhttps://monzo.com/\nLansforsakringar (SE) Debit Mastercard\nhttps://www.lansforsakringar.se/\nING Direct MasterCard (Bank)\nhttps://www.ing.es/tarjetas-ing" }, { "3B6F00000231B813FF000000000000000F9000", "Coverflex | Flexible Benefits Platform (Other)\nhttps://www.coverflex.com/" }, { "3B6F00003101F1564011001900000000000000", "Postepay Evolution (Bank)\nhttps://postepay.poste.it/prodotti/postepay-evolution.html" }, + { "3B6F000057694C4C5700000000000020190328", "meza classic card (Bank)" }, { "3B6F000057694C4C5700000000000020200429", "AMEX CHINA Debit card, Java Card version 2.2, Global Platform version 2.1.1, Visa card manager (Bank)" }, { "3B6F0000626C75636172642031364B422F7634", "eID Blutronics Blucard 16K\nhttp://blucard.blutronics.com" }, { "3B6F00008031C0520083640219083283839000", "Bancomer Mexican Bank" }, @@ -1084,6 +1111,7 @@ const static atr_t AtrTable[] = { { "3B6F00008031E06B04520502FD555555555555", "C6 Bank Mastercard Global Account (Bank)\nhttps://www.c6bank.com.br/conta-global\nC6 Bank Mastercard Brazil Account (Bank)\nhttps://www.c6bank.com.br/nossos-produtos" }, { "3B6F00008031E06B04520502FE555555555555", "CITIBanamex 'Perfiles' debit card (Bank)\nhttps://www.banamex.com/es/personas/cuentas/cuenta-perfiles.html" }, { "3B6F00008031E06B04546B026D555555555555", "Mastercard Credit/Debit Card (Bank)" }, + { "3B6F00008031E06B04546B0282555555555555", "At Brazil is known as 'Elo Card'. Outside Brazil in known as 'Discover' (Bank)\nhttps://www.discover.com/" }, { "3B6F00008031E06B0505050280555555555555", "Banamex cuenta perfiles (Bank)\nhttp://banamex.com" }, { "3B6F00008031E06B0508050283555555555555", "Bank of Montreal debit card" }, { "3B6F00008031E06B0512050287555555555555", "American Express credit card" }, @@ -1091,6 +1119,7 @@ const static atr_t AtrTable[] = { { "3B6F00008031E06B071405028A555555555555", "SolutionsBanking Canada Interac debit card" }, { "3B6F00008031E06B08240502B5555555555555", "Revolut MasterCard (UK)" }, { "3B6F00008031E06B082A0502DE555555555555", "VISA Debit Card Issued by State Employees Credit Union of Maryland (Bank)\nhttps://www.secumd.org/personal/credit-cards/card-services.aspx" }, + { "3B6F00008031E06B082B0502DC555555555555", "Bradesco Bank Account Card (Brazil) (Bank)\nhttps://banco.bradesco/" }, { "3B6F00008031E06B082D0502B8555555555555", "pag seguro Brasil (Bank)" }, { "3B6F00008031E06B082E0502B9555555", "CAIXA ECONOMICA (Bank)\nhttps://www.caixa.gov.br/Paginas/home-caixa.aspx" }, { "3B6F00008031E06B082E0502B9555555555555", "CAIXA (Bank)" }, @@ -1106,6 +1135,7 @@ const static atr_t AtrTable[] = { { "3B6F0000805A08030300000002BB267C829000", "Twisto\nhttp://www.twisto.fr" }, { "3B6F0000805A08030300000002BF024A829200", "ALSEO, the Alsacian Express Regional Train card (Transport)\nhttp://www.ter.sncf.com/alsace/gares/preparer-son-voyage/carte-alseo/" }, { "3B6F0000805A08030300000002C883CB829200", "card for Bordeaux transport (Transport)" }, + { "3B6F0000805A0803030000007C56BC7E829000", "Unico Campania (Italy) transport card (Transport)" }, { "3B6F0000805A080303000000C00FAF04829200", "Bordeaux Urban Transportation Card (NFC) (Transport)" }, { "3B6F0000805A080314000200........829000", "Metro do Porto, public transport card of Oporto - Portugal (Transport)" }, { "3B6F0000805A080608200200........829000", "Lisboa Viva, public transport card of Lisbon (Portugal)" }, @@ -1169,6 +1199,8 @@ const static atr_t AtrTable[] = { { "3B6F0000805A0A070620042C031C112A829000", "Peronalized RavKav (Transport)\nhttps://ravkavonline.co.il/he/" }, { "3B6F0000805A0A070620042C03288444829000", "rav-kav (Transport)\nhttp://nohal.mot.gov.il/%d7%94%d7%92%d7%93%d7%a8%d7%95%d7%aa%20%d7%91%d7%a0%d7%95%d7%a9%d7%90%20%d7%9b%d7%a8%d7%98%d7%95%d7%a1%20%d7%97%d7%9b%d7%9d.aspx" }, { "3B6F0000805A0A070620042C0490EFCB829000", "Rav-Kav Israel (Transport)\nhttps://ravkavonline.co.il" }, + { "3B6F0000805A0A070620042C04940F18829000", "Israeli anonymous rail road Rav Kav 2022 model (Transport)\nhttps://en.wikipedia.org/wiki/Rav-Kav" }, + { "3B6F0000805A0A070620042C0494625E829000", "Israeli rail road rav card (Transport)\nhttps://en.wikipedia.org/wiki/Rav-Kav" }, { "3B6F0000805A0A070620042DC1660B73829000", "Rav-Kav: Israel's Travel Card (Transport)" }, { "3B6F0000805A0A070620042DC169517A829000", "Card for bus (Transport)" }, { "3B6F0000805A0A070620042DC2E8E270829000", "ravkav (Transport)" }, @@ -1179,6 +1211,7 @@ const static atr_t AtrTable[] = { { "3B6F0000805A2811421010122B260CD45A829000", "French transport card Navigo (Transport)\nhttps://www.iledefrance-mobilites.fr/je-gere-ma-carte" }, { "3B6F0000805A28114210122B03791BB9829000", "RATP Navigo Easy Paris France (Transport)\nhttps://www.transilien.com/fr/page-tarifs/navigo-easy" }, { "3B6F0000805A28114210122B037A89AA829000", "Ile-de-France Mobilites (Navigo Easy) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-easy" }, + { "3B6F0000805A28114210122B037AC8F7829000", "Navigo Easy (contact interface) (Transport)\nhttps://www.ratp.fr/en/titres-et-tarifs/pass-navigo-easy" }, { "3B6F0000805A28114210122B037AED59829000", "Navigo Easy (Paris) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-easy" }, { "3B6F0000805A28114210122B23A9E229829000", "Navigo(French transport) (Transport)\nhttp://www.navigo.fr/je-gere-ma-carte/" }, { "3B6F0000805A28114210122B23BD87EE829000", "Navigo pass Calypso standard (Transport)\nhttp://www.navigo.fr/" }, @@ -1192,6 +1225,7 @@ const static atr_t AtrTable[] = { { "3B6F0000805A28114210122B272653F8829000", "New Navigo card - Paris Sub transport (Transport)" }, { "3B6F0000805A28114210122B272851D4829000", "Navigo, Paris and Isle of France transport card (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs" }, { "3B6F0000805A28114210122B272A8FE7829000", "Navigo Decouverte card, a rechargeable card for travel in Paris, France. (Transport)\nhttps://parisbytrain.com/paris-train-metro-week-pass-navigo-decouverte/" }, + { "3B6F0000805A28114210122B2732202E829000", "Navigo card ('A' marking for annual contract), contact interface (Transport)" }, { "3B6F0000805A28114210122B27328308829000", "Navigo Easy (Paris) (Transport) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-easy" }, { "3B6F0000805A28114210122B27358F16829000", "French Navigo passcard to travel in Paris area using RATP & SNCF services (Transport)\nhttp://www.navigo.fr/" }, { "3B6F0000805A28114210122B27406D7A829000", "French Navigo Card for Transport (RATP, SNCF) (Transport)\nhttp://www.navigo.fr/" }, @@ -1225,11 +1259,14 @@ const static atr_t AtrTable[] = { { "3B6F0000805A28130210122B7503FB01829000", "origo (France) (Transport)\nhttps://www.breizhgo.bzh/se-deplacer-en-bretagne/KorriGo" }, { "3B6F0000805A28130210122B750C7E79829000", "Transportation card delivered by STAR (Transportation service from the city of Rennes, France) (Transport)\nhttps://www.star.fr/titres-et-tarifs/carte-korrigo/" }, { "3B6F0000805A28130210122B750DD382829000", "ZOU! for Region Sud (Transport)\nhttps://zou.maregionsud.fr/ma-carte-zou/" }, + { "3B6F0000805A28130210122B75118E47829000", "ZOU! for Region Sud (Transport)\nhttps://zou.maregionsud.fr/ma-carte-zou/" }, + { "3B6F0000805A28130210122B7514673E829000", "bus card (Transport)" }, { "3B6F0000805A28130210122B9292E642829000", "Transport card in cote d'or France (mobigo)" }, { "3B6F0000805A28130210122B9292E829829000", "French transport card of the city of Dijon and Cote d'or department. (Transport)\nhttps://www.viamobigo.fr/fr/acheter-mes-titres-de-transport-mobigo-en-cote-dor/176" }, { "3B6F0000805A28130210122B92D663FC829000", "Card 'Korrigo' region Bretagne, France, Bibus Brest Metropole public transport (Transport)\nhttps://fr.wikipedia.org/wiki/KorriGo" }, { "3B6F0000805A28130210122BC129DC7D829000", "KorriGo card, french britanny travel card (Transport)\nhttps://www.ter.sncf.com/bretagne/offres/carte-korrigo" }, { "3B6F0000805A28130210122BC3151351829000", "Korigo card transport for star company (France) (Transport)\nhttps://www.star.fr/" }, + { "3B6F0000805A28130210122BC315C9C8829000", "KorriGo is a multimodal ticketing card given in the Region Brittany Council (Other)\nhttps://www.korrigo.bzh/fr/une-carte-multiservice/71" }, { "3B6F0000805A29130910113[36]........829000", "MOBIB (reseau transport en commun Bruxelles, Belgique)\nhttp://www.uclouvain.be/sites/security/mobib.html\nCalypso application similar to French NAVIGO\nMOBIB (Transport)\nhttp://www.stib-mivb.be/mobib.html?l=en" }, { "3B6F0000805A2C060810100592E4FFF0829000", "Lisbon area transport card (Transport)\nhttps://www.portalviva.pt/" }, { "3B6F0000805A2C06081010059304D66B829000", "Lisboa VIVA - Lisbon public transport card (Transport)\nhttps://www.portalviva.pt/" }, @@ -1251,6 +1288,7 @@ const static atr_t AtrTable[] = { { "3B6F0000805A2C23C410100571209D05829000", "Gent schakelt slim. AustriaCard (Transport)" }, { "3B6F0000805A2C23C41010057120BA62829000", "Belgian MOBIB public transport card (Transport)\nhttps://mobib.be/en.html" }, { "3B6F0000805A2C23C410100571217A3A829000", "mobob (Transport)" }, + { "3B6F0000805A2C23C4101005712E0E2B829000", "De Lijn - Vlaamse Vervoermaatschappij Travel Pass | NMBS-SNCB (Transport)\nhttps://www.delijn.be/en/content/abonnementen/de-lijn-nmbs/" }, { "3B6F0000805A2C23C4101005C0224F89829000", "MoBIB card (Transport)\nhttps://mobib.be/en.html" }, { "3B6F0000805A2C23C4101005C024DB38829000", "Mobib Brussels transport card (Transport)\nhttps://mobib.be/en.html" }, { "3B6F0000805A2C23C4101005C0292CEE829000", "MoBIB card (Transport) (Transport)\nhttps://mobib.be/" }, @@ -1303,6 +1341,7 @@ const static atr_t AtrTable[] = { { "3B6F0000805A3C23C4141001C108A3C1829000", "MIVB/STIB MOBIB Card (Transport)\nhttps://mobib.be/" }, { "3B6F0000805A3C23C4141001C10AE139829000", "STIB/MIVB Mobib card (Transport)\nhttps://www.stib-mivb.be/article.html?_guid=d02c7fb6-3e9c-3810-248e-eec4ee5ebc8c&l=en" }, { "3B6F0000805A3D0706150101792CB636829000", "RavKav (Transport)" }, + { "3B6F0000805A3D23C4150101799AAA14829000", "Tec MOBIB Wallonia (Transport)" }, { "3B6F0000805A3D23C415010279376C64829000", "Brussel public transport NFC card (Transport)\nhttps://www.stib-mivb.be/mystib" }, { "3B6F0000805A3D23C41501027937D7AE829000", "MOBIB - Brussels (Transport)\nhttps://www.stib-mivb.be/article.html?_guid=d02c7fb6-3e9c-3810-248e-eec4ee5ebc8c&l=fr" }, { "3B6F0000805A3D23C41501027949789C829000", "MOBIB basic (Transport)\nhttp://www.stib-mivb.be/article.html?_guid=30af0085-2483-3410-5394-a71daf08acd1&l=en#contentBodyList1" }, @@ -1379,8 +1418,10 @@ const static atr_t AtrTable[] = { { "3B7818000100000000C31E6919", "Storage for passwords (Bank)" }, { "3B781800FF0073C84000009000", "NAB Visa Debit - Contact I/F (Bank)" }, { "3B789400008684044930310604", "bank of china Debit Card (Bank)" }, + { "3B789500005744290360869303", "Driving Licence (Transport)" }, { "3B789600000073C84000009000", "SAM card for acquirer module by lanit.ru (Bank)" }, { "3B789600005343066001079000", "Bank of America Travel Rewards Credit Card (Bank)\nhttps://www.bankofamerica.com/credit-cards/products/travel-rewards-credit-card/" }, + { "3B789600005343066101079000", "Bank of America Cash Rewards World Mastercard (Bank)" }, { "3B789600005343066201079000", "ATM Card (Bank)" }, { "3B789600008100035001079000", "RMA BMCE BANK CARD (Bank)" }, { "3B791100008054434F4C44829000", "amazon.de / VISA / LBB Debit Card (Bank)" }, @@ -1400,6 +1441,7 @@ const static atr_t AtrTable[] = { { "3B7995000054454C454D10211010", "Israeli Identity Card (eID)\nhttp://smartid.gov.il/English/Pages/default.aspx" }, { "3B799600002001010601000100E9", "Casino (Other)" }, { "3B799600005448204E494420313.", "Thai National ID Card (eID)" }, + { "3B799600FF5448204E4944203135", "Thailand Citizen Card(JC3) (eID)" }, { "3B799800005001010401000101A9", "Gemalto PayFlex used in Aristocrat System 7000 Casino Management System (South Africa only)" }, { "3B79980000EB03010000700101A9", "Casino Rio Patras, Greece" }, { "3B7A..00008065A2........72D6..", "IDClassic 3XX Cards (with MPCOS Applet)" }, @@ -1507,6 +1549,7 @@ const static atr_t AtrTable[] = { { "3B7E9400008025A00000002856801012000114", "ProID+ Q (PKI)\nhttp://proid.cz" }, { "3B7E9400008025A00000002856801012000116", "CryptoPlus CS xg" }, { "3B7E9400008025A00000002856801012000119", "Ceska sporitelna personal certificate card" }, + { "3B7E9400008025A00000002856801012810114", "CryptoPlus by Monet+ (eID)\nhttps://www.cryptoplus.cz/" }, { "3B7E9400008025A00000002856801012810117", "Ceska Sporitelna SERVIS24 certificate card\nhttp://smallhacks.wordpress.com/2012/05/04/exploring-servis24-certificate-card-from-the-ceska-sporitelna-bank/" }, { "3B7E9400008025A00000002856801021000114", "CryptoPlus ProID, students ISIC card at University of Zilina, Slovakia\nTOP GX4 72k contact chip using JavaCard v2.2.1. and GlobalPlatform 2.1.1" }, { "3B7E9400008025A00000002856801024000111", "'OpenCard' - card issued by Prague local authority\ndual card: chip used for electronic certificates" }, @@ -1530,8 +1573,10 @@ const static atr_t AtrTable[] = { { "3B7F1100008031C0523A65640696186283839000", "Visa Electron Triodos Bank Card (Bank)" }, { "3B7F1100008031C0523BC7640696186283839000", "Triodos Bank Visa Classic (Bank)" }, { "3B7F12000044564E205445434820526576353376", "Chinese cable TV JETCAS card (DVN)" }, + { "3B7F12000044564E205445434820526576353394", "Hangzhou HDTV V4.0 Subscription Card (Pay TV)\nhttps://www.wasu.com/" }, { "3B7F1300008031C052020F6402B3027083839000", "Banco Bradesco ELO (Brazil) (Bank)" }, { "3B7F1300008031C0520271640562347083839000", "Mastercard Debit Card issued by Caixa d'Enginyers\nhttp://www.caixa-enginyers.com" }, + { "3B7F1300008031C05202F5640569937083839000", "Bradesco Bank Account Card (Brazil) (Bank)\nhttps://banco.bradesco/" }, { "3B7F1300008031C052056E640253043683839000", "Mastercard from Banc Sabadell in Spain" }, { "3B7F1300008031C05206E8640566993683839000", "HSBC Debit VISA CARD MX (Bank)" }, { "3B7F1300008031C052077D640566993683839000", "VISA CEPSA (Porque tu vuelves) from Spain\nhttp://www.porquetuvuelves.com/\nVisa Credit Card issued by Citibank\nhttp://www.citibank.es" }, @@ -1630,6 +1675,7 @@ const static atr_t AtrTable[] = { { "3B7F96000000B854311007900000000000000000", "Mastercard (Bank)" }, { "3B7F96000000B854311107900000000000000000", "STPay-Gold (JavaCard)\nhttp://www.st.com/en/secure-mcus/stpay-gold.html" }, { "3B7F9600003100DE525001001500000000000000", "VALES (Bank)" }, + { "3B7F9600003101F1564011001900000000000000", "ST Topaz (JavaCard)" }, { "3B7F9600008031805843657274756D3031829000", "Certum Electronic Seal (PKI)" }, { "3B7F9600008031806555850300EF124140829000", "Civil ID (eID)" }, { "3B7F96000080318065B0842327E5120FFE829000", "Gemalto IDPrime MD 3810 dual interface smartcard ISO 7816, ISO 14443 and NFC (PKI)\nhttp://www.smartcardfocus.com/shop/ilp/id~672/gemalto-idprime-md-3810-dual-interface-smartcard/p/index.shtml" }, @@ -1637,6 +1683,8 @@ const static atr_t AtrTable[] = { { "3B7F96000080318065B084413DF6120FFE829000", "Gemalto IDPrime MD" }, { "3B7F96000080318065B084413DF612FFFE829000", "THALES IDCore 30 B (JavaCard)\nhttps://cpl.thalesgroup.com/access-management/idcore-java-card" }, { "3B7F96000080318065B084534C0F12037B829000", "Serbian International Student Identity Card (ISIC) (eID)\nhttps://www.gpa.rs/kartice" }, + { "3B7F96000080318065B084565110120FFE829000", "Swiss Government PKI (PKI)" }, + { "3B7F96000080318065B0845C59FB12FFFE829000", "Serbian Student ID card - EMV (Other)" }, { "3B7F96000080318065B0846160FB120FFD829000", "IDPrime 930/3930 FIPS Level 2 or Level 3 (T=0 CT=96) (BAI1, BAI2, BAI3, BAI5, BAI7) (PKI)" }, { "3B7F96000080318065B0850201F3120FFF829000", "Swedish National Identity Card (eID)\nhttps://polisen.se/tjanster-tillstand/pass-och-nationellt-id-kort/" }, { "3B7F96000080318065B0850201F312FFFE829000", "Gemalto TOP IM GX4 (PKI)\nhttp://www.cryptotech.com.pl/compl/data/gemalto/pdf/TOP_GX4_Nov08.pdf" }, @@ -1669,6 +1717,7 @@ const static atr_t AtrTable[] = { { "3B800181", "NXP Semiconductors VNG OpenPGP Card (Other)\nhttps://www.vng.com.vn/" }, { "3B801FC78031E073FE211163407163830790009A", "Intertelecom UA RUIM card (Telecommunication)\nhttps://www.intertelecom.ua/" }, { "3B80800101", "ISO 14443 Type B without historical bytes\nElectronic Passport\nSpanish passport (2012)\nCanadian Passport\nVenez_Prox\nCarta nazionale dei servizi\nhttps://www.agid.gov.it/it/piattaforme/carta-nazionale-servizi" }, + { "3B8081113C2C", "Giesecke+Devrient StarSign Keyfob (JavaCard)\nhttps://www.gi-de.com/en/digital-security/identity-technology/enterprise-security/hardware-based-authentication/starsign-key-fob" }, { "3B810020", "Old MobilCOM GSM (Telecom D1) (Telecommunication)" }, { "3B81010080", "Rompetrol Romania Fill&Go Fuel Card (Other)" }, { "3B811F00CC52", "eToken R2 2242" }, @@ -1681,11 +1730,13 @@ const static atr_t AtrTable[] = { { "3B8280010244..", "RFID - NFC Forum tag type 1 (Topaz)" }, { "3B828001030202", "Visa Credit Card, issued by TargoBank" }, { "3B828001424A0B", "Beijing Transport(YKT) (Transport)" }, + { "3B828001474400", "China Merchant Bank 'Angry Birds' Themed Debit Card (Bank)\nhttp://market.cmbchina.com/Personal/angrybird/" }, { "3B828001477236", "emoney (Transport)" }, { "3B8280014792D6", "Beijing Bus (Transport)" }, { "3B828001485813", "Yikatong BMAC -Beijing Municipal Administration & Communication contactless card (Transport)\nhttps://en.wikipedia.org/wiki/Yikatong" }, { "3B82800186880D", "Beijing Municipal Administration Traffic Card (with cpu) (Transport)\nhttp://www.bmac.com.cn/" }, { "3B828001C902C8", "Bartl V5.3DI (PKI)" }, + { "3B828001CB01C9", "D-Trust Card 5.1/5.4 (contactless)" }, { "3B8281317643C002C5", "CardOS/M2 V2.01(SLE44CxxS)" }, { "3B8281317643C103C5", "i.ti (ticket card for Collogne/Bonn)\nCardOS M2 Combi V2.02 (SLE44R42S)" }, { "3B8300121096", "GSM-SIM T-Mobil D1 (900MHz)" }, @@ -1717,6 +1768,8 @@ const static atr_t AtrTable[] = { { "3B8540FE6801010204", "Axalto CryptoFlex 8K" }, { "3B8540FF6301010301", "Axalto Cryptoflex 16K" }, { "3B85800101A213109135", "Contact (7816-10) 2WBP (HealthCare)" }, + { "3B8580012063C8B880B4", "Visa Classic (Bank)" }, + { "3B8580012063CB32209E", "VISA Prepaid card for Paris 2024 Olympics (Bank)" }, { "3B8580012063CBA0002C", "Visa card from Banque populaire du nord/Casden" }, { "3B8580012063CBA1002D", "AIB Visa Debit Card, manufactured by Oberthur (NFC interface)" }, { "3B8580012063CBA180AD", "bpaid: bpost prepaid Mastercard (contactless)\nhttp://www.bpost.be/site/fr/residential/finance/bpaid/index.html" }, @@ -1739,6 +1792,9 @@ const static atr_t AtrTable[] = { { "3B8580015A43372E3531", "BasicCard ZC7.5 32K (Other)\nhttp://www.basiccard.com" }, { "3B8580015A4356445659", "Card Issued by 'Verkeiersverbond' Luxembourg 'M Kaart' Card containing Tickets for all public transportation in the country of Luxembourg (Transport)\nhttps://mshop.lu/\nhttp://http://www.mobiliteit.lu/" }, { "3B858001807384214012", "Dutch Biometric Passport" }, + { "3B85800180738421C092", "Moroccan Identity Card (eID)\nhttps://www.cnie.ma/" }, + { "3B85800180738421E0B2", "Dutch ID-card (eID)" }, + { "3B858001807394214002", "European Union Passport (passport)" }, { "3B8580018073C821100E", "NXP P71 (SmartMX3 P71D320 JCOP4) (JavaCard)" }, { "3B858001A000000000A4", "Italian Passport (passport)" }, { "3B85C0FA216380630101051B", "Public Distribution System\nhttp://cg.nic.in/pdsonline/corepds/" }, @@ -1760,6 +1816,7 @@ const static atr_t AtrTable[] = { { "3B8680014B4F4E41141109", "Mastercard paypass enabled credit card" }, { "3B8680015741524930310B", "Gusto Karta (Bank)\nhttps://www.gustokarta.cz" }, { "3B86800157575061737336", "WWPass Passkey (eID)\nhttps://www.wwpass.com/passkey" }, + { "3B86800175547275737426", "uTrust FIDO2 Security Key (Other)\nhttps://www.identiv.com/products/logical-access-control/utrust-fido2-security-keys/nfc" }, { "3B868001801434373000A0", "Malta eID Identity Card (eID)\nhttps://www.identitymalta.com/" }, { "3B8680018031C15211182C", "IDEMIA Cosmo V8.0 with a PIV applet (contactless) (PKI)" }, { "3B8680018031C152411A7E", "IDEMIA Cosmo V8.1 with a PIV applet (contactless) (PKI)" }, @@ -1778,6 +1835,7 @@ const static atr_t AtrTable[] = { { "3B8780017743325300090258", "CiPurse S profile (Other)\nhttps://www.infineon.com/cms/en/product/security-smart-card-solutions/cipurse-products/" }, { "3B878001774332530100015377433253010001", "Cipurse ISO 14443-4 Card (Other)" }, { "3B8780017743325301000250", "CIPURSE (Transport)\nhttps://www.osptalliance.org/cipurse-specifications/" }, + { "3B878001774332540009015C", "Infineon CIPURSE SLS 32TLC100M4 (Transport)" }, { "3B8780017743325400090558", "CIPURSE (Transport)\nhttps://www.osptalliance.org/cipurse-specifications/" }, { "3B8780017743325401010054", "CiPurse T profile (Other)\nhttps://www.infineon.com/cms/en/product/security-smart-card-solutions/cipurse-products/" }, { "3B8780017743495002000128", "CIPURSE (transport)\nhttp://www.osptalliance.org/" }, @@ -1803,6 +1861,7 @@ const static atr_t AtrTable[] = { { "3B888001000000000071710009", "OPUS Public Transport card (Montreal, Quebec, Canada) - Oberthur based\nhttp://carteopus.info/\nACTV (Italy) transport card (RFID)" }, { "3B8880010000000000718100F9", "Navigo Decouverte (RFID interface) (Transport)" }, { "3B8880010000000000817000F8", "Qantas Frequent Flyer Loyalty Card - Contactless (Loyalty)" }, + { "3B8880010000000000817100F9", "Passe Navigo Decouverte (Transport Ile de France) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-decouverte" }, { "3B8880010000000000817700FF", "KBC Maestro card (Bank)" }, { "3B88800100000000008187000F", "ING Bank Card (Bank)\nhttps://www.ing.nl/particulier/betalen/passen/betaalpas/contactloos-betalen-met-uw-betaalpas/index.html" }, { "3B888001000000000081911009", "Trenitalia (Italy) fidelity card 'CartaFreccia' (RFID)" }, @@ -1822,7 +1881,7 @@ const static atr_t AtrTable[] = { { "3B88800100000000B37171.0.A", "Public transportation card in Riga, Latvia, called 'e-Talons'\nhttp://etalons.rigassatiksme.lv/en/payments/activating_the_e-ticket/\nBelgian MOBIB (transport)" }, { "3B88800100000000F781C100BE", "Italian Health Insurance card (eID)\nhttps://en.wikipedia.org/wiki/Italian_health_insurance_card" }, { "3B88800100000011778183006D", "Taglio PIVKey C980 - RFID I/F (PKI)" }, - { "3B88800100000011F7818100EF", "MOBIB card (Transport)\nhttps://mobib.be/en.html" }, + { "3B88800100000011F7818100EF", "MOBIB card (Transport)\nhttps://mobib.be/en.html\nPasse Navigo Easy (Transport Ile de France) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-easy" }, { "3B8880010000010701729000EC", "Belgian passport (2008-2009)" }, { "3B888001000005E0B381A1007F", "Japanese JPKI card (aka JINC card) (eID)\nhttps://github.com/jpki/myna" }, { "3B888001000014E0B38191005E", "'JUKICARD', the Basic Resident Registration Card in Japan (eID)" }, @@ -1862,10 +1921,12 @@ const static atr_t AtrTable[] = { { "3B88800152744D430081C10061", "Rutoken 2151 smart card (eID)\nhttps://www.rutoken.ru/products/catalogue/id_50.html" }, { "3B88800152745343778183206A", "Aktiv Rutoken ECP 3.0 NFC (PKI)\nhttps://www.rutoken.ru/products/all/rutoken-ecp-nfc/" }, { "3B888001534B55500100000015", "Silesian public services card (Transport)\nhttp://www.kartaskup.pl" }, + { "3B888001534C4A01305023100E", "bunq Credit MasterCard (contactless interface) (Bank)" }, { "3B888001536D61727441707011", "national Lithuania ID card (eID)\nhttps://www.dokumentai.lt/viewpage.php?page_id=77" }, { "3B8880017661756C746974315F", "ID06 2.0 (eID)" }, { "3B8880017661756C746974325C", "Vaultit Identity Card (eID)" }, { "3B8880018066B007010107....", "Gemalto Santander Optelio TUI R7 with WG10 using Contactless interface" }, + { "3B8880018073C8211052B81DF4", "Arculus AuthentiKey (via NFC) (Other)" }, { "3B888001990200D10304220167", "Debit card (Bank)" }, { "3B888001C91207520200811014", "electronic Tickes from the german Transport Association VGN (Verkehrsgemeinschaft Niederrhein)" }, { "3B888001D10386050080800058", "Resident Identity Card of People Republic of China (Second Generation with RF Feature) (eID)\nhttp://www.gov.cn/banshi/2005-08/02/content_19457.htm" }, @@ -1903,6 +1964,7 @@ const static atr_t AtrTable[] = { { "3B8980013131313054434F535052", "Seven-Eleven Value Card / Smart Purse - Thailand (Contactless) (Other)\nhttp://www.7eleven.co.th/about7card.php" }, { "3B8980013233324353435333363E", "CSCS Smartcard (passport)\nhttp://getgosmart.io" }, { "3B89800141434F534A763130311A", "ACS ACOSJ (Combi) (JavaCard)\nhttp://www.acs.com.hk/en/products/405/acosj-java-card-combi/" }, + { "3B89800141434F534A763230351D", "ACOSJ dual interface Java card 95K (JavaCard)" }, { "3B8980014341524441474146435E", "Student ID of University Duisburg-Essen (Other)\nhttps://www.uni-due.de/studierendensekretariat/studierendenausweis.shtml" }, { "3B898001434C616972653220363C", "Fidor Smartcard Mastercard/Maestro (Bank)\nhttps://www.fidor.eu" }, { "3B898001434C616972653320363D", "MasterCard with PayPass issued by Commerbank AG (Germany) (Bank)\nhttps://www.commerzbank.de/portal/de/privatkunden/produkte/bezahlen/kreditkarten/mastercard-classic/mastercardclassic.html" }, @@ -1930,6 +1992,7 @@ const static atr_t AtrTable[] = { { "3B89800180574A4D5676352E30D3", "PayPal Access Business MasterCard (contactless) (Bank)\nCoinbase Card, Visa Debit (Paysafe / TCT FCU) (Bank)\nhttps://coinbase.com/card" }, { "3B8980018064160401868290006B", "LUKB (Bank)\nhttps://www.lukb.ch" }, { "3B8980018064160402828290006C", "Maestro card (from Mastercard) used by BCGE (switzerland) bank (Bank)" }, + { "3B89800180642004018382900058", "Raiffeisen Debit Card / Master (Bank)" }, { "3B89800180670412B0030501024C", "Austrian Passport" }, { "3B8A0091010016000116010096", "GSM-SIM T-Mobil D1 (900MHz)" }, { "3B8A0091010016000120010096", "GSM-SIM T-D1 prepaid (Xtra)" }, @@ -1946,10 +2009,12 @@ const static atr_t AtrTable[] = { { "3B8A80010031C173C8400000900090", "NXP PN65o's Internal Secure Element in card emulation mode. (Other)" }, { "3B8A80010064055C02033180900016", "T-System Contactless Netkey Card" }, { "3B8A8001006405760203318090003C", "T-System Contactless TCOS Min" }, + { "3B8A8001015049564B455937301603", "Taglio PIVkey C70-DP-DF1 (Contactless interface) (JavaCard)\nhttps://store.taglio.com/products/c70-dp-df1-dual-pki-smart-card-with-prox-and-desfire-ev1" }, { "3B8A80013037393134315F3030316F", "Electronic Citizen Identity Card (e-ID Card) (eID)\nhttps://www.e-ktp.com/" }, { "3B8A800143323330302D4649505368", "Crescendo 2300 FIPS (contactless interface) (PKI)" }, { "3B8A80014A3341303831563234316B", "NXP JCOP CJ3A081 (NFC) (JavaCard)\nNXP JCOP 80K - J3A081V241" }, { "3B8A80014A33523138302D32353506", "Cardlogix J3R180 NXP JCOP 4 Java Card 3.0.5 Classic Dual Interface (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, + { "3B8A80014A33523331302D3335350C", "NXP JCOP 4 (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, { "3B8A80014A434F503331563233327A", "Snapper New Zealand (JCOP)" }, { "3B8A80014A434F503431563232317F", "JCOP41 Cards (not supported, but recognized by Classic Client)\nNXP JCOP 41 v2.2.1 72k RFID I/F" }, { "3B8A80014D540005002086640001D4", "Beijing Municipal Administration & Communication Card (Transport)\nhttps://www.bmac.com.cn/" }, @@ -1957,6 +2022,7 @@ const static atr_t AtrTable[] = { { "3B8A800150564A434F503453494471", "J3R180 via ifdnfc (JavaCard)" }, { "3B8A80015345204445534669726557", "NXP-Mifare DESFire EV1 2k (used as a company ID card) (eID)" }, { "3B8A8001534F535345020325010374", "Super SIM X-SIM 16-in-1 (Telecommunication)\nhttps://multi-com.eu/,details,id_pr,14881,key,super-sim-16-in-1-card,smenu,gsm.html" }, + { "3B8A8001543243313352464E9000E6", "Anordsem NFC Forum Type 4 Writable RFID NFC Card (Other)\nhttps://www.aliexpress.us/item/2251832653152623.html" }, { "3B8A8001546963546F6B20332E3008", "Cryptas TicTok v3 (PKI)\nhttps://www.cryptas.com/en/products/tictok-card" }, { "3B8A80018031B8738401E082900006", "German ID Card - Personalausweis" }, { "3B8A80018031F873F741E082900075", "ePerso - German ID card" }, @@ -1991,16 +2057,22 @@ const static atr_t AtrTable[] = { { "3B8B80010031C1640860324200900016", "Westpac Handybank EFTPOS/ATM Card - Contactless (Bank)" }, { "3B8B80010031C16408923354009000F3", "Italian healthcare card (TS) National Service Card (CNS) (HealthCare)\nhttp://www.salute.gov.it/portale/lea/dettaglioContenutiLea.jsp?lingua=italiano&id=4693&area=Lea&menu=leaEssn" }, { "3B8B80010031C16408986200009000FC", "ERSTE Bank creditcard (mastercard) (Bank)" }, + { "3B8B80010031C16408986229009000D5", "CashApp (Tap) (Bank)\nhttps://cash.app/help" }, { "3B8B80010031C1640911213000900007", "SmartMX (Other)" }, { "3B8B80010031C1640924331E0090000E", "Cumulus Mastercard (Bank)\nhttps://www.migros.ch/cumulus/mastercard" }, + { "3B8B80010031C164092914540090006E", "Italian State National Card (eID)\nhttps://www.inps.it/it/it/assistenza/cns---carta-nazionale-dei-servizi.html" }, { "3B8B80010031C1640937721300900051", "French ID Card 2021 (contactless interface) (eID)\nhttps://ants.gouv.fr/Les-titres/Carte-nationale-d-identite/La-puce-de-la-nouvelle-carte-nationale-d-identite" }, + { "3B8B80010031C1640958213600900048", "American Express Corporate Card (Bank)\nhttps://www.americanexpress.com/es-es/negocios/corporativa/tarjetas/corporate-card/" }, { "3B8B80010031C1640964413600900014", "Monzo (Bank)\nhttps://monzo.com/" }, + { "3B8B80010031C164097861310090002F", "BBVA credit card (Bank)\nhttps://www.bbva.es/personas/productos/tarjetas/credito.html" }, { "3B8B800100640411010131800090005A", "German Passport (issued Nov 2006)\nUnited Kingdom e-Passport\nLuxembourg passport (2007)" }, { "3B8B80010B7880820244492030324D1B", "Mastercard Debit issued by Raiffeisen bank in Czech Republic" }, { "3B8B80012085008B030FE09AA0E04052", "Shanghai Public Transportation Card (Transport)\nhttp://www.sptcc.com/" }, + { "3B8B80012090000000000008EE277F04", "Hungarian eID (2024) (eID)\nhttps://eszemelyi.hu/en/" }, { "3B8B8001209000000000001614CDAADF", "JCOP 41 IBM card for Guizhou Normal University (JavaCard)" }, { "3B8B800120900000000000C3A4CC0918", "ID card (Other)" }, { "3B8B80012A26A7A10C804100000709C3", "T-Mobilitat (Transport)\nhttps://t-mobilitat.cat/" }, + { "3B8B80012A26A7A10C804100019AB1E7", "T-Mobilitat (Transport)\nhttps://t-mobilitat.atm.cat/" }, { "3B8B8001474841204A32343120503158", "Republic of Ghana eID (eID)\nhttps://nia.gov.gh/" }, { "3B8B80014E58502D4E46432032000038", "TouchandTravel Touchpoint NFC-Card.\nTrain-Station in Berlin. Use a NFC-compliant phone to check in for a ticket." }, { "3B8B800150333038473050335F31302B", "Indonesian ektp (eID)" }, @@ -2035,6 +2107,7 @@ const static atr_t AtrTable[] = { { "3B8C80015001C62E3900000000808171FD", "edenred (Loyalty)" }, { "3B8C80015003A129CF0000000011818108", "rav-kav, Israel transport card (Transport)\nhttp://www.egged.co.il/Article-786-Rav-Kav-Card.aspx" }, { "3B8C80015004463EC3E1F35E117781A1E8", "Spanish ID (eID)" }, + { "3B8C800150046F2A86000000000071719A", "RavKav israel (PKI)\nhttps://ravkavonline.co.il/en/" }, { "3B8C8001500509CE35000000003371A149", "Libertan transport card from Nantes (France), based on Calypso (Transport)\nhttps://www.tan.fr/fr/abonnements-libertan-1" }, { "3B8C80015005A966960000000080817171", "Hello bank! VISA CLASSIC Card (Bank)\nhttp://www.hellobank.fr/" }, { "3B8C80015006DCA8590000000080817106", "VISA Hello bank! (NFC) (Bank)\nhttps://www.hellobank.fr/" }, @@ -2108,6 +2181,7 @@ const static atr_t AtrTable[] = { { "3B8C800150C14164E3000000000071715A", "Navigo Annuel (France) (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/detail/forfait-navigo-annuel" }, { "3B8C800150C14CFD23000000000071710E", "Navigo (Transport)\nhttps://www.iledefrance-mobilites.fr/" }, { "3B8C800150C16A347200000000007171B0", "Navigo pass (RATP) (Transport)\nhttp://www.navigo.fr/" }, + { "3B8C800150C177722200000000007171BB", "Pass Navigo Easy Paris (Transport)" }, { "3B8C800150C17B55BA0000000000717108", "Navigo Easy (Paris public transportation) (Transport)\nhttps://parisbytrain.com/navigo-easy/" }, { "3B8C800150C17DA8CA0000000000717183", "Navigo Easy (France) transport card (Transport)\nhttps://www.ratp.fr/titres-et-tarifs/passe-navigo-easy" }, { "3B8C800150C2B936860000000000717196", "Passe Navigo (Transport)\nhttps://www.iledefrance-mobilites.fr/titres-et-tarifs/supports/passe-navigo-decouverte" }, @@ -2161,6 +2235,7 @@ const static atr_t AtrTable[] = { { "3B8D80014946582D6A63333031677032325A", "Degussa Bank Corporate MasterCard (Bank)\nhttps://firmenkarten.degussa-bank.de/" }, { "3B8D8001534C4A35324778787979797A5248", "cipurse (Other)" }, { "3B8D800154415854434F534E201703073304", "Contactless Java Card v.2.2, GP version 2.2.1 with a NDEF storage applet installed. (JavaCard)" }, + { "3B8D800161757468656E746F6E23312EFFB9", "authenton#1 NFC via ACR122U. Features similar to a yubikey, the USB SmartCard interface is not recognized. Here, it's the ATR when i use the NFC interface with my ACR122U. (Other)\nhttp://authenton.com/" }, { "3B8D8001736674652D63643038302D6E663F", "G&D SmartCafe Expert 3.2 80K Dual" }, { "3B8D800180318065B0070202898300900075", "JCOP30 contactless interface" }, { "3B8D80018073C021C057597562694B6579F9", "Yubikey 5 NFC (via NFC) (Other)\nhttps://www.yubico.com/product/yubikey-5-nfc/#yubikey-5-nfc" }, @@ -2180,7 +2255,10 @@ const static atr_t AtrTable[] = { { "3B8E8001137880800246494F4D4B5F3030314E", "MasterCard/PayPass Card issued by Czech FIO Banka a.s. (contactless chip)\nnote the ASCII string 'FIOK_001N' embedded in ATR" }, { "3B8E8001410543000000000000000000900098", "ACOS5-EVO PKI Smart Card (Combi) (PKI)\nhttps://www.acs.com.hk/en/products/471/acos5-evo-pki-smart-card/" }, { "3B8E800152464944494F74204A434F5038305A", "RFIDIOt G&D SmartCafe 80K" }, + { "3B8E800153434520382E302D433356300D0A60", "Latvian passport (2024) (passport)" }, { "3B8E800153434536302D43443038312D6E464A", "SmartCafe Expert 6.0 80K Dual (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~684/smartcafe-expert-6-0-80k-dual-/p/index.shtml" }, + { "3B8E8001544A4F50323144303431563232311B", "China Construction Bank Lutong Card Type A (Credit) with ETC (Bank)\nhttp://ccb.com/sd/cn/fhgg/20200122_1579670876.html" }, + { "3B8E80015644562D4B412049443337204A341B", "eTicket (Transport)\nhttps://www.eticket-deutschland.de/" }, { "3B8E80018031806549544E5850120FFF8290F0", "Italian Electronic Contactless Identity Card v. 3.0 (CIE 3.0) - ICAO 9303 Compliant (eID)\nhttps://www.cartaidentita.interno.gov.it/caratteristiche-del-documento/" }, { "3B8E80018031806549544E5850120FFFFFFFE2", "Italian identity card, 2nd version (eID)\nhttps://www.cartaidentita.interno.gov.it/" }, { "3B8E800180318066409089120802830190000B", "ISO 14443B Type T = CL Infineon Card" }, @@ -2192,6 +2270,7 @@ const static atr_t AtrTable[] = { { "3B8E800180318066B1840C016E01830090001C", "UK Lloyds Bank Gold Visa Debit (Contact & Contactless)\nbPay by barclaycard - contactless pre-paid Visa\nBPP Digital pre-paid VISA card (Bank)\nhttps://bpp.com.br/\nMastercard credit card for Standard Chartered Bank, Pakistan also Mastercard debit card for JS Bank, Pakistan (Bank)" }, { "3B8E800180318066B1840C016E01830090001C021450", "all transport travel pass (Transport)\nhttp://www.metro.spb.ru/cnblt41.html" }, { "3B8E800180318066B1C5240100ED83009000F7", "Mastercard (Bank)" }, + { "3B8E800180318066B1EB010100228300900033", "ING debit card NL (Bank)\nhttps://ing.nl" }, { "3B8E80018031815448534D3173802140810718", "Smartcard-HSM (Contactless Interface) (PKI)\nhttp://www.cardcontact.de/products/sc-hsm.html" }, { "3B8E80018031815448534D3173802140FFFF9E", "SmartCard-HSM RFID (PKI)\nhttps://www.smartcard-hsm.com/" }, { "3B8E800180919131C06477E30300838290001C", "Belgian Passport (2005)\nThai Passport 2005" }, @@ -2214,14 +2293,19 @@ const static atr_t AtrTable[] = { { "3B8F80010031C173C8211064414D333007900088", "ING-VISA-Card (Bank)\nhttps://www.ing.de/girokonto/karten-bargeld/" }, { "3B8F80010031C173C8211064414D333107900089", "NAB VISA Debit (Bank)\nhttps://www.nab.com.au/" }, { "3B8F80010031C173C8211064414D3341079000F9", "Ukrainian International resere bank (ex Sberbak RF) debit card (Bank)\nhttps://www.sbrf.com.ua/" }, + { "3B8F80010031C173C8211064414D3348079000F0", "Consorsbank VISA debit card (Bank)" }, { "3B8F80010031C173C8211064474D34350090008B", "S-Etukortti Visa (Bank)\nhttps://www.s-pankki.fi/fi/s-etukortti-visa" }, { "3B8F80010031C173C8211064474D343700900089", "SpareBank Visa Card, Norway (Bank)" }, + { "3B8F80010031C173C82110644D30424E079000F6", "Debit Card (Deutsche Bank Card Plus) (Bank)\nhttps://www.deutsche-bank.de/pk/konto-und-karte/karten-im-ueberblick/deutsche-bank-card-plus.html" }, + { "3B8F80010031C173C82110645631434E079000ED", "Tarjeta Despues BBVA Espana (contact interface) (Bank)\nhttps://www.bbva.es/personas/productos/tarjetas/tarjeta-despues.html" }, { "3B8F80010031C173C8211064574B31330090009E", "TIM Pay - HYPE (Mastercard debit card) (Bank)\nhttps://www.tim.it/fisso-e-mobile/mobile/servizi/tim-pay" }, { "3B8F80010031C173C8211064574B313400900099", "G&D Sm@rtCafe Card embedded in a wristband (Bank)\nhttps://www.gi-de.com/en/au/mobile-security/industries/financial-institutions/wearables/" }, + { "3B8F8001005100640908067873D320C0C0900054", "French residency permit (contactless interface) (eID)\nhttps://www.service-public.fr/particuliers/vosdroits/N110" }, { "3B8F800100664653051000FF71DF000000000039", "JavaCOS A40 dual interface Java card - 64K (JavaCard)" }, { "3B8F800100B85421000090000000000000000053", "netbank Germany, Mastercard (Bank)\nhttps://netbank.de" }, { "3B8F800100B85431000090000000000000000043", "Monzo MasterCard Contactless (Bank)\nhttps://monzo.com/" }, { "3B8F800100B854310000900000000000FFFFFFBC", "VISA Debit issued by WIREX. card made by CONTIS / TAG SYSTEMS (Bank)\nhttps://wirexapp.com/" }, + { "3B8F800101654E434F532D4D43412D434C30373C", "eNCOS + MCA, MchipAdvance 123 bundled with eNCOS (Bank)" }, { "3B8F80013101F1564011001900000000000000D1", "Revolut Mastercard (Bank)" }, { "3B8F80013101F1564011001900000000FFFFFF2E", "BVG Guthabenkarte (Prepaid Payment Card for Berlin/Brandenburg Public Transport) (Transport)\nhttps://www.bvg.de/de/service-und-kontakt/guthabenkarte" }, { "3B8F800141434F53204449616E6131204C63365B", "DKB-VISA-Card (Bank)\nhttps://produkte.dkb.de/?&page=girokonto#kreditkarte" }, @@ -2241,16 +2325,21 @@ const static atr_t AtrTable[] = { { "3B8F80018031806549544A3441120FFF82900088", "CIE - Carta di Identita Elettronica - Italian ID Card (eID)\nhttps://www.cartaidentita.interno.gov.it" }, { "3B8F80018031806549544A3442120FFF829000", "Italian Identity Card CIE (eID) (eID)\nhttps://www.cartaidentita.interno.gov.it/en/home/" }, { "3B8F80018031806549544A3442120FFF8290008B", "Identity Card (eID)" }, + { "3B8F80018031806549544A3443120FFF8290008A", "Electronic Identity (CIE) (eID)" }, { "3B8F80018031806549544A3444120FFF8290008D", "CIE Italian Electronic Identity Card (eID)" }, { "3B8F800180318065B0........120FFE829000..", "IDPrime MD 3810 T=Contactless (Prox DU)" }, { "3B8F800180318065B0842327E5120FFE8290007E", "Gemalto IDPrime MD 3810 Blank Card (Other)\nhttp://www.gemalto.com/products/IDPrime_MD/index.html" }, { "3B8F800180318065B0846160FB120FFD82900066", "IDPrime 3930 FIPS Level 2 (Contactless TypeA) (BAI5, BAI7) (PKI)" }, + { "3B8F800180318065B0846566FB120FFC82900065", "Thales SafeNet IDPrime 3930 (PKI)\nhttps://cpl.thalesgroup.com/resources/access-management/idprime-3930-product-brief" }, { "3B8F800180318065B0850300EF120FFE82900072", "Gemalto IDPrime MD 3840\nhttp://www.gemalto.com/dwnld/6891_IDPrimeMD3840_Product_Datasheet_May14.pdf" }, { "3B8F800180318065B0850300EF120FFF82900073", "Grand Duchy of Luxembourg / Identity card with LuxTrust certificate (eID)\nhttp://www.guichet.public.lu/citoyens/fr/citoyennete/papiers-identite/carte-identite/nouv-carte-identite-adulte-EN/index.html" }, { "3B8F800180318065B085040011120FFF8290008A", "Dutch driver licence (eID)\nItalian electronic identity card (eID)\nhttps://en.wikipedia.org/wiki/Italian_electronic_identity_card" }, + { "3B8F800180318065B085050011120480829000FF", "Mauritius eID (eID)" }, + { "3B8F800180318065B0855956FB120FFC82900068", "THALES SafeNet IDPrime 3940 Fido (PKI) (PKI)\nhttps://cpl.thalesgroup.com/fr/resources/access-management/idprime-3940-product-brief" }, { "3B8F80018031B865B0850300EF1200F68290004D", "Finnish electronic identity card (eID)\nhttps://vrk.fi/en/electronic-identity-and-certificates" }, { "3B8F80018031B865B08504021B1200F6829000BC", "Finnish identity card (eID)" }, { "3B8F80018031B865B08505001112246082900007", "Finnish Citizen Certificate ID Card (eID)\nhttps://dvv.fi/en/citizen-certificate-on-id-card" }, + { "3B8F80018031D85365494464B085051012233F16", "Estonian Identity Card 2025 (eID) (eID)\nhttps://www.id.ee/" }, { "3B8F80018031D865B08505001112752082900076", "Swedish national ID card (eID)\nhttps://polisen.se/en/services-and-permits/passport-and-national-id-card/check-validity-online-for-passports-and-national-id-cards/" }, { "3B8F80018031E06B042105027255555555555564", "Banamex/Citi Bank Bsmart MasterCard Paypass (Bank)\nhttps://www.banamex.com/es/personas/tarjetas_credito/ver_tarjetas/puntos_efectivo/bsmart.htm" }, { "3B8F80018031E06B04310502D1555555........", "Revolut Prepaid Mastercard (Contactless) (Bank)\nhttps://revolut.com/" }, @@ -2337,6 +2426,7 @@ const static atr_t AtrTable[] = { { "3B8F8001804F0CA00000030603FF88000000001C", "Infineon Mifare SLE 66R35\nhttp://www.infineon.com/cms/en/product/channel.html?channel=ff80808112ab681d0112ab69686e01ee\n'Old' 'unlimited trips' card for Moscow Metro (underground)" }, { "3B8F8001804F0CA00000030605....00000000..", "RFID - ISO 14443 Type B Part 1 (as per PCSC std part3)" }, { "3B8F8001804F0CA00000030606....00000000..", "RFID - ISO 14443 Type B Part 2 (as per PCSC std part3)" }, + { "3B8F8001804F0CA000000306060000000000006E", "ATM Milano RICARICA-MI Card (Transport)\nhttps://www.atm.it/en/ViaggiaConNoi/Biglietti/Pages/Ricaricami.aspx" }, { "3B8F8001804F0CA00000030607....00000000..", "RFID - ISO 14443 Type B Part 3 (as per PCSC std part3)" }, { "3B8F8001804F0CA000000306070000000000006F", "Atmel AT88RF04C CryptoRF" }, { "3B8F8001804F0CA000000306074344600201E4EF", "'Andante' Card, Porto (Portugal) metro card. (ISO14443 B CTS/CTM512B) (Transport)\nhttp://www.transportespublicos.pt/en/glossary/andante-ticket-system/" }, @@ -2364,6 +2454,7 @@ const static atr_t AtrTable[] = { { "3B8F8001805A08030300000001D3377282900059", "French Transport Card Pass'bus (used in Metz, France)\nhttp://www.tcrm-metz.fr/" }, { "3B8F8001805A08030300000002B36C5382900040", "Modalis: transport card for Gironde buses (France) (Transport)\nhttp://transgironde.gironde.fr/" }, { "3B8F8001805A08030400020024E279788290000C", "Paris Navigo card 14443 B' (Innovatron - Calypso)" }, + { "3B8F80018065544320141331C073F4A180810508", "Turkey id card (eID)" }, { "3B8F80018066B007010107............9000..", "Gemalto Santander Optelio TUI R7 with WG10 customized using Contactless interface" }, { "3B8F80018073CC91CBF9A0000003080000100029", "NIST demo PIV card (eID)" }, { "3B8F8001809100318065B08405002583019000CD", "Contactless IDCore3230 build 6.8, test APDU applet (JavaCard)" }, @@ -2373,6 +2464,7 @@ const static atr_t AtrTable[] = { { "3B8F80018091E1318065B0831117E583009000E9", "IDPrime PIV Card v2.0 AES SCP03 (eID)\nhttp://www.gemalto.com/products/piv_card/product_brief.html" }, { "3B8F80018091E1318065B0850200CF83009000C1", "Gemalto IDCore 3010 CC (JavaCard)\nhttp://www.gemalto.com/Products/top_javacard/index.html\nMultiApp ID Dual Citizen EAC 80K CC / IDClassic 3340 (old name: Classic TPC DM) (with IAS Applet V3) - Contactless Mode" }, { "3B8F80018091E1318065B0850200E983009000E7", "MultiApp ID Dual Citizen EAC 144K CC (with IAS Applet V3) -Contactless Mode" }, + { "3B8F80018091E1318065B08503010F8301900000", "Jordan ID (eID)" }, { "3B8F80018091E1319865B0850300EF739441C08D", "Italian Passport (passport)\nhttps://www.passaportonline.poliziadistato.it/" }, { "3B8F80018091E1319865B0850300EF739441FFB2", "Italian Passport (passport)" }, { "3B8F80018091E131D865B28C01000773C441E05C", "Portuguese epassport (passport)" }, @@ -2380,6 +2472,7 @@ const static atr_t AtrTable[] = { { "3B8F800186844354444E409F3EC40D682804007D", "Access card to the underground network of guangzhou (Transport)" }, { "3B8F8001FF43727970746E6F784649444F3230C2", "Fast Identification Online card (FIDO2) from Cryptnox manufacturer (Other)\nhttps://www.cryptnox.ch" }, { "3B8F8001FF43727970746E6F78464944FFFFFF70", "CRYPTNOX FIDO2 CARD (Other)\nhttp://www.cryptnox.ch" }, + { "3B8F8111FC49524445544F204143532056352E33CD", "Ziggo Irdeto (Pay TV)" }, { "3B90160187", "BIFIT USB-Token iBank2key" }, { "3B90180189", "IIT E.Key Almaz-1C 00 00 (Other)\nhttps://iit.com.ua/" }, { "3B90958011FE6A", "JC30M48CR JavaCard (JavaCard)" }, @@ -2412,6 +2505,7 @@ const static atr_t AtrTable[] = { { "3B9596C0F01FC20F100A0A16", "viettel (Telecommunication)" }, { "3B959740F01A160A1941", "SG50 (Samsung Chip) (Telecommunication)" }, { "3B96004121920000622433339000", "Ukrainian Telecommunications Operator Kyivstar (old simcard) (Telecommunication)\nhttps://kyivstar.ua/uk/mm" }, + { "3B961181217575547275737473", "Identiv uTrust FIDO2 NFC+ (Other)" }, { "3B961880018051006110309F006110309E", "Atmel/Athena T0 PC/SC Compliance Test Card No. 1 (warm reset)" }, { "3B9694801FC6D0019FCB1000CE", "jawwal (Telecommunication)" }, { "3B9695801FC3D007830254005D", "au IC-card ver.001 (for CDMA2000) (Telecommunication)\nhttps://ja.wikipedia.org/wiki/Au_IC%E3%82%AB%E3%83%BC%E3%83%89" }, @@ -2420,6 +2514,7 @@ const static atr_t AtrTable[] = { { "3B9711801F428031A073BE2100A6", "ETSI 102 230 Test case 5.2.5.3. Comprion IT3 SIM emulator (Telecommunication)" }, { "3B9711C0FFB1FE351F83A505010102A3015F", "digital chronotachygraphe card: conducteur/driver, entreprise, controleur/controller et atelier/workshop, 2006-2010\nmanufactured by Imprimerie Nationale, distributed by Chronoservices" }, { "3B9713C0FFB1FE351F83A505010102A3015D", "digital chronotachygraphe card: conducteur/driver, entreprise, controleur/controller et atelier/workshop, 2005-2006\nmanufactured by Imprimerie Nationale, distributed by Chronoservices" }, + { "3B97181181444944454D010758", "Didem Card V1.7 (Pay TV)" }, { "3B9793803FC7828031E073FE211310", "eSTK.me v1.2.3.1 or older (Telecommunication)\nhttps://eSTK.me" }, { "3B9794801F438031E073FE211B39", "Telenor SIM card (Hungary) (Telecommunication)\nhttps://www.telenor.hu" }, { "3B9794803F44908031A073BE210095", "Comprion Simulated card that indicate Low Impedance support: TB(3) = 0x90 (Telecommunication)" }, @@ -2495,6 +2590,7 @@ const static atr_t AtrTable[] = { { "3B9C9580811F039067464A01005404F272FE00C0", "Feitian Technologies Java Card A22CR (JavaCard)\nhttps://www.javacardos.com/store/javacard-a22cr.php" }, { "3B9C9580811F039067464A01011706F2727E0000", "A40CR (JavaCard)" }, { "3B9C958131FE9F9067464A010253050172FE00FB", "Feitian Biopass K27 (PKI)\nhttps://www.ftsafe.com/Products/FIDO/Bio" }, + { "3B9C958131FE9F9067464A010400050172FE00AE", "ePass FIDO-NFC Plus (eID)\nhttps://www.ftsafe.com/products/FIDO/NFC" }, { "3B9C96005275746F6B656E4543507363", "Aktiv Rutoken ECP SC T0\nhttps://www.rutoken.ru/products/all/rutoken-ecp-sc/" }, { "3B9C960058442403020020010A009005", "Ticket Restaurant Card (Other)\nhttp://www.edenred.it/buoni-pasto-welfare-benefit/ticket-restaurant-card/" }, { "3B9C978011405275746F6B656E4543507363C0", "Aktiv Rutoken ECP 3.0 NFC (PKI)\nhttps://www.rutoken.ru/products/all/rutoken-ecp-nfc/" }, @@ -2502,6 +2598,7 @@ const static atr_t AtrTable[] = { { "3B9D13813160378031C0694D54434F537302020440", "DPI Card Guatemala (eID)\nhttp://www.masktech.de/" }, { "3B9D13813160378031C0694D54434F537302020541", "MTCOS (eID)\nhttp://www.masktech.com/Products/MTCOS-Professional/11/en" }, { "3B9D188131FC358031C0694D54434F5373020505D3", "Lithuanian e-ID Card (eID)\nhttps://www.nsc.vrm.lt/default_en.htm" }, + { "3B9D188131FC358031C0694D54434F5373020604D1", "Lithuanian ID card (MaskTech, 2024) (eID)" }, { "3B9D944023006820014D696F434F53009000", "Miotec smartcard running Miocos 2.0 on an Atmel AT90SC646\nhttp://www.miotec.fi" }, { "3B9D95801FC38031E0524B5462110373FE211B8F", "KT WiBro UICC (2.3 GHz mobile WiMAX in South Korea)" }, { "3B9D95801FC38031E073FE211B65D00057026230", "Gemalto NFC enabled (acquired through the Simagine contest)" }, @@ -2526,6 +2623,7 @@ const static atr_t AtrTable[] = { { "3B9E94801F478031E073BE211366868882183942F5", "China Unicom 128K Mini USIM (Telecommunication)" }, { "3B9E94801F478031E073FE21136686880212653213", "MTS Moscow (Russia) SIM card (Telecommunication)\nhttps://moskva.mts.ru/personal" }, { "3B9E94801FC38031E073FE211B66D00017B40000A5", "Vodafone Ireland SIM card" }, + { "3B9E94801FC68031E073FE211B66D0019FEF100062", "Vodacom GSM SIM (Telecommunication)" }, { "3B9E94801FC78031E073FE211366425454423031DB", "XLB.5G CTC Test Card (Telecommunication)\nhttps://xielibo.com" }, { "3B9E94801FC78031E073FE211B66D0006C025F0033", "Vivo Brasil SIM Card" }, { "3B9E94801FC78031E073FE211B66D0006C0634005C", "SIM card SFR 250 128ko" }, @@ -2649,6 +2747,7 @@ const static atr_t AtrTable[] = { { "3B9E96801FC78031E073FE211B66D002175B12005C", "Cellcom Israel USIM (micro FF) (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0021760130066", "Vodafone spain barcelona (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0021762120065", "Free Mobile (Telecommunication)\nhttp://mobile.free.fr" }, + { "3B9E96801FC78031E073FE211B66D0021795120092", "Twilio SIM (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D00217A01200A7", "USIM Card (Etisalat) (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D00217BF1100BB", "Telkom (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D00217C91100CD", "Vivo 4G (Other)" }, @@ -2657,12 +2756,15 @@ const static atr_t AtrTable[] = { { "3B9E96801FC78031E073FE211B66D00217F41200F3", "SIM card for Swedish operator Vimla! (Telecommunication)\nhttps://www.vimla.se" }, { "3B9E96801FC78031E073FE211B66D002194B120042", "halebop (swedish mobile provider) SIM card (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0022436140004", "SIM (Telecommunication)" }, + { "3B9E96801FC78031E073FE211B66D00224DE1400EC", "Romanian Vodafone SIM Card (Telecommunication)" }, + { "3B9E96801FC78031E073FE211B66D0022A3215000F", "Bell 5G/LTE multi SIM card, Canada (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0022A6D130056", "USIM card (JavaCard)" }, { "3B9E96801FC78031E073FE211B66D0022A6D140051", "Mobitel SIM from Sri Lanka (Telecommunication)\nhttps://mobitel.lk/" }, { "3B9E96801FC78031E073FE211B66D0022A72130049", "SIM Card OI (Brazil) (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0022A7613004D", "MTS Russia (Telecommunication)\nhttps://www.mts.ru/\nMegafon Russia (Telecommunication)\nhttps://www.megafon.ru" }, { "3B9E96801FC78031E073FE211B66D0022A861300BD", "Mobile Vikings SIM Card (Telecommunication)\nhttps://mobilevikings.com" }, { "3B9E96801FC78031E073FE211B66D0022A8F1400B3", "Telefonica USIM (Telecommunication)" }, + { "3B9E96801FC78031E073FE211B66D0022AB714008B", "AT&T Prepaid UICC (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0022AD31300E8", "sim card from Mobilcom Debitel Telefonica (Telecommunication)\nhttps://md.de" }, { "3B9E96801FC78031E073FE211B66D0022AD91300E2", "sim (Telecommunication)" }, { "3B9E96801FC78031E073FE211B66D0022AE81300D3", "Twilio Super SIM card (Telecommunication)\nhttps://www.twilio.com/iot/super-sim-card" }, @@ -2672,11 +2774,15 @@ const static atr_t AtrTable[] = { { "3B9E96803F47A08031E073EE211366868842185221EF", "SIM card (Telecommunication)" }, { "3B9E96803FC3A08031E073FE211B630801140F9000D3", "KT Olleh LTE Warp SA-L 1670 (Telecommunication)" }, { "3B9E97801FC68031E073FE211B66D0019F7A1200F6", "Spectrun USA Sim Card (Telecommunication)" }, + { "3B9E97801FC68031E073FE211B66D0024010150047", "Simplex Wireless SIM card (Telecommunication)" }, { "3B9E97801FC68031E073FE211B66D0024011150046", "SIM Card for French mobile provider Unyc (Telecommunication)\nhttps://www.unyc.io/" }, + { "3B9E97801FC68031E073FE211B66D002401815004F", "Lebara.fr (Telecommunication)\nhttps://www.lebara.fr/" }, { "3B9E97801FC68031E073FE211B66D002401D15004A", "Telia Sim card for IoT (Telecommunication)" }, { "3B9E97801FC68031E073FE211B66D0024027150070", "verymobile wind 3 (Telecommunication)\nhttps://verymobile.it/" }, { "3B9E97801FC68031E073FE211B66D002402F150078", "Free Mobile (French carrier) SIM card (Telecommunication)\nhttps://mobile.free.fr/" }, { "3B9E97801FC68031E073FE211B66D0025E7315003A", "Twilio Super SIM (Telecommunication)\nhttps://www.twilio.com/iot/super-sim-card" }, + { "3B9E97801FC68031E073FE211B66D0025E901500D9", "SMARTY (a subsidiary of Three UK) 4G SIM Card (Telecommunication)" }, + { "3B9E97801FC68031E073FE211B66D0025EC0150089", "Orange France Postpaid SIM Card (Telecommunication)" }, { "3B9E97801FC78031E073FE211B66D0006B951100EE", "TracFone SIM Verizon Wireless LTE supported (Telecommunication)\nhttps://www.tracfone.com" }, { "3B9E97801FC78031E073FE211B66D0022AB3130089", "SIM T-MObile (Telecommunication)" }, { "3B9F..801FC300681.4405014649534531C8..9000..", "Setec SetCOS 4.4.1" }, @@ -2749,6 +2855,7 @@ const static atr_t AtrTable[] = { { "3B9F94801FC78031E073FE21136761210D10000070F7", "Celcom XPAX (Telecommunication)\nhttps://www.celcom.com.my/personal/prepaid" }, { "3B9F94801FC78031E073FE2119573C8660C10401F00E", "Karabakh Telecom - cell operator of Republic of Artsakh (1992-2023) (Telecommunication)\nhttp://web.archive.org/web/20230927140946/https://kt.am/" }, { "3B9F94801FC78031E073FE2119573C8660C1060240BF", "Vietnamobile SIM card (Telecommunication)" }, + { "3B9F94801FC78031E073FE2119573C8660C1070210EE", "Serbia, Yettel, Prepaid (touristic) SIM (Telecommunication)\nhttps://www.yettel.rs/en/consumer/offer/tariff-packages/prepaid-tariff-package" }, { "3B9F94801FC78031E073FE2119573C8660CFB902A0EE", "Gotanet SE USIM (Telecommunication)" }, { "3B9F94801FC78031E073FE2119573C8660CFBA02A0ED", "Gotanet DK USIM (Telecommunication)" }, { "3B9F94801FC78031E073FE211B573786609B3289B2A1", "China Unicom Travel SIM (Telecommunication)\nhttps://www.cuniq.com/hk/data-card/asia/asia-12days.html" }, @@ -2761,6 +2868,7 @@ const static atr_t AtrTable[] = { { "3B9F94801FC78031E073FE211B573F866096A100000C", "Lycamobile UICC/SIM card. (Telecommunication)\nhttps://www.lycamobile.com.au" }, { "3B9F94801FC78031E073FE211B573F8660AEA0000035", "VIVA MTS (Armenia) (Telecommunication)\nhttps://www.mts.am/" }, { "3B9F94801FC78031E073FE211B573F8660AF01000095", "Gotanet SE USIM (Telecommunication)" }, + { "3B9F94801FC78031E073FE211B573F8660B4A000002F", "Beeline RUS (Telecommunication)" }, { "3B9F94801FC78031E073FE211B573F8660B803000080", "Zero1 SIM card, Singapore (Telecommunication)" }, { "3B9F94801FC78031E073FE211B573F8660B8A1000022", "MEO (Portugal) SIM-Card (Telecommunication)" }, { "3B9F94801FC78031E073FE211B6345431983009000DA", "Smartjac (Telecommunication)" }, @@ -2788,6 +2896,7 @@ const static atr_t AtrTable[] = { { "3B9F95801FC38031A073BE211367D002031901000016", "GSM SIM card from congstar (a no-frills service provider of Deutsche Telekom)" }, { "3B9F95801FC38031A073BE211367D00203210500002A", "T-Mobile CZ SIM+USIM, printed label says @LB. (Telecommunication)" }, { "3B9F95801FC38031A073BE211367D00203310500003A", "T-MOBILE CZ GSM card" }, + { "3B9F95801FC38031E073FE2113576111957125560109", "mobile phone test white card from Shenzhen Huahai Smart Card Co., Ltd (Telecommunication)\nhttps://www.cnhuahai.com/en/products/mobile-phone-test-white-card" }, { "3B9F95801FC38031E073FE21135786810286984418A8", "GREEN CARD, Grcard (Hong Kong ) Co.,Limited, LTE Usim Card (Telecommunication)\nCelcom Postpaid 3G (Telecommunication)" }, { "3B9F95801FC38031E073FE21136355401883079000C2", "Ubivelox (JavaCard)" }, { "3B9F95801FC38031E073FE211B573F866046CD0001B4", "China Unicom USIM 128K 1295E" }, @@ -2797,6 +2906,7 @@ const static atr_t AtrTable[] = { { "3B9F95801FC38031E073FE211B640690620082900032", "AT&T GoPhone SIM Card" }, { "3B9F95801FC38031E073FE211B649B4D011182900000", "Singular (now AT&T) 3G GSM SIM Card" }, { "3B9F95801FC38031E073FE211BB3E20174830F900088", "Gemplus GemXplore 3G USIM" }, + { "3B9F95801FC38031E073FE211BB3E20394830F90006A", "Sim Card Proximus (Telecommunication)" }, { "3B9F95801FC78031A073B6A10067CF15CA9CD70920", "RBC Bank Card (Bank)\nhttps://www.rbc.com" }, { "3B9F95801FC78031A073B6A10067CF1713C41D2D3649", "Idemia card (Telecommunication)" }, { "3B9F95801FC78031A073B6A10067CF1794AA28993F28", "Glaier Programmable LTE USIM Card (Telecommunication)" }, @@ -2827,6 +2937,8 @@ const static atr_t AtrTable[] = { { "3B9F95801FC78031E073FE211B573C8660BEB5002012", "Beeline Armenia / Telecomarmenia (Telecommunication)\nhttps://www.telecomarmenia.am" }, { "3B9F95801FC78031E073FE211B573C8660BEB7002010", "Kyivstar SIM (Telecommunication)\nhttps://kyivstar.ua/" }, { "3B9F95801FC78031E073FE211B573F866096AE000002", "Kazakhstan 'Beeline' 4G SIM card (Telecommunication)\nhttps://beeline.kz" }, + { "3B9F95801FC78031E073FE211B636D402B83009000C2", "Test SmartCard (Telecommunication)" }, + { "3B9F95801FC78031E073FE211B636E402783009000CD", "SimCard in China (Telecommunication)" }, { "3B9F95801FC78031E073FE211B63E20394830F9000BE", "Telenet N.V. Walk & Talk SIM Card Belgium" }, { "3B9F95801FC78031E073FE211B63E204A5830F900088", "Cingular '64Ksmartchip' GSM SIM\nTelia GSM/3G (Swedish operator)" }, { "3B9F95801FC78031E073FE211B63E206A6830F900089", "TracFone (US) Net10 GSM SIM card\nSimyo (Germany) GSM SIM card\nH3G (Italy) UMTS USIM card" }, @@ -2863,10 +2975,12 @@ const static atr_t AtrTable[] = { { "3B9F958131FE9F006646530510113171DF0000039000A0", "Feitian ePass2003 PKI Token (PKI)" }, { "3B9F958131FE9F006646530510113171DF0000860000B5", "HYPERSECU HYP2003 (PKI)\nhttps://www.hypersecu.com/hyperpki" }, { "3B9F958131FE9F006646530510323871DF00000600001F", "token (PKI)" }, + { "3B9F958131FE9F006646530510523971DF000000000078", "'Feitian ePass2003' USB (PKI)" }, { "3B9F958131FE9F006646530520032571DF000000000005", "Feitian ePass2003 token" }, { "3B9F958131FE9F006646530520032571DF000003900096", "Feitian ePass2003 token (PKI)" }, { "3B9F958131FE9F006646530523002571C39F0000000086", "Feitian ePass2003 token" }, { "3B9F958131FE9F006646530523002571DF00000.00000.", "FEITAIN ePASS2003 (PKI)\nhttp://www.ftsafe.com/product/epass/epass2003" }, + { "3B9F958131FE9F006646530523002571DF000000000005", "Gemalto 840 (eID)" }, { "3B9F958131FE9F006646530523002571DF000003900096", "Feitian USB Cryptographic token (FIPS 140-2 Level 3) (PKI)\nhttp://www.ftsafe.com/product/epass/epass2003" }, { "3B9F958131FE9F006646530532022571DF000006000010", "ePass 3003 Auto (PKI)\nhttps://www.ftsafe.com/products/PKI/Standard/Specification" }, { "3B9F958131FE9F006646530534002571DF0000036A82F9", "Feitian ePass2003Auto (PKI)\nhttps://www.ftsafe.com/Products/PKI/Standard/Specification" }, @@ -2881,6 +2995,7 @@ const static atr_t AtrTable[] = { { "3B9F96400A8031E06B0421050261555555555555", "altinn - Buypass\nElectronic ID card for login to the altinn.no service" }, { "3B9F96400A8031E06B042105026C555555555555", "Banca Intesa (Bank)\nhttp://www.bancaintesa.rs/code/navigate.aspx?Id=677" }, { "3B9F96400A8031E06B04310502A8555555555555", "Norsk Tipping tippekort (eID)\nhttps://www.norsk-tipping.no/bli-nettspiller" }, + { "3B9F96400A8031E06B045205024F555555555555", "Buypass ID on Smart card (eID)\nhttps://www.buypass.no/produkter/buypass-id-smartkort" }, { "3B9F96801F438031E073362113574A330E09314100AA", "Elisa UICC (Telecommunication)" }, { "3B9F96801F438031E073362113574A330E0C314100AF", "GSM, Vodafone (Germany)" }, { "3B9F96801F478031E073362113574A330E0C314100AB", "NATEL SIM-Card swisscom\nVodafone Germany Micro-SIM from 2010" }, @@ -2888,6 +3003,7 @@ const static atr_t AtrTable[] = { { "3B9F96801F878031A073BE2111630000018305900089", "jio sim card (Telecommunication)" }, { "3B9F96801F878031E073FE2119674A555473300948DB", "nano sim/usim card (Telecommunication)" }, { "3B9F96801F878031E073FE2119674A555475300662F8", "SIM Card (Telecommunication)" }, + { "3B9F96801F878031E073FE2119674A555475300868FC", "Vodafone UA Card (Telecommunication)\nhttps://www.vodafone.ua" }, { "3B9F96801F878031E073FE2119674A557330310746BE", "Hologram Developer Global IoT SIM Card (Telecommunication)\nhttps://hologram.io/store/global-iot-sim-card/17" }, { "3B9F96801F878031E073FE2119674A55753031136288", "Zimbabwe sim card provider: ECONET (Telecommunication)" }, { "3B9F96801F878031E073FE211B674A357530350259C4", "sysmoISIM-SJA5-9FV programmable SIM/UICC/USIM/ISIM (Telecommunication)\nhttps://sysmocom.de/products/sim/sysmoisim-sja5/index.html" }, @@ -2907,6 +3023,7 @@ const static atr_t AtrTable[] = { { "3B9F96801FC68031E073F62113674D45220079020080", "TMobile (Telecommunication)" }, { "3B9F96801FC68031E073F62113674D4522008001007A", "ORANGE SPAIN GSM 4G SIM (Telecommunication)" }, { "3B9F96801FC68031E073F62113675602220080010127", "giffgaff USIM (Telecommunication)" }, + { "3B9F96801FC68031E073F6211367560322008801022D", "T-Mobile Sim Card (Telecommunication) (Telecommunication)\nhttps://www.t-mobile.com/" }, { "3B9F96801FC68031E073F62113675603220121010087", "Rain 4G 5G Internet Service provider (Telecommunication)\nhttps://www.rain.co.za" }, { "3B9F96801FC68031E073F62113675603220121020084", "T-Mobile Sim Card (Telecommunication)" }, { "3B9F96801FC68031E073FE2111633F011183079000E4", "VR-Bank VRNetworld HBCI Card (Bank)" }, @@ -2943,12 +3060,16 @@ const static atr_t AtrTable[] = { { "3B9F96801FC78031E073F62113674D451700630201AF", "TIM 4G LTE SIM Card (Telecommunication)\nhttp://www.tim.com.br" }, { "3B9F96801FC78031E073F62113674D4524006701009A", "Mediamarkt Mobil SIM card (Austria) (Telecommunication)\nhttp://mobil.mediamarkt.at" }, { "3B9F96801FC78031E073F62113674D45270077010089", "T-Mobile Compatible Straight Talk(tm) SIM Card (Telecommunication)\nhttps://www.straighttalk.com/home" }, + { "3B9F96801FC78031E073F621136756022701010203A2", "Movistar ES SIM Card (ICCID 89304075700066xxxxxx) (Telecommunication)" }, + { "3B9F96801FC78031E073F621136756023501030103B1", "Keepgo (Movistar) Lifetime World SIM Card (Telecommunication)\nhttps://www.keepgo.com/products/keepgo-lifetime-prepaid-data-sim-card" }, { "3B9F96801FC78031E073F62113675603270089010228", "TMobile Prepaid USIM (Telecommunication)" }, { "3B9F96801FC78031E073F621136756032701010203A3", "USIM LTE MOVISTAR (Telecommunication)" }, { "3B9F96801FC78031E073F621136756032701020100A0", "vivo (Other)" }, { "3B9F96801FC78031E073F621136756032701070100A5", "weex sim card (Telecommunication)" }, { "3B9F96801FC78031E073F62113675603270120020081", "VALID brand SIM card from T-Mobile (Telecommunication)" }, + { "3B9F96801FC78031E073F62113675603270120020180", "TMbl SIM (Telecommunication)" }, { "3B9F96801FC78031E073F6211367560346014901008A", "T-Mobile Poland pre-paid SIM card (Telecommunication)" }, + { "3B9F96801FC78031E073F62157574A4D020C6080004D", "Google Fi Data SIM (Telecommunication)\nhttps://fi.google.com" }, { "3B9F96801FC78031E073F6A157574A4D020B6110005B", "G+D Mobile Security for private 5G USIM (Telecommunication)\nhttps://www.gi-de.com/en/connectivity/mobile-network-operator/5g#5g-sim" }, { "3B9F96801FC78031E073FE21..63......83..9000..", "TIM (Italy) 128KB GSM SIM\nH3G (Italy) UMTS USIM\nVodafone (UK) SIM" }, { "3B9F96801FC78031E073FE211163407262830790009A", "GSM SIM / LTE UICC card issued by Omnitel, Lithuania (Telecomunications)" }, @@ -2967,6 +3088,7 @@ const static atr_t AtrTable[] = { { "3B9F96801FC78031E073FE2113574A330E25333200BB", "Sintel hi! Tourist prepaid (Telecommunication)\nhttp://www1.singtel.com/personal/phones-plans/mobile/prepaid/hitouristsimcards.html" }, { "3B9F96801FC78031E073FE2113574A330E26333200B8", "Vodafone sim card (Telecommunication)" }, { "3B9F96801FC78031E073FE2113574A330E3F333400A7", "SIM Card (Telecommunication)" }, + { "3B9F96801FC78031E073FE2113574A330E48333000D4", "Lifecell UA (Telecommunication)" }, { "3B9F96801FC78031E073FE2113574A338101330017", "Telefonica M2M Global SIM (Telecommunication)" }, { "3B9F96801FC78031E073FE2113574A33810433330014", "PureTalk SIM Card (Telecommunication)" }, { "3B9F96801FC78031E073FE21135786812786986143F4", "China Telecommunications Corporation (Telecommunication)" }, @@ -3040,6 +3162,7 @@ const static atr_t AtrTable[] = { { "3B9F96801FC78031E073FE211B644124940082900030", "Telefonica Germany / o2 cellular USIM card (ICCID starts with 89492281945) - Card manufacturer IDEMIA Germany GmbH (code 8) - Year 19 / Week 45 (Telecommunication)" }, { "3B9F96801FC78031E073FE211B6441271100829000B6", "Viettel LTE SIM Card (Telecommunication)" }, { "3B9F96801FC78031E073FE211B6441380200829000BA", "SIM card operateur Free (Telecommunication)" }, + { "3B9F96801FC78031E073FE211B644144420082900086", "wom chile (Telecommunication)" }, { "3B9F96801FC78031E073FE211B6441447300829000B7", "Bouygues Telecom (French Mobile Provider SIM card) (Telecommunication)\nhttps://www.bouyguestelecom.fr" }, { "3B9F96801FC78031E073FE211B6441503100829000E1", "telcel sim card (Telecommunication)" }, { "3B9F96801FC78031E073FE211B644163940082900077", "EMnify SIMcard (Telecommunication)\nhttps://www.emnify.com/global-iot-sim" }, @@ -3047,6 +3170,8 @@ const static atr_t AtrTable[] = { { "3B9F96801FC78031E073FE211B6441725200829000A0", "Woolworths Mobile Prepaid SIM (Telecommunication)\nhttps://mobile.woolworths.com.au/" }, { "3B9F96801FC78031E073FE211B6441763200829000C4", "T-Mobile SIM card issued April 2021 (Telecommunication)" }, { "3B9F96801FC78031E073FE211B644183720082900071", "Ucom Armenia (Telecommunication)\nhttps://www.ucom.am" }, + { "3B9F96801FC78031E073FE211B644187210082900026", "French SIM card from MVNO Phenix Partners, host operator Orange (Telecommunication)" }, + { "3B9F96801FC78031E073FE211B644187950082900092", "Dish Wireless 5G (Telecommunication)\nhttps://help.boostmobile.com/docs/boost-mobile-network" }, { "3B9F96801FC78031E073FE211B6450040100826A82EC", "SIM (Telecommunication)" }, { "3B9F96801FC78031E073FE211B6450055100829000C5", "Sim card Team Telecom Armenia (Telecommunication)\nhttps://www.telecomarmenia.am/hy/" }, { "3B9F96801FC78031E073FE211B65240109010081057B", "Lycamobile (UK) GSM SIM card" }, @@ -3070,1340 +3195,1413 @@ const static atr_t AtrTable[] = { { "3B9F96801FC78031E073FE211B66D0016B820E3805DA", "GTS Czech MVNE SIM for T-Mobile (Telecommunication)\nhttp://www.gts.cz/cz-en/solutions/types/wholesale/mvne" }, { "3B9F96801FC78031E073FE211BB3E20394830F90006D", "GemXplore 3G v2.2" }, { "3B9F96801FC78031E073FE211BB3E204A5830F90005B", "Tre Italia Gemplus (Telecommunication)" }, - { "3B9F96803FC3A08031E073F62113574A4D0E1D31300071", "Telenor SIM card (Norway)" }, - { "3B9F96803FC6A08031E073F62116574A4D020B34546369", "SIM card Wingo operator (Switzerland) (Telecommunication)" }, - { "3B9F96803FC7008031E073FE211B6408050300829000EF", "Multipurpose UICC card for 2G, 3G, 4G/LTE, CDMA, ISIM & NFC (Telecommunication)\nhttp://www.smartjac.biz/index.php/component/eshop/telecom/test-uicc-sim-cards/2ff-mini-sim-cards/4g-open-multipurpose-uicc-card-3ff?Itemid=0" }, - { "3B9F96803FC7008031E073FE211F6441262100829000A3", "Smartjac SMAOT100A234FF (Telecommunication)\nhttps://smartjac.com" }, - { "3B9F96803FC7828031E073F62157574A330581053000CE", "COMPRION M2M eUICC (Telecommunication)" }, - { "3B9F96803FC7828031E073F62157574A4D020B60010069", "eSIM GSMA Card (Telecommunication)\nhttps://www.gsma.com/newsroom/wp-content/uploads/SGP.22_v2.2.pdf" }, - { "3B9F96803FC7828031E073F62157574A4D020B60610009", "ting (Telecommunication)" }, - { "3B9F96803FC7828031E073FE211B57AA8660F0010004FB", "The eSIM.me Card (Telecommunication)\nhttps://esim.me/" }, - { "3B9F96803FC7828031E073FE211B57AA8660F0010011EE", "eSIM.me pluggable eSIM (Telecommunication)\nhttps://esim.me/" }, - { "3B9F96803FC7828031E073FE211B633A204E8300900031", "eSIM (Telecommunication)" }, - { "3B9F96803FC7828031E075F62157200355020B60500018", "iPhone 11 SIM Slot eUICC chip. Identified by eSTK.me. (Telecommunication)" }, - { "3B9F96803FC7828031E075F62157200355020C608000CF", "ST33J2M0STL9DZB0 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33j2m0.html" }, - { "3B9F96803FC7828031E075F62157210355020B60010048", "ST33G1M2STL8ENL0 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33g1m2.html" }, - { "3B9F96803FC7828031E075F62157210355020B60500019", "st33g1m2 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33g1m2.html" }, - { "3B9F96803FC7828031E075F62157210355020C608000CE", "ST33J2M0STL9DZB1 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33j2m0.html" }, - { "3B9F96803FC7A08031E073F62116574A4D020233456377", "ISIS-Ready T-Mobile Sim Card (Telecommunication)" }, - { "3B9F96803FC7A08031E073F62156574A4D020B3444005B", "Norwegian telenor (Telecommunication)\nhttp://www.telenor.no" }, - { "3B9F96803FC7A08031E073F62157574A4D020B34546329", "Orange FR - opa (Telecommunication)" }, - { "3B9F96803FC7A08031E073FE211B63F100E8830090005E", "UICC CARD (Telecommunication)" }, - { "3B9F96803FC7A08031E073FE211B6407689A00829000B4", "Orange SIM Card (Telecommunication)" }, - { "3B9F96803FC7A08031E073FE211B64080503008290004F", "NFC-enabled SIM card of MTS Russia. (Telecommunication)" }, - { "3B9F96803FC7A08031E073FE211F6300690083819000AB", "GSM file system and SWP sample supplied with STMicro development kit (Other)" }, - { "3B9F96803FC7A08031E073FE211F6441269100829000B3", "LTE Lab SIM Ver 1.3 (Telecommunication)" }, - { "3B9F968131FE458065544312210831C073F6218081059A", "Scientific and Technological Research Council of Turkey (test card) (eID)" }, - { "3B9F968131FE45806755454B41451212318073B3A180EA", "AKiS v1.2 on nxp chip" }, - { "3B9F968131FE45806755454B41451252318073B3A180AA", "AKiS v1.2.1 on infineon chip" }, - { "3B9F968131FE45806755454B41451253318073B3A180AB", "AKiS v1.2.1 on nxp chip" }, - { "3B9F968131FE45806755454B41451292318073B3A1806A", "AKiS v1.2.2 on infineon chip" }, - { "3B9F968131FE45806755454B41451293318073B3A1806B", "AKiS v1.3 on infineon chip" }, - { "3B9F968131FE5D00640428010231C073F701D000900065", "German eTicketing SAM (Transport)\nhttps://www.eticket-deutschland.de/" }, - { "3B9F968131FE6D00640428010231C073F701D000900055", "VDV-KA Secure Access Module (German Public Transport) (Transport)\nhttps://www.eticket-deutschland.de/" }, - { "3B9F968131FE9D006405A0030431C073F701D000900028", "Deutsche Telekom AG, TeleSec PKS ECC Signature Card (PKI)\nhttps://www.telesec.de/en/signaturecard" }, - { "3B9F9681B1FE451F070064051EB20031B0739621DB0590005C", "SignTrust (www.signtrust.de)\nInfinion SLE66CX680PE with Starcos 3.2\nhttp://www.deutschepost.de/dpag?xmlFile=link1015459_49595" }, - { "3B9F9681B1FE451F070064051EB20331B0739621C005900044", "German Dentist ID (eID)" }, - { "3B9F96C00A1FC38031E073FE211B63F100AD830F9000DA", "SIM SFR Pro (French Mobile Operator)" }, - { "3B9F96C00A1FC68031E073FE211F65D00233131B810FFA", "Tinkoff SIM card (Telecommunication)" }, - { "3B9F96C00A1FC78031E073FE211B63F100AD830F9000DE", "H3G (Italy) UMTS USIM card" }, - { "3B9F96C00A1FC78031E073FE211B65D0011009228100F3", "Verizon 4G LTE SIM Card (Telecommunication)\nhttp://www.verizonwireless.com/support/information/4gsim.html" }, - { "3B9F96C00A1FC78031E073FE211B65D0018E0E3281007A", "Rogers 3G SIM card" }, - { "3B9F96C00A1FC78031E073FE211F65D0020912EE810F35", "German SIM card Drillisch (Telefonica) (Telecommunication) (Telecommunication)\nhttps://www.drillisch-online.de/" }, - { "3B9F96C00A1FC78031E073FE211F65D0020914F9810F24", "CONNEXA SIM CARD (Telecommunication)" }, - { "3B9F96C00A1FC78031E073FE211F65D0020B11A4810F7E", "Telia Finland Oyj, network operator LTE (Telecommunication)" }, - { "3B9F96C00A1FC78031E073FE211F65D013370F3B810FD2", "Gemalto Security Element (PKI)" }, - { "3B9F96C00A31FE45435431690B010001000000000000000D", "EU smart tachograph card (driver/company/control/workshop)\nhttps://dtc.jrc.ec.europa.eu/" }, - { "3B9F96C00A31FE45754A6176656C696E2D4F5320312E3051", "Vietnam ID Card (eID)" }, - { "3B9F96C00A3FC6A08031E073FE211B65D001740EEB810FD7", "Verizon '4G LTE' USIM (Telecommunication)" }, - { "3B9F96C00A3FC6A08031E073FE211B65D001740F50810F6D", "5G (Telecommunication)" }, - { "3B9F96C00A3FC6A08031E073FE211F65D001900F3B810FE6", "Verizon US USIM card (Telecommunication)" }, - { "3B9F96C00A3FC6A08031E073FE211F65D00209107C810F24", "GSM SIM Vodafone NL postpaid NFC+ (Telecommunication)" }, - { "3B9F96C00A3FC6A08031E073FE211F65D0021B12B7810FFF", "SIM Card Fastweb IT GSM mobile network (Telecommunication)" }, - { "3B9F96C00A3FC7828031E073FE211F65D00209146C810F13", "euicc (eID)" }, - { "3B9F96C00A3FC7A08031E073FE211B65D001740E8D810FB0", "USIM" }, - { "3B9F96C00A3FC7A08031E073FE211B65D001740EE3810FDE", "EE (UK) Mobile Phone SIM Card circa 2016 (Telecommunication)" }, - { "3B9F96C00A3FC7A08031E073FE211B65D001740F13810F2F", "Phone card sim (Telecommunication)" }, - { "3B9F96C00A3FC7A08031E073FE211F65D0021A12AB810FE3", "Orange SIM (Telecommunication)" }, - { "3B9F96C00A3FC7A08031E073FE211F65D0021B12B7810FFE", "ISPL Card (Telecommunication)" }, - { "3B9F97801FC68031E073FE211B6441442100829000E5", "SAKURA Internet SIM (Telecommunication)\nhttps://www.sakura.ad.jp/services/sim/" }, - { "3B9F97801FC68031E073FE211B65CA010E060B81059E", "rain Networks - R15 4G Sim Card (Telecommunication)\nhttp://www.rain.co.za" }, - { "3B9F97801FC78031E073FE211367980801120401045B", "Tmobile Sim card (Telecommunication)" }, - { "3B9F97801FC78031E073FE211367980801120601065B", "Tmobile (Telecommunication)" }, - { "3B9F97801FC78031E073FE2113679814010202010257", "Orange SIM from Egypt (Telecommunication)" }, - { "3B9F97803FC7828031E073FE211F640856210082900019", "eSIM card (Telecommunication)" }, - { "3B9F97803FC7828031E073FE211F6409069200829000FB", "Ubigi Transatel esim (Telecommunication)" }, - { "3B9F978131FE458065544312210831C073F621808105", "Republic of Turkey Identity Card (eID)\nhttps://bilgem.tubitak.gov.tr/en/icerik/national-identity-card-tr-nc-identity-card" }, - { "3B9F978131FE458065544312210831C073F62180810590", "Turkish National Electronic Identity Card - TCKK (eID)\nhttp://www.ekds.gov.tr" }, - { "3B9F978131FE458065544312210831C073F6218081059B", "Turkish Republic Identity Card - Turkiye Cumhuriyeti Kimlik Karti (TCKK) (eID)\nhttp://www.ekds.gov.tr/tckk/t-c-kimlik-karti/tanim" }, - { "3B9F978131FE4580655443D2210831C073F6218081055B", "Turkish Republic official electronic ID card with biometric data, e-signature, authentication, secure private-key cryptographic messaging, etc. (eID)\nhttp://bilgem.tubitak.gov.tr/en/icerik/national-identity-card-tr-nc-identity-card" }, - { "3B9F978131FE4580655443D3228231C073F621808105D3", "Turkish eID (Turkiye Cumhuriyeti Kimlik Karti) (eID)" }, - { "3B9F97C00A1FC78031E073FE211B65D0011009228100F2", "'ultra fast card, max speed supported for telecom'? (transport)" }, - { "3B9F97C00A1FC78031E073FE211B65D001900F3B810F62", "Gemalto Multi-SIM consumer 4.2 (ST33I1M2) (Telecommunication)" }, - { "3B9F97C00A3FC6828031E073FE211B65D0023314A5810FE4", "Thales eUICC French Ministry BAP v2 (Telecommunication)" }, - { "3B9F97C00A3FC6A08031E073FE211B65D001740EEB810FD6", "Verizon 4G LTE Micro SIM (Telecommunication)" }, - { "3B9F97C00A3FC6A08031E073FE211F65D0021B13F6810FBE", "Verizon SIM Card (Telecommunication)" }, - { "3B9F97C00A3FC7A08031E073FE211F65D001900FEE810F33", "AT&T Mobility LLC MicroSIM Card (Telecommunication)\nhttps://www.att.com/wireless/" }, - { "3B9F97C00AB1FE453FC6828031E073FE211B65D0023A14C9810F8B", "SIM (Telecommunication)" }, - { "3B9F97C0FF1FC78031E073FE211B63F100AD830F90002A", "Gemalto Speed Enhancement 97 (Telecommunication)" }, - { "3B9FB681B1FE5D1F4700640411030131C073B7010000900035", "BOS (Telecommunication)" }, - { "3B9FD680B1A0591FC7534C4538385F50534C5F56302E353001", "Infineon SLE88CFX4000P" }, - { "3BA70040..8065A208......", "Gemplus GemSAFE Smart Card (8K)" }, - { "3BA70040148065A214010137", "Gemplus GPK4000sdo" }, - { "3BA70040188065A208010152", "Gemplus GPK8000\nGemSAFE Smart Card (8K)\nMultiApp ID IAS ECC 72K CC (with IAS XL / IAS ECC Applet) IAS ECC Type 3 (Bank)" }, - { "3BA70040188065A209010152", "Gemplus GPK16000" }, - { "3BA70040188065A209010252", "Gemplus GPK16000" }, - { "3BA70040188065A209010352", "Gemplus GemSAFE std (GPK16000?)" }, - { "3BA8008171465D0054434F53312E320065", "Telesec TCOS 1.2" }, - { "3BA8008171465D0054434F53312E324B2E", "CeloCom Card with TCOS 1.2" }, - { "3BAA00401447473245543553343830", "Old German 'D2 Privat' sim card (Telecommunication)" }, - { "3BAA00401447473247543553343830", "GSM-SIM Libertel (900MHz)" }, - { "3BAA004080534F805345030411AAA3", "'open platform' ATMEGA 'new Generation'\nhttp://www.masterixweb-italy.com/new/images/articoli/atmega.jpg" }, - { "3BAB00813140458031C0650806800000000084", "Reloadable Visa Cash card (Schlumberger), Bank of America" }, - { "3BAC00402A001225006480000310009000", "Sesam Vitale card CPS (Carte Profesionnel de Sante)\nhttps://esante.gouv.fr/securite/cartes-et-certificats/CPS" }, - { "3BAC00402A001225006480820212009000", "Sesam Vitale card CPS (Carte Profesionnel de Sante)" }, - { "3BAD0040FF80318065B00501015E83009000", "Dallas Semiconductor iButton\nJIB\nGemplus GemXpresso 2.11PK" }, - { "3BB0110081319073F2", "SamOS 2.7" }, - { "3BB033009181316B35FC", "SkyperfecTV HD IC Card (Pay TV)\nhttps://www.skyperfectv.co.jp/eng/" }, - { "3BB036008131FE5D95", "Betacrypt 2 (Comvenient GmbH) Conditional Access Smart Card (Pay TV)\nwww.comvenient.com" }, - { "3BB2110010800001", "Atmel memory card AT88SC0104C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf\nPlug'n'Print" }, - { "3BB2110010800002", "Atmel memory card AT88SC0204C (Atmel memory card)\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5211.pdf\nCard LAVAGE reloadadble from stations TOTAL" }, - { "3BB2110010800004", "Atmel memory card AT88SC0404C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, - { "3BB2110010800008", "Atmel memory card AT88SC0808C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf\nSmart VR Card - GD Burti" }, - { "3BB2110010800016", "Atmel memory card AT88SC1616C\nhttps://www.microchip.com/en-us/product/AT88SC1616C#document-table\nRexall (Canada) - Blood Pressure Check card\nhttp://www.rexall.ca/services/blood-pressure-tracking" }, - { "3BB3110000000032", "Atmel memory card AT88SC3216C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, - { "3BB3110000000064", "Atmel memory card AT88SC6416C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, - { "3BB3110000000128", "Atmel memory card AT88SC12816C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, - { "3BB3110000000256", "Atmel memory card AT88SC25616C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, - { "3BB7110081319043A5..............", "Siemens CardOS/M V1.4 (SLE44C80S)" }, - { "3BB7110081319043C517B09D19221E1F", "CryptoTech blank access/authentication card (Other)\nhttp://www.cryptotech.com.pl/" }, - { "3BB7110081319053B5..............", "CardOS EM/V1.4 (SLE44CR80S)" }, - { "3BB711008131FE432025854702202866", "Research Institute of Applied Information Technologies (Other)\nhttp://dodatok.osvita.net/" }, - { "3BB711008131FE4320283FB50320313B", "Research Institute of Applied Information Technologies (Other)\nhttp://dodatok.osvita.net/" }, - { "3BB718008131704310434E5452563253", "Avtor SecureToken (PKI)" }, - { "3BB718008131FE6553504B323490005A", "Giesecke & Devrient Starcos 2.4" }, - { "3BB71800C03E31FE6553504B3234900025", "G&D STARCOS SPK 2.4" }, - { "3BB794008131FE5553504B32329000E0", "Dresdner Bank (a German Bank) Key-Card for InternetBanking" }, - { "3BB794008131FE6553504B32329000D0", "Giesecke & Devrient STARCOS SPK2.2" }, - { "3BB794008131FE6553504B32339000D1", "Giesecke & Devrient Starcos 2.3\nDeutsche Bank WebSign (RSA-Card)\nG&D StarSign Token\nOsakidetza ONA (eID)\nhttp://www.osakidetza.euskadi.eus/r85-ckserv01/es/contenidos/nota_prensa/ruedasanidad35/es_rs/ruedasanidad35_c.html" }, - { "3BB813008131205D0057696E4361726402", "SmartCard for Windows 1.1" }, - { "3BB813008131FA524348544D4F494341A5", "citizen digital certificate (PKI)\nhttp://moica.nat.gov.tw/" }, - { "3BB897008131FE45FFFF148230502300F1", "UAE Emirates ID (eID)\nhttps://www.icp.gov.ae" }, - { "3BB89700813FE45FFFF148230502300F", "UAE Emirates ID (eID)" }, - { "3BB89700C00831FE45FFFF148230502300B8", "Infineon SECORA ID X (JavaCard)" }, - { "3BB918008131FE9E8073FF614083000000DF", "Serbian Identity Card\nThis is the new Serbian biometric identity card (every adult cityzen\nmust have). The chip contains owners picture, name, date and place\nof birth, current address, unique ID number and fingerprint." }, - { "3BB9940040144747334D4838353330", "T D1 GSM card (Telecommunication)" }, - { "3BB9940040144747334E4838363430", "GSM-SIM card of the Austrian mobile phone provider One\nhttp://www.one.at\nProximus SIM - Belgium (SetCOS?)\no2 GSM-SIM card Germany 2003" }, - { "3BBA11001000434C5F53414D00133800", "Planeta Informatica CL-SAM (Other)\nhttp://www.planeta.inf.br/" }, - { "3BBA11008131FE4D55454B41452056312E30AE", "AKIS v1.0 on infineon chip" }, - { "3BBA13008131865D0064050A0201318090008B", "Telesec TCOS 2 (SLE44)\nTCOS 2.0 (on CR80S)\nCryptokarte with RSA-Controller, T=1 Protocol" }, - { "3BBA14008131865D0064051402023180900091", "TCOS 2.0 (on CX160S)\nTelesec TCOS 2 (SLE66)" }, - { "3BBA14008131865D0064057B020331809000", "PHILIPS (HealthCare)" }, - { "3BBA14008131865D0064057B020331809000FF", "PHILIPS (HealthCare)" }, - { "3BBA14008131865D0064057B0203319000FF", "JCOP CARD (Other)" }, - { "3BBA94004014", "GG3RS732S0 ?" }, - { "3BBA9400401447473352533731365300", "Micro Sim MCP crew sim (Telecommunication)" }, - { "3BBA9400401447473352533731365320", "GSM SIM Elisa Estonia" }, - { "3BBA9400401447473352533731365330", "GSM-SIM Viag Interkom E2 Loop (1800MHz)\nGSM-SIM card of the Austrian A1\nhttp://www.a1.net/privat/home\nGSM SIM Radiolinja Estonia; 2005" }, - { "3BBA9400401447473353533731365330", "GSM SIM Cellway (e-plus), Germany (Telecommunication)" }, - { "3BBA95001080434C5F53414D00013811", "CLSAM (Transport)\nhttp://www.planeta.inf.br" }, - { "3BBA950081B1865D1F430064045C02033180900084", "T-Mobile Corporate ID Card" }, - { "3BBA96008131865D0064056002033180900066", "Telesec TCOS 2 (SLE66P)\nTCOS 2.0 (on CX320P)\nTeleSec Netkey Card" }, - { "3BBA96008131865D00640560020331809000667001040530C9", "TeleSec Netkey E4 Card" }, - { "3BBA96008131865D0064057B0203318090007D", "TeleSec NetKey Card\nDeutsche Post card (tcos)" }, - { "3BBB18008131FE4580670518B1020184008105E0", "STARCOS Smart Card (Other)\nhttps://www.gi-de.com/de/identities/unternehmenssicherheit/signaturkarte" }, - { "3BBB1800C01031FE4580670412B003030000810138", "Giesecke & Devrient Star Sign Card, STARCOS 3.0 DI, 72 KB, RSA2048 bit\nGiesecke & Devrient Smartc@fe Expert 32K v2.0" }, - { "3BBB1800C01031FE4580670412B00303000081053C", "Philips Smart MX\nSzczecin University of Technology in Poland student identity card (Elektroniczna Legitymacja Studencka = student identity card)\nCSOB bank, Czech Republic\nCATCert (Agencia Catalana de Certificacio) catalan government workers identity card" }, - { "3BBB1800C03E31FE654726442054534D20312E30B7", "Italian Tachograph Driver Card" }, - { "3BBC1800813120755A43332E313220524556204146", "ZeitControl BasicCard Enhanced 3.7\nhttp://www.basiccard.com/" }, - { "3BBC1800813120755A43332E313420524556204445", "ZeitControl BasicCard Enhanced 3.14 Rev D\nhttp://www.basiccard.com/" }, - { "3BBC1800813120755A43332E333220524556204247", "ZeitControl BasicCard (Other)\nhttps://ZeitControl" }, - { "3BBC1800813120755A43332E333420524556204447", "ZeitControl BasicCard Enhanced ZC3.34 (Other)\nhttps://www.zeitcontrol.de/en" }, - { "3BBC94004014474733483335585332303030", "GSM-SIM Era-PL\nT-Mobile GSM SIM Card" }, - { "3BBC94004014474733483335585632303030", "GSM SIM CARD 32K, Vodafone" }, - { "3BBC94004014474733493539424332303030", "GSM SIM Vodafona NL prepaid" }, - { "3BBC94004014474733493543414331303030", "Siemens SIM card" }, - { "3BBC94004014474733493731394332303020", "Telenor SIM card (Norway)" }, - { "3BBC94004014474733494231424331303020", "Telenor SIM (Telecommunication)" }, - { "3BBC94004014474733494231424331303030", "SIM Card (Scarlet, Belgium) (Telecommunication)\nhttps://www.scarlet.be/nl/prepaid/" }, - { "3BBC94004014474733533035315331303130", "GSM SIM (Tele2, Estonia)\nGSM SIM Elisa Estonia; 2007\nGSM SIM from 'fonic' Germany" }, - { "3BBC94004014474733533443454332303030", "Era-PL SIM Card (Telecommunication)" }, - { "3BBD110000414C4946415820503031523041", "alifax (HealthCare)" }, - { "3BBD18008131FE45805102670414B10101020081053D", "Austrian 'e-Card' (=Health Card)\nspecial Version of Starcos 3.1" }, - { "3BBD18008131FE45805102670518B102020201810531", "Austrian health insurance card 'e-card'" }, - { "3BBD18008131FE45805103670414B10101020081053C", "Austrian Health insurance card 'eCard' (HealthCare)\nhttp://www.chipkarte.at" }, - { "3BBE..000041052000............00009000", "CryptoMate64 USB Cryptographic token\nhttp://www.acs.com.hk/en/products/18/cryptomate64-cryptographic-usb-tokens/\nACS ACOS5-64 V2.00\nhttp://www.acs.com.hk/en/products/17/acos5-64-cryptographic-smart-card/" }, - { "3BBE1100004101102038000000000000000000", "ACOS2" }, - { "3BBE1100004101380000000000000000019000", "ACS (Advanced Card System) ACOS-1\nACOS3\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, - { "3BBE1100004101380000000000000000029000", "ACS (Advanced Card System) ACOS-1 8K" }, - { "3BBE1100004101380000010000000000019000", "ACOS3 Microprocessor Card (Contact) (Other)\nhttp://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, - { "3BBE1100004101380000030000000000019000", "ACS ACOS3-32 (Telecommunication)\nhttp://www.acos3.com/" }, - { "3BBE110000410138000004006275627A019000", "Advanced Card Systems ACOS3 (24k) V1.7\nhttp://www.acs.com.hk/index.php?pid=product&prod_sections=0&id=ACOS3" }, - { "3BBE1100004101380000050000000000029000", "ACS (Advanced Card System) ACOS2" }, - { "3BBE1100004101380100030000000000029000", "ACOS2 test card from ACS reading off a ACR38U" }, - { "3BBE1100004101380300040000000000019000", "ACOS 3 from ACS (Other)" }, - { "3BBE1100004101380400140000000000019000", "Dekart Smartcard Logon (eID)\nhttp://www.smartcardfocus.com/shop/ilp/se~81/dekart-smartcard-logon/p/index.shtml" }, - { "3BBE1100004101380400140000000000029000", "DEKART proprietary logon authentication solution for Windows (Other)\nhttp://www.dekart.com/products/" }, - { "3BBE1100004101380500070000000000029000", "EEPROM card (Other)" }, - { "3BBE11000041013817CE010000000000019000", "ACOS3 Contact Microprocessor Card (Other)\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, - { "3BBE1100004101382500030000000000019000", "8 pin (eID)" }, - { "3BBE1100004101384D800A8050524F56009000", "ACS (Advanced Card System) ACOS-3" }, - { "3BBE110000410138FF40000000000000019000", "Acos3 (zend) (eID)" }, - { "3BBE1100004107020000000000000000019000", "ACOS7 MOC Combi-Card (Other)\nhttp://www.acs.com.hk/en/products/123/acos7-moc-combi-card/" }, - { "3BBE1800004105..0000000000000000009000", "Advanced Card Systems (ACS) ACOS5 Cryptographic Smart Card" }, - { "3BBE1800004105100000000000000000009000", "ACS ACOS5 'ACOS5-32-G' dual card\nhttp://www.acs.com.hk/acos5.asp" }, - { "3BBE940040144747335333454441544C36303130", "SingTel hi! Prepaid GSM SIM UICC (Telecommunication)" }, - { "3BBE940040144747335333454841544C39313000", "Latvian GSM operator TELE2" }, - { "3BBE940040144747335333474841544C39313030", "simCard Vip Mobile(Serbia) or Telecom Austria (Telecommunication)\nhttp://www.vipmobile.rs/" }, - { "3BBE94008131FE3553504B3233205745353031364E4325", "G&D StarCOS SPK 2.3 secure element (Bank)" }, - { "3BBE9500004103000000000000000000029000", "touchatag SAM card\nSpanish University of Murcia smart ID card - Old version with CajaMurcia Banking card integrated (Maestro card) (M.Mar OS) - Also used by many others spanish universities\nACOS6 C6\nhttps://www.acs.com.hk/en/products/309/acos6-multi-application-purse-card-contact/\nACOS6S C7 SAM\nhttps://www.acs.com.hk/en/products/310/acos6-sam-secure-access-module-card-contact/" }, - { "3BBE96000041013802001D0000000000019000", "ACOS3-32 (Other)\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, - { "3BBE9600004103000000000000000000029000", "SAM inside the Tikitag reader from Alcatel-Lucent\nhttp://hackerati.com/post/57314994/rfid-on-the-cheap-hacking-tikitag" }, - { "3BBE9600004105004E46000000000000009000", "ACOS5-64 v3.00 (PKI)\nhttps://www.acs.com.hk/en/products/308/acos5-64-v3.00-cryptographic-card-contact/" }, - { "3BBE9600004105300000000000000000009000", "CryptoMate Nano USB Cryptographic token\nhttp://www.acs.com.hk/en/products/414/cryptomate-nano-cryptographic-usb-tokens/\nACS ACOS5-64 V3.00\nhttp://www.acs.com.hk/en/products/308/acos5-64-v3.00-cryptographic-card-contact/" }, - { "3BBE9600004206210000000000000000009000", "ESMART Token (PKI)\nhttps://esmart.ru/products/informatsionnaya-bezopasnost/smart-karty-esmart-token/" }, - { "3BBE9600801FC78031E073FE21136200..83819000..", "Vodafone (Italy) 128 kB GSM SIM card\nTIM (Italy) 128 kB GSM SIM card" }, - { "3BBF..008131FE5D0064040F03..31C073F701D0009000..", "TCOS 3.0 on Philips P5CD036" }, - { "3BBF..008131FE5D0064041103..31C073F701D0009000..", "TCOS 3.0 on Philips P5CT072" }, - { "3BBF..008131FE5D0064041503..31C073F701D0009000..", "TCOS 3.0 on Philips P5CD072" }, - { "3BBF..008131FE5D00640428030231C073F701D0009000..", "TCOS 3.0 release 2 on Philips P5CD080" }, - { "3BBF..008131FE5D0064056D03..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CX642P" }, - { "3BBF..008131FE5D0064058903..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CLX641P" }, - { "3BBF..008131FE5D0064058A03..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CLX640P" }, - { "3BBF..008131FE5D0064059103..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CX680PE" }, - { "3BBF11008131..4545504100000000........0000......", "Austrian Quick E-purse\nhttp://www.quick.at/" }, - { "3BBF11008131FE45455041000000000000000000000000F1", "a.sign premium signature card" }, - { "3BBF11008131FE454D434100000100016971850000000077", "Austrian 'easybank' branded Mastercard, issued 2007" }, - { "3BBF11008131FE454D434100000100020820510000000090", "austrian combined card of a mastercard and OBB Vorteilscard (Austrian Federal Railways)\nhttp://www.oebb.at/pv/de/Servicebox/VORTEILScard/Bezahlen_mit_der_VORTEILScard/VORTEILScard_MasterCard.jsp" }, - { "3BBF11008131FE454D43410000010002559133000000001E", "Mastercard (Paylife Austria)" }, - { "3BBF1100C01031FE44534D405254204341464520312E3143C1", "Giesecke&Devrient SmartCafe 1.1" }, - { "3BBF18008031703553544152434F5320533231204390009B", "Giesecke & Devrient STARCOS S2.1" }, - { "3BBF18008131705553544152434F532053323120439000FA", "Giesecke & Devrient STARCOS S2.1" }, - { "3BBF1800C02031705253544152434F5320533231204390009C", "Giesecke & Devrient SPK 2.1 C" }, - { "3BBF9300801FC68031E073FE2113576573746B2E6D65E3", "eSTK.me v1.2.5 or later (Telecommunication)\nhttps://eSTK.me" }, - { "3BBF9300803FC6828031E073FE2113576573746B2E6D6541", "eSTK.me v1.2.4 (Telecommunication)\nhttps://eSTK.me" }, - { "3BBF94008131FE65454C55204175737472696120312E3238", "A-Trust: trust-sign (Old Version, ca. 2002) for Digital Signature etc.\nA-Trust: a-sign-premium (ca. 2004) 'Burgerkarte' ('Citizen-Card')\nfor Identifikation, Digital Signature etc.\n('should be' Starcos 2.3)" }, - { "3BBF96008131FE5D0064........31C073F701D0009000..", "TCOS 3.0 / NetKey 3.0" }, - { "3BBF96008131FE5D00640411000031C073F701D0009000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, - { "3BBF96008131FE5D00640411030131C07301D000900000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, - { "3BBF96008131FE5D00640411030131C073F701D0009000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, - { "3BC5FF8131FB458073C6010000", "Japanese Individual Number Card (eID)\nhttps://www.kojinbango-card.go.jp/en/kojinbango/index.html" }, - { "3BC800000073C84000000000", "verve (Bank)" }, - { "3BCDFF8031FE450068D276000028040481009000CD", "Tachograph company test card (Transport)" }, - { "3BD096FF81B1FE451F032E", "New european health insurance card of the German health insurance (G2) (HealthCare)\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, - { "3BD096FF81B1FE451F072A", "German public health insurance card (,,Gesundheitskarte'), 2nd generation (G2), issuer Techniker Krankenkasse (HealthCare)\nhttps://gematik.de/cms/de/spezifikation/wirkbetrieb/kartengeneration2/kartengeneration2.jsp" }, - { "3BD096FF81B1FE451FC7EA", "German public health insurance card (Elektronische Gesundheitskarte eGK), 2nd generation (G2) (HealthCare)" }, - { "3BD097FF81B1FE451F072B", "German Elektronische Gesundheitskarte (eGK) (HealthCare) - From TK (HealthCare)\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, - { "3BD097FF81B1FE451FC7EB", "German Health Professional Card (eHBA) (HealthCare)\ngSMC-KT, STARCOS 3.6 (HealthCare)" }, - { "3BD0A8FF81F1FB24001FC3F4", "Philips DESFire SAM" }, - { "3BD218008131FE450101C1", "Dutch License Plate Card (RDW)\nhttps://commons.wikimedia.org/wiki/File:Kentekencard_voorzijde_1_december_2013.jpg" }, - { "3BD218008131FE58C90114", "Atos CardOS5 (PKI)\nhttp://atos.net/NR/rdonlyres/17C7BDD0-225B-4A58-B9A4-438EA3F3238A/0/74743_20120830_160149_cardos_v5_0__datenblatt_en.pdf" }, - { "3BD218008131FE58C90217", "Atos CardOS 5.3 (PKI)\nhttp://www.atos.net/cardos" }, - { "3BD218008131FE58C90316", "Austrian 'RKS-Card' issued by GlobalTrust (PKI)\nhttps://secure.globaltrust.eu/info-rksv.html" }, - { "3BD218008131FE58C90411", "Identity Card in Slovakia with security chip and e-signature issued after 2021-06-21 (eID)\nD-TRUST Card 4.1 Standard, qualified signature card" }, - { "3BD218008131FE58CA6076", "CardOS IoT V5.4 (PKI)\nhttps://atos.net/wp-content/uploads/2018/11/ct_181127_lpm_cardos_iot_v5-4_fs_en4_web.pdf" }, - { "3BD21802C10A31FE58C80D51", "Siemens Card CardOS M4.4" }, - { "3BD296FF81B1FE451F870102AB", "Electronic Vehicle Registration (eVR) from RDW.nl (The Netherlands), open sourced at [URL], demo (Windows / Linux Wine Mono) (Transport)\nhttps://github.com/eVRMTV/eVR" }, - { "3BD396FF81B1FE451F078081052D", "German public health insurance card (Elektronische Gesundheitskarte eGK), 2nd generation (G2) (HealthCare)" }, - { "3BD5180081313A7D8073C8211030", "Aladdin eToken NG-Flash with 256MB of flash memory\nAladdin eToken PRO (72KB)\nhttp://www.aladdin.com/etoken/devices/default.aspx" }, - { "3BD518008131FE7D8073C82110F4", "Bank of Lithuania Identification card\nGemalto SafeNet eToken Java Based Cards\nhttps://safenet.gemalto.com/multi-factor-authentication/authenticators/pki-usb-authentication/" }, - { "3BD518FF8091FE1FC38073C8211308", "Athena IDProtect (JavaCard 2.2.2)\nhttp://www.athena-scs.com/product.asp?pid=32\nThales nShield Security World Card - Remote Administration Ready\nhttps://www.thalesesecurity.fr/products/hsm-management-and-monitoring/nshield-remote-administration" }, - { "3BD518FF8191FE1FC38073C821100A", "ComSign digital signature card (eID)\nhttps://www.comsign.co.uk/" }, - { "3BD518FF8191FE1FC38073C8211309", "Athena IDProtect Key (v2)\nhttp://www.athena-scs.com/product.asp?pid=33" }, - { "3BD5950400AE01020101", "Axalto Cyberflex Access 64K v2b SM 1.1" }, - { "3BD595FF8091FE1FC38073C8211385", "Athena IDProtect - Cryptographic Java Card\nhttp://www.athena-scs.com/product.asp?pid=32" }, - { "3BD596028031FE654F734549441F", "AVR128DA32 microcontroller based open source EID smartcard with RSA and ECC. (eID)\nhttps://oseid.sourceforge.io/" }, - { "3BD596FF80B1FE451F878073C82110A4", "French national identity card (eID)\nhttps://en.wikipedia.org/wiki/National_identity_card_(France)" }, - { "3BD596FF8191FE1FC34332333030CC", "HID Global - Crescendo C2300 (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/c2300" }, - { "3BD6180080B1806D1F038051006110309E", "Atmel/Athena T0 PC/SC Compliance Test Card No. 1" }, - { "3BD618008131FE7D415350204F5383", "ASP FIXED CHAL1, 2, 3 and 4 (Other)" }, - { "3BD6180081B1807D1F038051006110308F", "ASECard Crypto\nhttp://www.athena-scs.com/product.asp?pid=8" }, - { "3BD6960081B1FE451F078031C1521118F8", "smart card from NASA, 2019 (PKI)" }, - { "3BD6960081B1FE451F878031C152211949", "DHS CAC card (PKI)" }, - { "3BD6960081B1FE451F878031C152411A2A", "Identiv SCR3310 v2.0 (eID)" }, - { "3BD6970081B1FE451F078031C1521118F9", "NASA Personal Identity Verification (PIV) card (eID)\nIDEMIA Cosmo V8.0 with a PIV applet" }, - { "3BD6970081B1FE451F078031C1521119F8", "Secure badge (PKI)" }, - { "3BD6970081B1FE451F878031C152211948", "DOS PIV (PKI)" }, - { "3BD6970081B1FE451F878031C152211A4B", "ID-One PIV 2.4 (P/N 1501381) from IDEMIA (Other)" }, - { "3BD6970081B1FE451F878031C152411A2B", "Oberthur Technologies ID-One PIV/CIV on V8 Device (eID)\nhttps://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2986.pdf\nIDEMIA Cosmo V8.1 with a PIV applet" }, - { "3BD71100400A654E434F533037", "eNCOS MC MChip Advance (Bank)" }, - { "3BD81800801F078031C1640806920F", "US Government CAC (PKI) / IDEMIA Cosmo v8 (PKI)\nhttps://www.idemia.com/id-one-piv-card" }, - { "3BD81800801F078031C1640806920FDF", "US DoD Common Access Card (IDEMIA Cosmo v8) (PKI)" }, - { "3BD8180080B1FE451F078031C1640806920FD5", "Oberthur Cosmo v8 (PKI)" }, - { "3BD818FF8131FE458064041BB42A8105D5", "Schweizerische Krankenversicherungskarte KVG (HealthCare)" }, - { "3BD818FF81B1FE451F038064041AB403810561", "D-Trust multicard advanced 3.1\nGerman public health insurance card ('Gesundheitskarte'), issuer SBK 'Siemens Betriebskrankenkasse'" }, - { "3BD896008031FE4400531200840F90001F", "Cape Verde National Identity Card (CNI) (eID)\nhttps://sniac.cv/cartao-nacional-de-identificacao/" }, - { "3BD8960081B1FE451F0743485447504B494ADD", "Citizen Digital Certificate, Taiwan (PKI)\nhttp://moica.nat.gov.tw/" }, - { "3BD896FF8131FE458064041BB42A81055B", "Swiss LAMal health insurance card" }, - { "3BD911008131FE8D0000464F4D53312E3132", "TFOMS (eID)\nhttp://www.samtfoms.ru" }, - { "3BD918008011F08054434F4C4482900062", "TransaXiom Janus Card (Other)\nhttp://www.transaxiom.co.uk" }, - { "3BD91800C00910FE5459464F4E45000000", "Tyfone's SideTap Card (NFC payments)" }, - { "3BD918FF8191FE1FC35441474C494F5049565B", "Taglio PIV C2190 (NXP JCOP 3 SecID P60 CS) (eID)\nhttps://www.taglio.com/pivcard.html" }, - { "3BD99400004D4502000901009000", "Moviestar. GSM SIM card (Telecommunication)" }, - { "3BD99400004D454576352E369000", "Vending Machine Card (Other)" }, - { "3BD99400004D4D41523331349000", "Vodafone Spain 64kb SIM card. GSM/3G networks" }, - { "3BD99500004D4516005401009000", "MTS Ukraine (Telecommunication)\nhttp://www.mts.ua/" }, - { "3BD996FF8131FE454352455343454E444FFF", "HID Global Crescendo JCOP 21 v2.4.1 R2 64K (PKI)" }, - { "3BD996FF8131FE458031B8738601E0810522", "German dentist's identity card (eID)\nhttp://www.medisign.de/" }, - { "3BD996FF8191FE1FC343323330302D4B4559BA", "Crescendo Key (USB Type-A) (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/crescendo-key" }, - { "3BDA11FF81B1FE551F0300318473800180009000E4", "Gnuk OpenPGP Token (PKI)\nhttps://www.fsij.org/category/gnuk.html" }, - { "3BDA11FF81B1FE551F0300318473800180059000E1", "Nitrokey Start (Openpgp USB) (Other)\nhttps://www.nitrokey.com/products/nitrokey-start" }, - { "3BDA13FF8131FB468012392F31C173C601C03B", "My Number Card (The Social Security and Tax Number System in JAPAN) (eID)\nhttp://www.cas.go.jp/jp/seisaku/bangoseido/english.html" }, - { "3BDA1802C10A31FE584B53776973735369676EA9", "SuisseID Post - ATOS CardOS 4.x (eID)\nhttps://postsuisseid.ch/" }, - { "3BDA18FF8191FE1FC350564A434F503353494472", "J3H145 (P6 SecID) purchased from FUTAKO Ltd., Taiwan (JavaCard)\nhttp://www.javacardsdk.com" }, - { "3BDA18FF8191FE1FC380641211111073C0C1801B", "Belarus national identity card (passport)\nhttps://eng.belta.by/infographica/view/id-cards-in-belarus-7095/" }, - { "3BDA18FF81B1FE451FC3546963546F6B20322E3068", "TikTok 2.0 (PKI)" }, - { "3BDA18FF81B1FE451FC3546963546F6B20332E3069", "TicTok 3.0 (PKI) (PKI)\nhttps://en.cryptoshop.com/products/cryptas-tictok-v3-basisartikel.html" }, - { "3BDA18FF81B1FE751F030031C573C001400090000C", "OpenPGP Card V2" }, - { "3BDA18FF81B1FE751F030031F573C001600090001C", "OpenPGP Card V3" }, - { "3BDA9400004D4D41524A2B33399000", "SIM card from Vodafone Spain" }, - { "3BDA9500400A2508004053434F535441", "Card used for issuing commodity to benificiary for rice, wheat and more (Other)" }, - { "3BDA96FF8031FE454D696E694C6F61646572AB", "iClass SE Processor (Miniloader Mode) (Other)\nhttps://www.hidglobal.com/products/embedded-modules/iclass-se/sio-processor" }, - { "3BDA96FF8031FE45536E6D704C6F61646572A8", "iClass SE Processor (SNMP Loader Mode) (Other)\nhttps://www.hidglobal.com/products/embedded-modules/iclass-se/sio-processor" }, - { "3BDA96FF8131FE45805631B85349434181057B", "STARCOS 3.5 ID ECC C1R (PKI)\nhttps://www.gi-de.com/fileadmin/user_upload/MS/Certificates/STARCOS35_ID_ECC_TABLES.pdf" }, - { "3BDA96FF8191FE1FC343323330302D46495053E2", "Crescendo 2300 FIPS (JavaCard)" }, - { "3BDA96FF81B1FE451F0780584943412056322E30E9", "Starcos chip card from Giesecke & Devrient (PKI)\nhttps://ica.cz/functionality-smart-card" }, - { "3BDB11FF5000FF0000000000000007921603", "NEC V-WAY64 v2.1" }, - { "3BDB1800801F030031C06477E303008290004F", "Oberthur ID-One Cosmo 64K V5.2" }, - { "3BDB18008031FE448059494465616C20312E367D", "ID card Albania (eID)" }, - { "3BDB180080B1FE451F830031C064C7FC1000019000FA", "Oberthur Cosmo V7 64K Dual/128K" }, - { "3BDB18FF8191FE1FC306092B06010401E9100503D7", "SafeSign Default QSCD (NXP JCOP 3 SecID P60) (PKI)\nhttps://www.tuv-nederland.nl/assets/files/cerfiticaten/2020/02/security-target-v1.0.pdf" }, - { "3BDB18FF8191FE1FC306092B06010401E9100504D0", "Serbian qualified electronic certificate issued by Serbian Post sertification centr (PKI)\nhttps://www.ca.posta.rs/serbian_post_ca.htm" }, - { "3BDB18FF81B1FE751F03504B436172642056312E30ED", "Tecos 3 card (Other)" }, - { "3BDB18FF81B1FE751F035A43372E35205245562041AE", "BasicCard Professional ZC7.5-COMBI (Other)\nhttp://www.basiccard.com/" }, - { "3BDB18FF81B1FE751F035A43372E36205245562044A8", "Zeitcontrol Professional BasicCard ZC 7.6 REV D (Other)\nhttp://www.zeitcontrol.de/en/products/basiccard/basiccard" }, - { "3BDB18FFC080B1FE751F035A43372E352052455620416F", "ZeitControl BasicCard ZC7.5 user-programmable dual interface smart card\nhttp://www.smartcardfocus.com/shop/ilp/id~380/BasicCard_ZC7_5_Dual_Interface/p/index.shtml" }, - { "3BDB18FFC080B1FE751F035A43372E352052455620426C", "BasicCard ZC7.5 dual-interface programmable smartcard (30K) (eID)\nhttps://secure.zeitcontrol.de/shop/Smart-card-BasicCard-Professional-ZC75-Combi" }, - { "3BDB18FFC080B1FE751F035A43372E352052455620446A", "Smart card BasicCard Professional ZC7.5, ZeitControl cardsystems GmbH\nhttp://www.zeitcontrol.de/en/products/chip-cards/processor-chip-cards/basiccard" }, - { "3BDB18FFC080B1FE751F035A43372E3620524556204469", "ZeitControl BasicCard 7.6 (Other)\nhttps://www.zeitcontrol.de/en/products/basiccard/basiccard" }, - { "3BDB9600801F030031C06477E30300829000C1", "Oberthur Card Systems (contactless pilot) ID-One Cosmo v5.2D 64K\nOberthur Card Systems (PIV Transitional) ID-One Cosmo v5.2D 72K\nCAC (Common Access Card)" }, - { "3BDB9600801F030031C064B0F3100007900080", "DoD CAC, Oberthur ID One 128 v5.5 Dual" }, - { "3BDB9600801F030031C064B0F310000F900088", "US Department of Veterans Affairs PIV" }, - { "3BDB9600801F830031C0641D18010001900051", "ID0One Cosmo Development Kit (JavaCard)" }, - { "3BDB96008031FE448059654944204E414452418F", "Pakistan ID card (eID)" }, - { "3BDB960080B1FE451F830012233F536549440F9000F1", "Estonia ID-card (eID)\nhttps://id.ee" }, - { "3BDB960080B1FE451F830012428F536549440F900020", "Latvia eID (eID)\nhttps://www.eparaksts.lv/lv/" }, - { "3BDB960080B1FE451F830031C064102301000F900063", "Extremenian Health Service target (HealthCare)\nhttps://saludextremadura.ses.es/web/preguntas-frecuentes" }, - { "3BDB960080B1FE451F830031C0641A1801000790005A", "Ercom CRYPTOSMART\nhttp://www.ssi.gouv.fr/entreprise/qualification/gamme-cryptosmart-pour-la-securisation-des-smartphones-et-des-tablettes/" }, - { "3BDB960080B1FE451F830031C0641A1801000F900052", "Serbian Car registration ID card\nhttp://blog.goranrakic.com/archives/2011/07/citanje_saobracajne_dozvole_sa_cipom.html" }, - { "3BDB960080B1FE451F830031C0641A71010007900033", "ChamberSign Gemalto USB Shell Token V2 - Certificate Audacio ** (eID)\nhttp://www.chambersign.fr/certificat-rgs-audacio/" }, - { "3BDB960080B1FE451F830031C064B0FC100007900005", "Oberthur Cosmo V7 debug card (SDK)" }, - { "3BDB960080B1FE451F830031C064B0FC10000F90000D", "ID-One PIV (that's the only non-numeric identifying mark) (PKI)" }, - { "3BDB960080B1FE451F830031C064BAFC10000790000F", "Oberthur ID-One Cosmo v7.0 80K (eID)\nhttps://www.ssi.gouv.fr/uploads/IMG/certificat/ANSSI-CC-cible_2011-64en.pdf" }, - { "3BDB960080B1FE451F830031C064BAFC10000F900007", "Oberthur ID-One Cosmo v7.0 (PKI)\nhttps://csrc.nist.rip/groups/STM/cmvp/documents/140-1/140sp/140sp1236.pdf" }, - { "3BDB960080B1FE451F830031C064BE1B0100019000FB", "Bank card" }, - { "3BDB960080B1FE451F830031C064C30801000F90009B", "SIM Aruba (Italian provider)" }, - { "3BDB960080B1FE451F830031C064C7FC100001900074", "Oberthur Cosmo (eID)\nhttp://www.stampit.org" }, - { "3BDB960080B1FE451F830031C064C7FC10000F90007A", "Guatemalan ID Card\nhttp://www.renap.gob.gt/" }, - { "3BDB960080B1FE451F830031C164084022300F90000A", "Oberthur v7 - in a Gemalto (was Gemplus) GemPC Key SmartCard Reader (grey USB dongle) - bought at ChamberSign (PKI)" }, - { "3BDB960080B1FE451F830031E85427E6040007900084", "Polish encard (eID)" }, - { "3BDB960080B1FE451F830031E85427E604000F90008C", "Token card from iBRE CompanyNet (mbank) (Bank)" }, - { "3BDB960080B1FE451F834553544F4E49412D65494455", "Estonian Identity Card (ID-One Cosmo v8.1) (eID)" }, - { "3BDB960080B1FE451F870031C1640958223607900019", "Idemia Solvo Fly 40 (JavaCard)" }, - { "3BDB960081B1FE451F0380F9A0000003080000100018", "Oberthur CS PIV End Point v1.08 FIPS201 Certified" }, - { "3BDB960081B1FE451F0380F9A0000003480000000149", "Fly Clear card" }, - { "3BDB960081B1FE451F8380F9A0000003080000100098", "Oberthur Cosmo v7 128K with PIV applet\nhttp://www.smartcardfocus.com/shop/ilp/id~410/p/index.shtml" }, - { "3BDB96FF80B1FE451F870031C164093364490F9000BC", "cnie Carte Nationale d'Identite Electronique (eID)" }, - { "3BDB96FF80B1FE451F870031C164093772130F9000F4", "French ID Card 2021 (eID)\nhttps://ants.gouv.fr/nos-missions/les-titres-produits-par-l-ants/les-documents-d-identite/la-puce-de-la-nouvelle-carte-nationale-didentite" }, - { "3BDB96FF8131FE4580670534B50201064081051B", "SINA STARCOS 3.5 BX-CombiCard+HSB (Other)" }, - { "3BDB96FFC01031FE4580671501B403000900810521", "Digital Tachograph Card for Professional Driver\nolish driver card for digital tachograph" }, - { "3BDC1802C10A31FE588031A873B0019B2460071320AA", "Public Services Card | Ireland (Other)\nhttps://psc.gov.ie/" }, - { "3BDC18FF8011C18073C821136605036351000232", "GoTrust Idem Card (Other)\nhttps://www.gotrustid.com/idem-card" }, - { "3BDC18FF8091FE1FC38073C8211366010B0352000539", "Digital Signature Costa Rica (eID)" }, - { "3BDC18FF8091FE1FC38073C821136602040355000235", "ST security module for German smart meter gateway (JavaCard)\nhttps://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03109/TR-03109-2-Anforderungen_an_die_Funktionalitaet.pdf?__blob=publicationFile&v=3" }, - { "3BDC18FF8111C18073C821136605036351000233", "GoTrust Idem Key (Other)\nhttps://www.gotrustid.com/idem-key" }, - { "3BDC18FF8111FE8073C82113660106013080018D", "Aladdin R.D. JaCarta LT (eID)" }, - { "3BDC18FF8191FE1FC3060A2B06010401E910050103D2", "DoD (Other)\nhttps://cps.ca.pkidefensie.nl/" }, - { "3BDC18FF8191FE1FC3060A2B06010401E910050203D1", "Caregiver card for Dutch Medical System called UZI (Unieke Zorgverlener Identificatie, Caring Unique Identification) (HealthCare)\nhttps://www.uziregister.nl/" }, - { "3BDC18FF8191FE1FC3060A2B06010401E910050204D6", "UZI (HealthCare)" }, - { "3BDC18FF8191FE1FC38073C821136601060130040155", "Athena IDProtect Key Laser" }, - { "3BDC18FF8191FE1FC38073C821136601061159000128", "JaCarta (PKI)\nhttp://www.aladdin-rd.ru" }, - { "3BDC18FF8191FE1FC38073C8211366010B0352000538", "Athena IDProtect Smart Card Logon Card" }, - { "3BDC18FF8191FE1FC38073C821136605024258000279", "NXP Athena SCS (PKI)" }, - { "3BDC18FF8191FE1FC38073C821136605036057000255", "NXP IDProtect (X) (JavaCard)" }, - { "3BDC18FF8191FE1FC38073C821136605036351000250", "JCOP3 SecID P60 CS (JavaCard)" }, - { "3BDC96FF8111FE8031C8544356300573FFA1C03B", "NXP Javacard with Athena SCS OS (JavaCard)" }, - { "3BDC96FF8111FE8031C8544356350773FFA1C03C", "NXP JCOP 4, J3R200P0X3U/0ZA16CP NXD6.2 (JavaCard)" }, - { "3BDC96FF81B1FE431FC30B46415245474F53414D5632CC", "Multismartcard SAM (used in proprietary Scheidt&Bachmann Smartcard Reader v2)" }, - { "3BDD18008131FE4580F9A0000000770100700A90008B", "National ID Card of Peru issued by RENIEC from Oberthur" }, - { "3BDD18008131FE4580F9A000000077010800079000FE", "Oberthur Cosmo v7 IAS ECC\nBrazilian 'e-CNPJ' card, issued by Certisign (Oberthur)" }, - { "3BDD18008131FE45904C41545649412D65494490008C", "Identity card (eID) Republic of Latvia\nhttp://www.pmlp.gov.lv/lv/pakalpojumi/passes/eid.html" }, - { "3BDD18008191FE1FC3006646530803003671DF00008097", "Feitian K9Plus - ePass FIDO-NFC with PIV (Other)\nhttps://ftsafe.com/products/FIDO/NFC" }, - { "3BDD18FF8191FE1FC3006646530803003671DF00008068", "Feitian FIDO NFC Plus K9 Security Key (Other)\nhttps://www.ftsafe.com/products/FIDO/NFC" }, - { "3BDD18FF8191FE1FC3FF4F70656E506879736963616CF6", "Open Physical PIV-Compatible NXP SECID P60 (eID)\nhttps://openphysical.org/" }, - { "3BDD18FFC080B1FE451FC30068D276000028040411009000C9", "Russian Federation driver card for the digital tachograph\nPolish driver card for digital tachograph" }, - { "3BDD18FFC080B1FE451FC30068D276000028040971009000A4", "Worktime/driving style monitoring card (Transport)\nhttp://www.paetronics.fi/en/" }, - { "3BDD96008010FE8031806301FFC073B3211B8105", "BIFIT iBank 2 USB Key (Bank)\nhttp://bifit.ua" }, - { "3BDD96008031FE450031B8640429ECC1739401808248", "Finnish Digital and Population Services Agency Organisation Card (eID)\nhttps://dvv.fi/en/organisation-cards" }, - { "3BDD960080B1FE451F8380640503040056564453414554FC", "VASCO DIGIPASS KEY 101 (Other)" }, - { "3BDD96008131FE4580F9A00000007701080007900070", "IDEMIA Cosmo v8.1-n (JavaCard)" }, - { "3BDD96FF801F034E5850204E53434F5320342E3006", "SCOSTA (Transport)" }, - { "3BDD96FF8131FE4580595F5374645F496E697481059B", "Karta kryptograficzna cryptoCertum 3.5 (PKI)\nhttps://www.certum.pl/pl/karty-do-czytnikow/" }, - { "3BDD96FF81B1FE451F03006404050803739621D0009000C9", "German public health insurance card ('Gesundheitskarte'), issuer Techniker Krankenkasse" }, - { "3BDD96FF81B1FE451F03006404050A02739621D0009000CA", "German public health insurance card ('Gesundheitskarte'), issuer Techniker Krankenkasse, issued 02/15 (HealthCare)" }, - { "3BDD96FF81B1FE451F030064057310A673D621C000900053", "New european health insurance card of the German health insurance" }, - { "3BDD96FF81B1FE451F038031B052010364041BB42281051B", "Austrian Motor Vehicle Registration Certificate (Transport)" }, - { "3BDD96FF81B1FE451F038031B052020364041BB422810518", "Austrian 'e-card' G3 (State Health Insurance Card)\n(running StarCOS 3.4 by Giesecke & Devrient)" }, - { "3BDD97FF81B1FE451F03006404050803739621D0009000C8", "German 'eGK' (State Health Insurance Card)" }, - { "3BDD97FF81B1FE451F0300640405080373969621D00090C8", "German public health insurance card ('Gesundheitskarte'), issuer Knappschaft" }, - { "3BDD97FF81B1FE451F03006404050A02739621D0009000CB", "German Elektronische Gesundheitskarte (eGK) (HealthCare)\nhttp://www.bmg.bund.de/en/health/the-electronic-health-card.html\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, - { "3BDE11000049434F5335330000000000000008", "MyKID (eID)" }, - { "3BDE13000049434F5335330000000000000008", "Malaysian citizens under age of 12 including newborns (non-compulsory) (eID)\nhttps://en.wikipedia.org/wiki/Malaysian_identity_card#MyKid" }, - { "3BDE18FF8191FE1FC38031815448534D317380214081071C", "SmartCard-HSM 4K USB-Token (JavaCard)\nhttps://www.smartcard-hsm.com/features.html#usbstick" }, - { "3BDE18FF81F1FB34001F074445534669726553414D56312E30D2", "Mifare Desfire SAM Module" }, - { "3BDE18FF81F1FE43003F078344455346697265382053414D2D5817", "NXP SAM" }, - { "3BDE18FFC080B1FE451F034573744549442076657220312E302B", "Estonian Identity Card (EstEID v1.0 2006 cold)" }, - { "3BDE86FF9101F1FB34001F074445534669726553414D56312E305D", "Mifare Desfire SAM Module (after warm reset) (Other)" }, - { "3BDE96FF8191FE1FC38031815448534D3173802140810792", "SmartCard HSM (PKI)\nhttps://www.smartcard-hsm.com/" }, - { "3BDE98FF8191FE1FC38031815448534D3173802140810792", "Nitrokey HSM 2 (PKI)\nhttps://docs.nitrokey.com/hsm/" }, - { "3BDF1100400A003180718666654E434F5331839000", "eNCOS MC MChip Advance V10 (Bank)\nhttps://tr.iccore.tech/" }, - { "3BDF18008131FE580031B964050E010073B401D300000022", "Identity Card in Slovakia with security chip and e-signature" }, - { "3BDF18008131FE588031905241016405C903AC73B7B1D444", "a.sign RK CHIP with certificate\nhttps://www.a-trust.at/webshop/Detail.aspx?ProdId=2021" }, - { "3BDF18008131FE588031B05202046405C903AC73B7B1D422", "Austrian 'e-Card' (=Health Card) of the 4th generation. (HealthCare)" }, - { "3BDF18008131FE58AC31B05202046405C903AC73B7B1D422", "e-Card Austria (HealthCare)" }, - { "3BDF18008131FE67005C49434DD49147D276000038330058", "Infineon SICRYPT Card Module D4 PC/SC Compliance Test Card" }, - { "3BDF18008131FE67005C49434DD49147D277000038330059", "Infocrypt Token++ (PKI)\nhttps://tokenplus.ru/products/%D0%A2%D0%BE%D0%BA%D0%B5%D0%BD/" }, - { "3BDF18008131FE7D006B020C0182011101434E53103180FC", "Italian healthcare card (TS) National Service Card (CNS) (HealthCare)" }, - { "3BDF18008131FE7D006B040C0184011101434E53103180FC", "Italian healthcare card (TS) National Service Card (CNS) (HealthCare)\nhttp://www.regione.toscana.it/cartasanitaria\nhttps://www.agid.gov.it/it/piattaforme/carta-nazionale-servizi" }, - { "3BDF18008131FE7D006B150C0180011101434E53103180E9", "Provider: Actalis S.p.A.\ncode: AT00006181\nhttp://www.actalis.it" }, - { "3BDF18008131FE7D006B150C0181011101434E53103180E8", "Italian healthcare card (TS) National Service Card (CNS)\nCarta Regionale dei Servizi - Regione Lombardia\nTuscany TS-CNS\nhttp://www.regione.toscana.it/cartasanitaria" }, - { "3BDF1801C04031FC7580738421E0694D54434F537302050516", "German digital tachograph control card (Transport)" }, - { "3BDF18FF8091FE1FC3003138644790ECC273140150829000BB", "Ministry of Interior - France 'Agent Card' (Other)" }, - { "3BDF18FF8131FE4580590180484944433730307300011B33", "Crescendo C700 + MiFare 4K\nhttp://www.smartcardfocus.com/shop/ilp/id~265/p/index.shtml" }, - { "3BDF18FF8191FE1FC3003138644790ECC273140150829000BA", "Card store authentication and signature keys (JavaCard)\nhttps://ants.gouv.fr/Les-titres/Cartes-Agents/Adhesion/Telechargement-et-support" }, - { "3BDF18FF8191FE1FC30031B8640000EC0073940000829000FE", "NXP Jcop3 P60 ChipDoc v7b4 (JavaCard)\nhttps://www.javacardos.com/store/products/10029" }, - { "3BDF18FF8191FE1FC30031B86404216010739401C005900001", "Dutch Governement Identity Card using physical (eID)\nhttps://nl.wikipedia.org/wiki/Rijkspas" }, - { "3BDF18FF8191FE1FC30031B8640C01ECC173940180829000B3", "ebee card\nhttps://www.ebeeoffice.ca/ebee-home/public\nDigital Signature Costa Rica (issued since 09/2019) (eID)\nhttps://www.mifirmadigital.go.cr/" }, - { "3BDF18FF81B1FE451F870031B96409377213738401E00000008E", "Slovak eID card with dual (NFC and physical) interface. It is Cosmo v9.2. The card is used for electronic identification and for electronic signing with either qualified or just electronic signing certificate. (eID)" }, - { "3BDF18FF81F1FE43001F034D494641524520506C75732053414D98", "Mifare SAM AV2" }, - { "3BDF18FF81F1FE43003F03834D494641524520506C75732053414D3B", "NXP SAM AV2 module" }, - { "3BDF18FF81F1FE43003F03834D4946506C75732053414D3B53414D3B", "Mifare SAM -AV2 (PKI)" }, - { "3BDF18FF81F1FE43003F07834D49464152452053414D204156333011", "NXP SAM AV3 module" }, - { "3BDF18FF910131FE4680319052410264050200AC73D622C099", "Acos-ID (AUSTRIACARD's Operating System) (Other)\nhttps://www.austriacard.com/digital-security/solutions/card-solutions/acos-id/" }, - { "3BDF94FFC080B1FE451F03006AD2760000280415FA10040090006B", "UK Digital Tacho card (Other)" }, - { "3BDF94FFC080B1FE451F03006AD2760000280415FA40040090003B", "DVLA Company Card (Transport)" }, - { "3BDF9500801F878031A073FF21006345B105830F900060", "FUTURE CARD Normal ISO SIM (Telecommunication)" }, - { "3BDF9500801F878031A073FF21006345B309830F90006E", "Card Mobilis Algeria telecom (Telecommunication)\nhttp://www.mobilis.dz" }, - { "3BDF9500801FC38031E073FE211B674C455441323135BD", "SK Telecom SIM card (in Korea) (Telecommunication)\nhttp://www.sktelecom.co.kr/" }, - { "3BDF95FF8091FE1FC349445044554F33475049544356008029", "Generic Card NFC (eID)" }, - { "3BDF95FF8091FE1FC38025A0000000685319000173C8211329", "CardLogix Credensys-J Contacted Java Card 2.2.1 Global Platform 2.1.1 (Atmel AT90SC12872RCFT)\n(bank)" }, - { "3BDF96008031FE450031B864041FECC173940180829000EC", "Ministry of Interior - France 'Agent Card'\n(Carte Agent du Ministere de l'Interieur Francais)" }, - { "3BDF96008031FE450031B8640429ECC173940180829000DA", "Finnish identity card given by the City of Helsinki to all members of city council, board and commitees" }, - { "3BDF960080B1FE451F830012276F5741495242555331079000EA", "IDEMIA ID-One Cosmo V8.2 IAS ECC card (eID)" }, - { "3BDF960080B1FE451F838073BC9180F9A00000007780080201A4", "Latvian eSignature card (eID)\nhttps://www.lvrtc.lv/e-signature.html" }, - { "3BDF960080B1FE451F870031C16408923201738421E0059000C5", "Company Card for Transport companies (Transport)" }, - { "3BDF96008131FE4541434F532D4944303032382E3031366F", "Sri Lankan driving license [ web: motortraffic.gov.lk ] (eID)\nhttp://www.motortraffic.gov.lk/web/index.php?option=com_content&view=article&id=83&Itemid=140&lang=en" }, - { "3BDF96008131FE588031B05202056405A100AC73D622C020", "Austrian health insurance card 'e-card' (HealthCare)\nhttps://de.wikipedia.org/wiki/E-card_(Chipkarte)" }, - { "3BDF960081B1FE451F838073CC91CBF9A0000003080000100079", "Test PIV Cards available for sale from NIST\nhttp://csrc.nist.gov/groups/SNS/piv/testcards.html" }, - { "3BDF960090103F07008031E0677377696363000073FE2100DC", "swsim (Telecommunication)" }, - { "3BDF96FF8131FE455A018048494443313158587300011B09", "HID Crescendo iCLASS Px G8H" }, - { "3BDF96FF8131FE4580590180504956434C41537300011BDE", "HID Global pivCLASS v1.0 (PKI)\nhttp://www.hidglobal.com/products/cards-and-credentials/pivclass/pivclass-smart-card" }, - { "3BDF96FF8131FE45805B44452E42415F53433335328105B5", "Employee ID card from the Federal Employment Agency (Germany) (PKI)\nhttps://www.pki.arbeitsagentur.de/" }, - { "3BDF96FF8131FE45805B44452E424E4F544B3130308105A0", "BeA - Certification Card for German Solicitors (Other)\nhttps://bea.bnotk.de/" }, - { "3BDF96FF81B1FE451F870031B96409377213738401E000000000", "National Identity Card of Slovakia (eID) (eID)\nhttps://en.wikipedia.org/wiki/Slovak_identity_card" }, - { "3BDF96FF910131FE4680319052410264050200AC73D622C017", "Acos-ID (AUSTRIACARD's Operating System) (Other)\nhttps://www.austriacard.com/digital-security/solutions/card-solutions/acos-id/" }, - { "3BDF97008131FE588031B05202056405A100AC73D622C021", "Austrian healthcare insurance identification card (HealthCare)\nhttps://www.chipkarte.at" }, - { "3BDF970081B1FE451F838073CC91CBF9A0000003080000100078", "NASA PIV Card (Other)" }, - { "3BE000008131104505", "Emoney indonesia (Bank)" }, - { "3BE000008131204030", "SmarTEC" }, - { "3BE000FF8131FE4514", "'JUKICARD', digitally sign tax documents in Japan" }, - { "3BE20000402049..", "Schlumberger Cryptoflex 4k" }, - { "3BE2000040204905", "Schlumberger Cryptoflex DES" }, - { "3BE2000040204906", "Schlumberger Cryptoflex" }, - { "3BE2000040204907", "Schlumberger Cryptoflex Key Generation" }, - { "3BE200FFC11031FE55C8029C", "Aladdin eToken PRO (USB token)\nSiemens CardOS M4.0" }, - { "3BE300FF9181712644000113202D", "Metrebus Card\n(used in Rome to store personal information and Atac subscription.\nAtac is the public transport company of the city of Rome.)\nhttp://www.atac.roma.it/smart/smart.asp?A=2&S=22&PR=4&LNG=2" }, - { "3BE500008121459C100100800D", "BIN 470132 -- BANK OF AMERICA VISA DEBIT -- GEMALTO MGY 0 U1090788B - 12/14 F8 00 89 (Bank)" }, - { "3BE500008131FE45D00037008089", "ATM card for Standard Chartered, Taiwan" }, - { "3BE500FF8131FE458073C601082D", "MUFG (.jp) (Bank)" }, - { "3BE6000080318066B1A30401110B83", "Java Jcop J2A040 (JavaCard)" }, - { "3BE6000080318066B1A30401110B83009000", "VISA Credit Card (Bank)" }, - { "3BE60000812145324B010101017A", "Axalto Cyberflex Palmera V5" }, - { "3BE600FF8131FE4544492030324D70", "Alior Sync (Poland) - MasterCard Debit Card with PayPass (Bank)\nMasterCard Contactless Debit Card issued by Raiffeisen Bank in Czech Republic\nDebit MasterCard with paypass issued by Bank Zachodni WBK (Poland)\nDebit MasterCard with paypass issued by AliorSync" }, - { "3BE600FF8131FE454449203032566B", "VISA credit card (DKB)" }, - { "3BE600FF8131FE454A434F50303307", "IBM JCOP 30/16" }, - { "3BE600FF8131FE454A434F50313005", "IBM JCOP 10/16\nRental card for Blockbuster, Taiwan" }, - { "3BE600FF8131FE454A434F50323006", "IBM JCOP 20/16\nIBM JCOP20 with MIFARE\nor Datakey Smart Card Model 330J\nhttp://www.datakey.com/products/smart_cards/products_sc_330j.shtml" }, - { "3BE600FF8131FE454A434F50323107", "IBM JCOP ID21" }, - { "3BE600FF8131FE454A434F50333007", "Mifare ProX T=1" }, - { "3BE600FF8131FE454A434F50333106", "IBM JCOP 30/31bio (contact interface)" }, - { "3BE700008131FE4200639531059000B9", "Chunghwa Post Co., Ltd. Visa Debit Card (Bank)\nhttp://www.post.gov.tw/post/internet/U_english/index.jsp?ID=24030107" }, - { "3BE70000918131FE410110300100908049", "'FirmenTicket' from the 'Rheinbahn' for the 'VRR'\nits a ticket corporates can buy for their employees. so its called\n'FirmenTicket'. 'Rheinbahn' is the local service operator for the\nmass traffic in and around duesseldorf/germany. 'VRR' is traffic\nnetwork spanning over at least a big part of north rhine westphalia\n(Verkehrsverbund Rhein-Ruhr)\nhttp://www.vrr.de/de/tickets_und_tarife/vielfahrer/firmenticket/index.php" }, - { "3BE700FF8131FE454430382E30203657", "EMV (MasterCard) card, issued by Raiffeisen Bank in Russia\n'Deutsche Kreditbank AG' Visa Card produced by AustriaCard GNC\nAll cards (MasterCard, Maestro, VISA Electron) issued by Raiffeisen Bank in Romania\nEMV (MasterCard) Card, issued by Raiffeisen Bank in Czech Republic" }, - { "3BE700FF8131FE454430382E31203656", "WinWin Austria Player-ID-Card (Other)\nhttps://www.winwin.at/" }, - { "3BE700FF8131FE454430382E32203655", "Mastercard (Bank)" }, - { "3BE700FF8131FE454D43412038203652", "Mastercard credit card issued by 'PayLife Bank GmbH'.\nBank number is '5266' - Bawag PSK." }, - { "3BE700FF8131FE458031C073C62148BE", "Japanese ETC (Electronic Toll Collection System) card (Transport) and Credit card (Issuer: Toyota) (Transport)" }, - { "3BE700FF81B1FE451F018031C073C6214820", "Japanese ETC (Electronic Toll Collection System) card (Transport)" }, - { "3BE8000040FA0073C84011009000", "KEBTechnology KONA USB SmartCard (Other)" }, - { "3BE800008031FE450073C8401300907DE7", "National Health System of Spain - Consejeria de Sanidad y Servicios Sociales - JUNTA DE EXTREMADURA (HealthCare)\nhttps://www.juntaex.es/es/lajunta/consejo-de-gobierno/vicepresidencia-segunda-y-consejeria-de-sanidad-y-servicios-sociales/servicio-extremeno-de-salud" }, - { "3BE80000813120450073C8400000900056", "Visa credit card for Standard Chartered, Taiwan" }, - { "3BE800008131FE00506572736F53696DAA", "Simulated virtual smartcard, from project PersoSim (eID)\nhttps://persosim.de/?q=node/33" }, - { "3BE800008131FE450073C8400000900088", "VISA Card (Skandinaviska Enskilda Banken) with Swedish BankID\nVISA card (Chinatrust Bank (Taiwan), dual-interface card with a Taipei Metro e-purse function)" }, - { "3BE800008131FE454A434F50763234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, - { "3BE800008131FE454A434F5076323431B4", "VISA Debit card for NAB, Australia" }, - { "3BE800FF8131FE43AA00000000000000B0", "Secure Signing Token (eID)" }, - { "3BE800FF8131FE45434C6169726520361A", "DKB Visa card with PayWave" }, - { "3BE90000812145454D565F41545220066C", "VISA card, issued by HVB Bank Czech Republic or austrian BankAustria\nhttp://www.hvb.cz" }, - { "3BE900008121454D435F5F494E46200665", "MasterCard Credit card issued by SpareBank1 in Norway\nhttp://www.sparebank1.no" }, - { "3BE900008121455649535F494E46200678", "VISA card, issued by the Austrian 'Raiffeisen' bank\nhttp://www.raiffeisen.at/\nVisa Card - Maximum - Oyak Bank / Turkey\nVISA, issued by Austrian bank 'Erste Bank'\nVISA card, issued by the Latvian bank 'Latvijas Krajbanka'" }, - { "3BE900008131C345996374691999125610EC", "Compunicate Technologies Inc. (Pay TV)\nhttp://www.cti.com.cn/en/product.aspx?m=20140731165252850216" }, - { "3BE900008131FE00FF506572736F53696D54", "German PersoSim (eID)\nhttps://persosim.secunet.com/en/" }, - { "3BE900008131FE4543443169A90000000014", "Mastercard credit card, UBS Switzerland (Bank)" }, - { "3BE900008131FE45434432690900000000B7", "Swiss UBS MasterCard Creditcard" }, - { "3BE900008131FE45454D5620303320200699", "Visa credit card\nMasterCard credit card" }, - { "3BE900008131FE45454D5630325F34530680", "Maestro Card issued by 'First Investment Bank' in Bulgaria\nhttp://fibank.bg/\nVisa Electron card: TATRA BANKA, a.s." }, - { "3BE900008131FE454A434F503130563232A3", "ORGA Open Platform DES 16k V2.0 / JCOP10" }, - { "3BE900008131FE454A434F503234325232A0", "NXP J3D081 (JavaCard)" }, - { "3BE900008131FE454A434F503331563232A0", "JCOP 31 / 72k" }, - { "3BE900008131FE454A434F503431563232A7", "IBM JCOP v2.2 41" }, - { "3BE900008131FE454D434120303320200688", "PayLife Gold MasterCard -- an unbranded version of the master card" }, - { "3BE900FF8131FE45434C6169726532203629", "UB(SK) Visa Vusiness card with PayWave (Bank)\nhttps://www.vub.sk/en/companies-entrepreneurs/cards/debit-cards/visa-business/" }, - { "3BE900FF8131FE45434C6169726533203628", "BZ WBK Mastercard (Bank)" }, - { "3BE900FFC11031FE5500640500C80231800047", "Identity card of Italian Republic" }, - { "3BE900FFC11031FE55C80120504E34303132AD", "Siemens CardOS/M 3.0 (SLE66CX160S)" }, - { "3BEA0000813120438065A2........72D6....", "IDClassic 3XX Cards (with MPCOS Applet)" }, - { "3BEA0000813120438065A20101013D72D643A5", "GemXpresso Pro R3 32PK (MPCOS, T=1) (warn reset)" }, - { "3BEA00008131FE450031C173C840000090007A", "Nigerian eID Card (cold reset)\nChip is NXP JCOP 2.4.1R3\nDual BCR Signum Mastercard (bank) + Digital Signature Costa Rica (eID)\nhttps://bancobcr.com/wps/portal/bcr/bancobcr/personas/tarjetas/signum_firma_digital/" }, - { "3BEA00008131FE45436F6D624F5320494900FE", "UBS VISA Gold Card\nMasterCard from lhv.ee\nNordea Bank Finland PLC Estonian Branch (ABnote)" }, - { "3BEA00008131FE454A434F5033315632333290", "NAB VISA Debit card" }, - { "3BEA00008131FE454A434F5034315632323195", "HID Crescendo C700\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/c700" }, - { "3BEA00FF813120750064051401023100900027", "GCOS-MDK" }, - { "3BEA00FF8131FE455455422D434B010301007B", "Technische Universitat Berlin - Campus Karte\nMaybe Sm@rtCafe Expert 2.0 (Giesecke & Devrient)\nor GemXpresso 211 PK (Gemplus)\nIncludes a Mifare-Chip (1 KB - Memory-Chip)" }, - { "3BEB0000813120454A434F503331333647445478", "card for testing (eID)" }, - { "3BEB0000813142454E4C436853434B303430312B", "Dutch University accesscard & Electronic purse & telphone card" }, - { "3BEB0000813142454E4C4368697070657230310A", "Dutch Post (Chipper)" }, - { "3BEB00008131FE450031C0643F680102079000B6", "Chris firstbank (Bank)" }, - { "3BEB00008131FE450031C0643F6801020F9000BE", "VISA Debit card for Taishin International Bank, Taiwan (Bank)" }, - { "3BEB00008131FE450031C0643F680108079000BC", "Debit Mastercard of Mega ICBC, Taiwan (Bank)\nhttps://www.megabank.com.tw/en-us/english/credit-card" }, - { "3BEB00008131FE450031C064A9EC010082900023", "Junta de Extremadura (Spain) public healthcare card (HealthCare)\nhttps://saludextremadura.ses.es/web/preguntas-frecuentes" }, - { "3BEB00008131FE45436F6D624F5320312E3015C5", "Reka Card - Swiss Holiday Member Card (Loyalty)\nhttps://reka.ch/en/rekamoney/privatepersons/reka-card/Seiten/reka-card.aspx?lang=en" }, - { "3BEC00004032424C554520445241474F4E20430001", "Pay TV" }, - { "3BEC00004032544954414E49554D00110106", "Titanium high security access smartcard (the back says something about 'DoorCard') (Other)" }, - { "3BEC00004032544954414E49554D00130202", "Titanium 2 Card Pirat Card for Seca 2 / Viaccess 2004 (Pay TV)" }, - { "3BEC00FF8131FE45A0000000563333304A330600A1", "Datakey model 330J card, www.datakey.com\nhttp://www.hmk.de/downloads/datakey/Model_330J_Smart_Card.pdf\nModel 330J JavaCard v2.1.1\nGlobal Platform v2.0.1 specifications.\nJCCOS operating system applet (Java-based Cryptographic Card Operating System)" }, - { "3BED000080318065B0840100C883009000", "Optelio Cards (D38-D72 R6) T=1 Normal Speed" }, - { "3BED00008131204380318065B083......830090....", "IDClassic 3XX / Classic TPC (IXS, IS, IS V2, IS CC, IM, IM CC, IM CC V3) / MultiApp ID Cards" }, - { "3BED00008131204380318065B08302047E8300900032", "Latvian Digital Signature Card (warm)\nhttp://www.eme.lv/" }, - { "3BED00008131804280318065B0872701BC830890007D", "EMV (V PAY) Issued by UniCredit Bulbank Bulgaria\nGXP7 T=1" }, - { "3BED00008131804280318065B0894001F28300900052", "VISA Debit card for Taishin International Bank, Taiwan" }, - { "3BED00008131FE450031C071C6644D3533560F900046", "Kostadin (Bank)" }, - { "3BED00008131FE450031C071C6644D35354D0F9000", "ING Credit Card (Bank)\nhttps://www.ing.nl/particulier/betalen/creditcards/index.html" }, - { "3BED00FF813120754D424320534D502056312E3130BD", "Used to Control a Laser Device" }, - { "3BEE00008131804280318066B0840C016E01830090008E", "MultiApp Cards (Easy 72K Type B and Combi 72K Type B)\nE.SUN Commercial bank debit master card (Bank)\nTaiwan EasyCard (Transport)\nhttps://www.easycard.com.tw/english/index.asp" }, - { "3BEE00008131804380318066B1A1110100F683009000", "Optelio/Desineo Cards (D72 FXR1)" }, - { "3BEE00008131804380318066B1A11101A0F683009000", "Optelio D72 FXR1 (MD) T=1" }, - { "3BEE00008131804380318066B1A30401110B83009000D4", "Japan Post Bank cash card (Bank)\nhttps://www.jp-bank.japanpost.jp/kojin/chokin/sogou/kj_cho_sg_iccard.html" }, - { "3BEE00008131FE45003180718665016702A00A8390001B", "IBM JCOP 'Java Card 2.1.1' et 'Open Platform 2.0.1'" }, - { "3BEE00008131FE4580318066409093060F1783019000FD", "Health insurance (HealthCare)" }, - { "3BEE00008131FE4580318066409093060F17830F9000F3", "IC card for the National Health Insurance, Taiwan" }, - { "3BEF..0040148025434552455357....0101039000", "Electronic Identification Card from the FNMT, the Spanish Official\nCertification Authority (Fabrica Nacional de Moneda y Timbre)\nFNMT-Ceres Siemens Infineon SLE 19" }, - { "3BEF..0040148025434552455357....0102039000", "FNMT-Ceres Siemens Infineon SLE 20\nFabrica Nacional de Moneda y Timbre" }, - { "3BEF000081312049005C5043541027F8D27600003833004D", "Infineon Technologies PC/SC Compliance Test Card V1.0" }, - { "3BEF000081314069005C50435335C53AD27600003833000F", "Siemens Nixdorf Sicrypt" }, - { "3BEF00008131FC4580318065110113000153414345810421", "Slovenska sporitelna (SLSP) Bank card, Maestro Card with chip" }, - { "3BEF00008131FC4580318065111123100253414345810412", "VISA card issued by UBS, Switzerland" }, - { "3BEF00008131FE450031C173C8211064474D313600900067", "ING Gold Credit Card (Italy) (Bank)\nhttps://www.ing.it/" }, - { "3BEF00008131FE45417441434F53322E345345204C6337C9", "Maestro Polish Alior debit card (Bank)" }, - { "3BEF00008131FE4543443269A98100002020202020200090", "UBS Switzerland Mastercard credit card (Bank)" }, - { "3BEF00008131FE4543443369098000002020202020200030", "Nordea Credit Gold MasterCard (Bank)\nhttp://www.nordea.ee/Private+customers/Daily+banking/Cards/Nordea+Gold/67062.html?lnkid=frontpage_teaser_GOLD_30-07-2014" }, - { "3BEF00008131FE45434D425F436F6D4444413030353500F7", "Master Card (emitted by bank Nordea - Lithuania)" }, - { "3BEF00008131FE45434D425F436F6D5344413030343000E4", "VISA (Danske Bank Eesti / www.sampopank.ee)" }, - { "3BEF00008131FE45434D425F436F6D5344413030353100E4", "Visa (Sampo Estonia, 2010)" }, - { "3BEF00008131FE45436F6D624F53205620202020202000AD", "Corporate Credit Card - SIEMENS MasterCard issued by Degussa Bank (Bank)" }, - { "3BEF00008131FE45436F6D624F53205649202020202000C4", "VfB Stuttgart Fankarte (pay card for the football stadium of the german club VfB Stuttgart)" }, - { "3BEF00008131FE45444C415A46545632444944313030FF06", "Lufthansa ID Card (eID)" }, - { "3BEF00008131FE4546494F4D4B5F3030312030313041009C", "MasterCard/PayPass Card issued by Czech FIO Banka a.s. (contact chip)\nnote the ASCII string ' FIOMK_001 010A' embedded in ATR" }, - { "3BEF00008131FE65005C504353D19147D276000038330070", "Siemens/Infineon Sicrypt S26381-F252-V1 GS:03" }, - { "3BEF00008131FE67005C49434DDBC97ED27600003833001E", "Infineon SICRYPT CardModule Card" }, - { "3BEF00FF8131..456563", "Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus" }, - { "3BEF00FF81312045426173696343617264205A43322E33BD", "ZeitControl BasicCard Enhanced 2.3" }, - { "3BEF00FF81312045426173696343617264205A43332E33BC", "Electronic Purse (Elton Senegal)" }, - { "3BEF00FF81312075426173696343617264205A43332E338C", "ZeitControl BasicCard Enhanced 3.3" }, - { "3BEF00FF81312075426173696343617264205A43332E3788", "ZeitControl BasicCard Enhanced 3.7" }, - { "3BEF00FF81312075426173696343617264205A43332E3986", "ZeitControl BasicCard Enhanced 3.9" }, - { "3BEF00FF81314245.*38", "UNI-Card" }, - { "3BEF00FF8131424565630302030280002240489596002028", "Scard Sparkasse Detmold, Deutschland BLZ 47650130" }, - { "3BEF00FF81315045426173696343617264205A43312E31CC", "ZeitControl BasicCard Compact 1.1" }, - { "3BEF00FF813150456563............................", "GeldKarte v2 (Germany)" }, - { "3BEF00FF8131504565630000000000000000000000000000", "Geldkarte v2" }, - { "3BEF00FF813150456563080B40028000081520033604007E", "old banking card (electronic-card / Maestro / Geldkarte) of the\nStadt-Sparkasse Duesseldorf (like the above, but old - around 2002)." }, - { "3BEF00FF8131504565630D24200280000508335610010243", "German ec card" }, - { "3BEF00FF813152454D46432049424D2034304839363031FB", "IBM MFC 3.5 file system smart card\n(Card from the book 'Smart Card Application Development Using Java')" }, - { "3BEF00FF8131604565630402110000000000A532A50111B6", "GledKarte\nSiemens M3-Module with a Motorola SC-28.\nG&D (Giesecke&Devrient) Geldkarten-OS mit der Version 11" }, - { "3BEF00FF813160456563060314025000065108115E014190", "Geldkarte from Deutsche Bank, Thomson-Chip" }, - { "3BEF00FF8131664549424D204D46433430303230383331A1", "IBM MFC 4.1 file system smart card\nCard from the book 'Smart Card Application Development Using Java'\nauthors: Uwe Hansmann, Martin. S. Nicklous, Thomas Schack, Achim Schneider, Frank Seliger" }, - { "3BEF00FF813166456563202049424D20332E3120202020", "IBM eCash" }, - { "3BEF00FF813166456563202049424D20332E3120202020CF", "IBM eCash" }, - { "3BEF00FF8131864549424D204D4643343030303038333143", "ComCard MFC 4.1" }, - { "3BEF00FF8131FE4141434F532046696F6E6131204C633666", "EUROBANK GR (Bank)\nNBG BANK (Bank)" }, - { "3BEF00FF8131FE4541434F53204449616E6131204C63364E", "comdirect VISA card (Bank)\nhttps://www.comdirect.de/konto/karten.html#Visa-Karte" }, - { "3BEF00FF8131FE4541434F53204449616E6132204C63364D", "Alior Bank SA (Bank)\nhttps://www.aliorbank.pl/" }, - { "3BEF00FF8131FE4565630D12810156001F00006686080122", "Commerzbank signature card SECCOS (6 or 7) providing RAH security profile (Bank)\nhttps://www.chipkartenleser-shop.de/commerzbank/electronic-banking-chipkarten/commerzbank-signaturkarte-2710050006" }, - { "3BEF00FF8131FE4565631104010280000F274000030100E1", "Postbank Geldkarte" }, - { "3BEF00FF8131FE4565631104010280000F462004230100C4", "Postbank ec/Maestro (Germany)" }, - { "3BEF00FF8131FE4565631108430250001021200324053016", "Bank (Bank)" }, - { "3BEF00FF8131FE456563111261025000100A072722071022", "DKB Online Banking Card (Bank)\nhttps://www.dkb.de" }, - { "3BEF00FF8131FE456563111261025000100A07811C0710BA", "German Sparkasse HBCI card (Bank)\nhttps://www.sparkasse.de/service/finanzlexikon/hbci-verfahren.html" }, - { "3BEF00FF8131FE4565631113710528001F00010228372060", "MasterCard of SpardaBank Hamburg in Germany (Bank)\nhttps://www.sparda-bank-hamburg.de" }, - { "3BEF00FF8131FE4565631113710528001F0006124137201E", "BankCard Sparda-Bank Baden-Wurttemberg eG (Bank)" }, - { "3BEF00FF8131FE4565631113710528001F0007241A372072", "Commerzbank Maestro Card (Bank)\nhttp://www.maestrokarten.de/girokontovergleich/commerzbank_girokonto.html" }, - { "3BEF00FF8131FE4565631113710528001F00083B3C372044", "Comdirect Debit Card Germany - AustriaCard 55616 (Bank)\nhttps://www.comdirect.de/" }, - { "3BEF00FF8131FE4565631113710528001F000A1B18372042", "German debit card (girocard, V-Pay) (Bank)\nhttps://www.girocard.eu/english/" }, - { "3BEF00FF8131FE4565631113710528001F000B161C37204A", "Commerzbank / girocard /maestro (Bank)" }, - { "3BEF00FF8131FE4565631113710528001F000D163A37206A", "BankCard Sparda-Bank West eG (Bank)" }, - { "3BEF00FF8131FE4565631113710528001F00120F24372072", "Debit card (Germany): Postbank - GeldKarte (EUR), girocard, V-PAY (Bank)" }, - { "3BEF00FF8131FE4565631113710528001F00153D47372024", "Girocard issued by Comdirect bank AG (Bank)" }, - { "3BEF00FF8131FE4565631113710528001F00193516372071", "Commerzbank Germany (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F00024D36371005", "comdirect girocard (Bank)\nhttps://www.comdirect.de/konto/karten.html#girocard" }, - { "3BEF00FF8131FE4565631114710528001F0003443137100A", "DKB Banking Card (Bank) (Bank)\nhttps://www.dkb.de" }, - { "3BEF00FF8131FE4565631114710528001F00034A36371003", "German Sparkasse, Girocard, GeldCard, girogo, EUROSERV (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F0005210F371057", "girocard maestro Bank (Bank)\nhttps://www.girocard.eu/" }, - { "3BEF00FF8131FE4565631114710528001F0006302F371065", "MasterCard German Sparkasse (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F0006543137101F", "Sparkasse (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F00071D46371020", "DKB (Deutsche Kreditbank) debit card (V-PAY) (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F000A1E1337107B", "girocard (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F000B361B37105A", "Kreissparkasse bank Girocard (Germany) (Bank)\nhttps://www.kskmse.de/de/home/privatkunden/girokonto/girokonto-online.html?n=true&stref=productbox" }, - { "3BEF00FF8131FE4565631114710528001F000C1A1737107D", "Bank card issued by Sparkasse (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F000C2024371074", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ... (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F000C3D35371078", "Sparkasse KolnBonn Bank (Bank)\nhttps://www.sparkasse-koelnbonn.de" }, - { "3BEF00FF8131FE4565631114710528001F0010142437105C", "Deutsche Kreditbank AG (Bank)\nhttps://www.dkb.de/" }, - { "3BEF00FF8131FE4565631114710528001F00112D4F37100F", "Bank card (Bank)\nhttps://www.commerzbank.de/" }, - { "3BEF00FF8131FE4565631114710528001F00113B32371064", "DKB GiroCard (Bank)\nhttps://dkb.de" }, - { "3BEF00FF8131FE4565631114710528001F00172846371005", "Sparkasse Zwickau Maestro card (Bank)\nhttps://www.spk-zwickau.de/de/home/privatkunden/girokonto/sparkassencard.html" }, - { "3BEF00FF8131FE4565631114710528001F00180F48371023", "SparkassenCard (Bank)\nhttps://sparkasse.de" }, - { "3BEF00FF8131FE4565631114710528001F0018242A37106A", "Sparkasse girocard (Bank)" }, - { "3BEF00FF8131FE4565631114710528001F00182D1C371055", "Debit card (Germany): ec-cash, GeldKarte(EUR) (Bank)" }, - { "3BEF00FF8131FE456563111562025000100A002B2107201E", "EC Card Sparkasse Mittelfranken Sued (Bank)\nhttps://www.spkmfrs.de" }, - { "3BEF00FF8131FE456563111562025000100A002EFC0720C6", "maestro BankCard (Bank)" }, - { "3BEF00FF8131FE456563111562025000100A09AC030720B2", "Girocard Sparkasse Darmstadt (Bank)" }, - { "3BEF00FF8131FE4565631901620280000F003500420620BB", "Credit card (Germany, Postbank AG): VISA" }, - { "3BEF00FF8131FE4565631D0284025000230509A0D9010182", "Debit card (Bank)" }, - { "3BEF00FF8131FE4565631D028402500023180920E7010121", "Deutsche Kreditbank AG (DKB AG) bank card (Bank)\nhttps://www.dkb.de/info/tan-verfahren/chipTAN/" }, - { "3BEF00FF8131FE458031C06B49424D204A65745A204D3239", "UBS Internet Card (IBM JetZ M2)" }, - { "3BEF00FF8131FE458031E06B042105026B55555555555568", "MasterCard credit card for Mega International Commercial Bank, Taiwan (Bank)\nhttps://www.megabank.com.tw/creditcard/index.asp" }, - { "3BEF00FF8131FF6549424D204D4643393232393238393017", "IBM MFC 4.22 (University of Cambridge smartchip card)" }, - { "3BF01100FF01", "Not a physical smart card. But a JavaCard simulator ATR with default configuration. (JavaCard)" }, - { "3BF01200FF9181B17C451F019B", "Japanese Chijou Digital B-CAS Card (pay TV) (Pay TV)" }, - { "3BF01200FF9181B17C451F0399", "Japanese Chijou Digital B-CAS Card (pay TV)" }, - { "3BF01200FF9181B1EF451F030A", "Japanese Digital CATV C-CAS card" }, - { "3BF01300001000", "MasterCard ETEC InterOp 27. This is an dual-app Maestro/MasterCard Credit EMV test card" }, - { "3BF01300008131FE45E8", "Healthcare card Romania (HealthCare)\nhttp://www.cnas.ro/casmb/national-page/cardul-national-de-asigurari-de-sanatate-2.html" }, - { "3BF01300FF9181B1FE461F0319", "Japan BS/CS 4K Satellite Broadcasting A-CAS Card (Pay TV)\nhttp://www.acas.or.jp/index.html" }, - { "3BF2180000C10A31FE55C80675", "HID iCLASS P16K C4H\nproximity card used for both door locks and keystore" }, - { "3BF2180002C10A31FE55C80776", "Siemens CardOS V4.3" }, - { "3BF2180002C10A31FE58C80874", "Siemens CardOS V4.3B\nD-Trust multicard 2.1 (may only be the testcard for it)" }, - { "3BF2180002C10A31FE58C80975", "Siemens CardOS V4.2B" }, - { "3BF2180002C10A31FE58C80B77", "CardOS V4.2C (SLE66CX360PE dual interface)" }, - { "3BF21800FFC10A31FE55C8068A", "Siemens CardOS M 4.2 (SLE66CX642P)" }, - { "3BF2960000813180438031A6", "Card of Justice (Other)" }, - { "3BF29800FFC11031FE55C80315", "Siemens CardOS M 4.01 (SLE66CX320P)" }, - { "3BF29800FFC11031FE55C80412", "CardOS M4.01a (SLE66CX322P)" }, - { "3BF39600FFC00A31FE4D8031E083", "MARX Cryptoken (supported by RaakSign)" }, - { "3BF41300008131FE4552465A4FED", "Serbian Health Care electronic card (HealthCare)\nhttp://www.rfzo.rs/index.php/osiguranalica/ekartica" }, - { "3BF4180002C10A31FE5856346376C5", "Eutron CryptoIdentity (reader + card token)" }, - { "3BF41800FF8131805500318000C7", "Identity card of Italian Republic" }, - { "3BF49800FFC11031FE554D346376B4", "Eutron Digipass 860 (reader + card token)" }, - { "3BF51300008131FE4573746431308F", "card for NF-e in Brazil (PKI)\nhttps://certificadodigital.imprensaoficial.com.br/certificados-digitais/e-cnpj/a3/e-cnpj-a3-cartao" }, - { "3BF51800008131FE454D794549449A", "Aventra ActiveSecurity MyEID\nhttp://www.aventra.fi/pdf/ActiveSecurity%20MyEID%20Tokens%20white%20paper%20(2p)%20EN.pdf" }, - { "3BF518000210804F73454944", "Atmega 128 microcontroller based open source EID smartcard with RSA and ECC. (eID)\nhttps://oseid.sourceforge.io/" }, - { "3BF57100FFFE2400011E0F3339320103", "Mydo IC Card from Japan, based on NTTDATA CARD (Loyalty)\nhttps://www.idemitsu.com/company/history/13.html" }, - { "3BF59100FF918171FE40000A086E773A65", "iCLASS Card (Other)" }, - { "3BF59100FF918171FE4000410000000005", "Contactless Mifare Ultralight" }, - { "3BF59100FF918171FE400041080000000D", "Contactless Mifare" }, - { "3BF59100FF918171FE400041180000001D", "Contactless Mifare 4k" }, - { "3BF59100FF918171FE400041880000008D", "Contactless Mifare 1k or 4k" }, - { "3BF59100FF918171FE4000420001008186", "American Express Blue RFID" }, - { "3BF59100FF918171FE400042000100D1D6", "Japanese Public Key Infrastructure (PKI)\nhttps://www.jpki.go.jp/\nMy Number Card (The Social Security and Tax Number System in JAPAN) (eID)\nhttps://www.cao.go.jp/bangouseido/" }, - { "3BF59100FF918171FE400042000177D1A1", "German Passport (ePass) (issued May 2008)" }, - { "3BF59100FF918171FE4000420001B3A115", "Individual Number Card (eID)\nhttps://www.kojinbango-card.go.jp/" }, - { "3BF59600008.31FE454D794549441.", "MyEID card (Infineon chip) (PKI)\nhttps://services.aventra.fi/English/products_MyEID_E.php" }, - { "3BF61800FF8131FE454A32413038301B", "NXP J2A080 - 80K (blank)\nhttp://www.classic.nxp.com/acrobat_download2/literature/9397/75016728.pdf" }, - { "3BF61800FF8131FE454A434F5032300E", "IBM JCOP20" }, - { "3BF61800FF8131FE454A434F5033300F", "Philips P8RF5016 running IBM JCOP 30 (contact interface)" }, - { "3BF61800FF8131FE454A434F5033310E", "IBM JCOP BIO31\nIBM JCOP BIO31 Java card" }, - { "3BF71100008131FE6543616E6F6B657999", "Canokey (Other)\nhttp://canokeys.org/" }, - { "3BF711000081718042000063950A019000B9", "ATM Card for Chunghwa Post Inc., Taiwan" }, - { "3BF71100008171FE420000639501019000CC", "ATM Card for Mega International Commercial Bank, Taiwan\nATM card for HSBC Direct, Taiwan\nATM card for TaChong Bank, Taiwan\nATM card for Chunghwa Post, Taiwan\nVISA card for Taipei Fubon Bank, Taiwan\nATM card for Cathay United Bank, Taiwan (Bank)\nhttps://www.cathaybk.com.tw/cathaybk/english/eindex.htm" }, - { "3BF71100008171FE420000639531029000FF", "VISA card for Taipei Fubon Bank, Taiwan" }, - { "3BF71100008171FE420000639531049000F9", "E.SUN Bank, Taiwan (Bank)\nhttps://www.esunbank.com.tw" }, - { "3BF71100008171FE420000639531059000F8", "ATM card for Chunghwa Post, Taiwan\nATM card for E.Sun Commercial Bank, Taiwan\nATM card for Taishin International Bank, Taiwan\nATM card for Bank of Taiwan, Taiwan\nATM card for Land Bank of Taiwan, Taiwan" }, - { "3BF711000140965430040E6CB6D6", "Atmel (FunCard) Smart Card with AT90S8515 and 24LC64 chip on it (Other)\nhttp://docs-europe.electrocomponents.com/webdocs/1173/0900766b811730a2.pdf" }, - { "3BF711000140965430040E6CB6D69000", "PIC16F876-04/SP (PICCard2) or\nPIC16F84A-04/P + 24LC16B (PICCard1) or\nCanal + Canal Digital Spain year 2000/2001 or\nPIC Silver Card 2 (PIC16F876/7 + 24C64)" }, - { "3BF711000140965760140E6CB6D6", "old SECA of D+ Italian sat pay tv" }, - { "3BF711000140965842140E6CB6D6", "UK on digital (terrestrial digital TV card)" }, - { "3BF711000140966060060E6CB6D6", "CANAL+ CANALSATELLITE SmartCard (possibly from 2005) (Pay TV)" }, - { "3BF711000140967070070E6CB6D6", "Cyfra+ SECA Card\nhttp://cyfraplus.pl/" }, - { "3BF711000140967070070E6CB6D69000", "M-II (a.k.a. M-2, a.k.a. Platinum Card), AT90SC6464C based\nKnotCard II\nTitaniumElite" }, - { "3BF7110001409670700A0E6CB6D6", "TopUp TV NagraVision viewing card" }, - { "3BF7110001409670700A0E6CB6D69000", "Canal Digitaal (Pay TV)\nhttp://webshop.canaldigitaal.nl/nl/smartcards-2" }, - { "3BF711000140967070170E6CB6D6", "Canal Satellite card (VERSION 7.1 SYSTEM / SECA2)" }, - { "3BF711000140967070370E6CB6D6", "Carte pour decodeur cable numerique (fourni par www.voo.be et\nwww.ledecodeur.be)" }, - { "3BF711000140967070670E6CB6D6", "UK TopUp TV" }, - { "3BF711000140967071090E6CB6D6", "Carte pour decodeur tele de Neuf Telecom TV" }, - { "3BF71300001000F14040919B9000", "Handelsbanken Inloggningskort (Bank)\nhttps://www.handelsbanken.se/sv/privat/digitala-tjanster/bankid-pa-kort" }, - { "3BF71300008131FE4500C08AC80C658185", "NXP JCop (JavaCard)" }, - { "3BF71300008131FE45464F4D534F4D53A9", "Health card Russian Federation" }, - { "3BF71300008131FE454A434F503234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, - { "3BF71300008131FE4580654A5030310415", "Nichizeiren Denshi-shomei (eID)\nhttps://www.nichizeiren.or.jp/taxaccount/auth/fifth/" }, - { "3BF71800008031FE45736674652D6E66C4", "SmartCafe Expert 3.2 72K" }, - { "3BF71800008031FE45FE42475265494424", "Bulgarian eID PKI card pilot on IFX SLE78 jTOP (PKI)" }, - { "3BF71800008131FE458055433776706B28", "Only labeled 'J35110', dual interface (JavaCard)" }, - { "3BF718000081718042000063840C019000A7", "Citibank Taiwan ATM Card (Bank)\nhttps://www.citibank.com.tw/" }, - { "3BF718000081718042000063950A019000B0", "7-Eleven icash card, Taiwan" }, - { "3BF79100FF918171FE40000A0260CF5104CB7F", "UK Metro Bank Mastercard Debit (Bank)\nhttps://www.metrobankonline.co.uk/" }, - { "3BF79100FF918171FE40004120001177818040", "Contactless Mifare DESFire" }, - { "3BF81100008171FE4200544E051900000002A1", "Taiwan EasyCard (Transport)\nhttps://www.easycard.com.tw/english/index.asp" }, - { "3BF811200340FF0303030312109000", "Bar Ilan KesefCard from Bezeq (Other)\nhttps://halemo.net/web/www.aurora.co.il/english/c_kesefcard.html" }, - { "3BF811200340FFFFFFFFFF12109000", "G&D (STARCOS SV 1.1)" }, - { "3BF813000010000073C84011009000", "Vivid Money Visa Debit (Bank)\nhttps://vivid.money" }, - { "3BF81300008131FE15597562696B657934D4", "Yubico Yubikey 4 OTP+CCID" }, - { "3BF81300008131FE4546494445534D4F318E", "Fidesmo Card with Dual Interface (JavaCard)\nhttp://shop.fidesmo.com/product/fidesmo-card-dual-interface" }, - { "3BF81300008131FE454A434F50763234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, - { "3BF81300008131FE454A434F5076323431B7", "Nigerian eID Card (blank card)\nChip is NXP JCOP 2.4.1R3\nBank of Hawaii (Bank)\nhttps://www.boh.com/\nLA BANQUE POSTALE (Bank)\nhttps://www.labanquepostale.fr/\nbnpparibas (Bank)\nhttp://www.bnpparibas.com/\nJcop040 (JavaCard)\nJcop21 (JavaCard)\nVisa debit classic (Bank)\nhttp://www.jpmorganchase.com/\nJPMorgan Chase (Bank)\nVisa (Bank)\nhttps://unitedfcu.com/\nJP Morgan chase bank (Bank)\nhttp://www.jpmorganchase.com/\nNavy Federal Credit Union (Bank)\nhttps://www.navyfederal.org" }, - { "3BF81300008131FE454A4F5076323431B7", "Nigerian eID card (eID)" }, - { "3BF81300008131FE455049564B45593730FF", "PIVKey CP70 (PKI)\nhttps://pivkey.com/" }, - { "3BF81300008131FE455241414B43327635CB", "Raak C2 Smart Card (PKI)\nhttp://www.raaktechnologies.com/software-downloads-documentation/" }, - { "3BF81300008131FE45534B555001000000FC", "Silesian Card of Public Services (Transport)\nhttps://portal.kartaskup.pl/" }, - { "3BF81300008131FE45536D617274417070F8", "national Lithuania ID card" }, - { "3BF81300008131FE45FF4A32413034300012", "MIDAS Card Diversification Key JavaCard (J2A040) (Bank)\nhttps://github.com/kategray/midas" }, - { "3BF81300FF108053430663010F900000", "Affinity CUIA Debit (JavaCard)\nhttps://www.affinitycuia.org" }, - { "3BF81300FF910131FE41534C4A01305023100D", "Walden Mutual Bank (Bank)\nhttps://www.waldenmutual.com/sustainable-bank-for-individuals#footnote-s0-4" }, - { "3BF81800008031FE450073C8401300900092", "G&D StarSign Token" }, - { "3BF81800008131FE450073C8400000900080", "NXP JCOP 31 V2.2 36K - S/C I/F" }, - { "3BF81800008131FE450073C8401300900093", "Giesecke & Devrient Sm@rtCafe Expert 3.0" }, - { "3BF81800008131FE454A434F50563234319C", "NXP JCOP2.4.1\nJ3A080 80KB T=1 GP2.1.1 JC2.2.2 SCP02" }, - { "3BF81800008131FE454A434F5076323431BC", "NXP J2A080 JavaCard" }, - { "3BF81800FF8131FE450073C840000090007F", "NXP JCOP 10\nNXP JCOP 31 (contact interface)" }, - { "3BF81800FF8131FE454A434F507632343143", "VIVOtech SAM\nNXP JCOP V241\nNXP J3A081 JavaCard (contact interface)" }, - { "3BF89600008031FE470073C840000090000D", "Italian driver tachograph smartcard (Transport)\nhttps://www.to.camcom.it/cartatachigrafica" }, - { "3BF89600008131FE4400739401C00F9000DD", "fourth-generation Hong Kong permanent identity card (Other)\nhttps://en.wikipedia.org/wiki/Hong_Kong_identity_card" }, - { "3BF89600008131FE454A434F507632343132", "NXP JCOP 2.4.1 (JavaCard)" }, - { "3BF91100008131FE45436F6D624F53205600AA", "VISA Card (Bank)" }, - { "3BF91300008131F0454E425502000320000097", "Bank" }, - { "3BF91300008131FE45454F4E436172645631F6", "NXP J2A080 (PKI)\nhttp://www.smartcardsource.com/contents/en-ca/d9_JCOP-NXP-cards.html" }, - { "3BF91300008131FE454A434F503234........", "NXP JCOP v2.4.x (see hist bytes for more info)" }, - { "3BF91300008131FE454A434F503431563234A2", "JCOP41 v2.4" }, - { "3BF91300008131FE454A434F5076323431B701", "J2A040 NXP (JavaCard)\nhttps://secure.smartcardsource.com/j2a040-java-smart-card.html" }, - { "3BF91300008131FE45535049564B45593730AD", "PIVKey T840 (Other)\nhttps://pivkey.com/" }, - { "3BF91300FF10808031E0554245524753", "Banrisul bank" }, - { "3BF91500FF910131FE43806448657261829000C7", "RC-S500 card (FeliCa SAM for reader?) (Other)" }, - { "3BF918000000534345372003002046", "G+D FIPS 201 SCE 7.0 (PKI)" }, - { "3BF91800008031FE4580574E454F574156457D", "Neowave Weneo" }, - { "3BF91800008131FE45393532383530313331DA", "JCOP31 / 72B1 V2.2 (4096 RSA key support)\nSmartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform" }, - { "3BF91800008131FE454A32443038315F5056B6", "NXP J2D081 Java Card 80KB JCOP 2.4.2 R2 GP 2.2.1 JC 3.0.1 (JavaCard)\nhttp://www.javacardsdk.com/Index.aspx?p0=AAT1P0000012&p1=1&p2=1&p3=1&p4=0&p5=1" }, - { "3BF91800008131FE454A434F503231563232A9", "NXP JCOP 21 V2.2 36K" }, - { "3BF91800008131FE454A434F503331563232A8", "JCOP31 / 72B1 V2.2\nSmartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform" }, - { "3BF91800008131FE454A434F503431563232AF", "JCOP41 Cards (not supported, but recognized by Classic Client)\nNHS Care Identity Service (CIS) smartcard (HealthCare)\nhttps://www.e-lfh.org.uk/programmes/national-ra-and-smartcard-policy/" }, - { "3BF91800008131FE4550565F4A3244303831B6", "Taiwanese Health Professional Card(TW HPC) (HealthCare)\nhttps://hca.nat.gov.tw/Intro.aspx" }, - { "3BF91800FF8131FE4550565F4A334130343040", "Yubico Yubikey NEO OTP+U2F+CCID (PKI)\nhttps://www.yubico.com/products/yubikey-hardware/yubikey-neo/" }, - { "3BF91800FF8131FE4550565F4A33413038314D", "NXP JCOP J3A081 (JavaCard)\nhttps://secure.smartcardsource.com/j3a081m.html" }, - { "3BF99100FF9181714040004180045B89BAB352803A", "mifare desfire 2k (eID)" }, - { "3BF99100FF918171FC40000A095161900058C290D2", "NFC PASS card (eID)" }, - { "3BF99400008131FE6546542056313030900083", "ePass 2000" }, - { "3BF99600008031FE454A546178436F7265560F", "Secure element for fiscal system in Serbia (PKI)" }, - { "3BF99600008031FE4553434537200000202027", "G&D SmartCafe Expert 7 (JavaCard)" }, - { "3BF99600008031FE4553434537200300204642", "ActivIdentity Activkey Sim (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/activid/usb-tokens" }, - { "3BF99600008031FE4553434537200F0020464E", "Giesecke & Devrient (DoD Alternate Token) G+D Sm@rtCafe Expert v7.0 144K DI #3 (PKI)" }, - { "3BF99600008031FE4553434537202000202007", "Serbian Identity Card (eID) (eID)" }, - { "3BF99600008031FE45534345372047434E335E", "Serbian Identity Card (eID)" }, - { "3BF99600008031FE455343453720474E335E", "Serbian Identity Card (eID)" }, - { "3BF99600008131FE45454F4E43617264563173", "eONCard V1 (PKI)" }, - { "3BF99600008131FE4553434537200E00202028", "Giesecke & Devrient GmbH StarSign CUT S" }, - { "3BF99600008131FE45535049564B4559373028", "Taglio PIVKey C980 (PKI)\nhttps://www.pivkey.com" }, - { "3BF99800FFC11031FE55414D20434D4431313083", "Service card of the Ministry of Defense of Italy - Military Aviation" }, - { "3BF99800FFC11031FE55454920434D4431313083", "Service card of the Ministry of Defense of Italy - Italian Army" }, - { "3BF99800FFC11031FE554D4D20434D443131308F", "Service card of the Ministry of Defense of Italy - Navy" }, - { "3BF99800FFC11031FE55504320434D443131309C", "Service card of the Ministry of Defense of Italy - Civil personnel" }, - { "3BFA..00008131..438065A2........72D6....", "IDClassic 3XX Cards (with MPCOS Applet)" }, - { "3BFA1100008131FE45436F6D624F5320495600E0", "MyWireCard 2go Prepaid VISA Card" }, - { "3BFA110002406043C602F8030300009000", "DeLaRue DX(?)" }, - { "3BFA1300008131FE15597562696B65794E454FA6", "Yubikey NEO" }, - { "3BFA1300008131FE450031C173C8400000900079", "Nigerian eID Card (warm reset)\nChip is NXP JCOP 2.4.1R3" }, - { "3BFA1300008131FE454465786120434620763198", "Dexa Systems Crossfire Card (PKI)\nhttp://www.dexasystems.com/products-services/products/dexa-smartcards-credential-tokens-peripherals" }, - { "3BFA1300008131FE454A434F503.3.56323332..", "JCOPxx/yy v2.3.2 (see hist bytes for more info)" }, - { "3BFA1300008131FE454A434F50323156323331", "J2A040 JCOP (JavaCard)" }, - { "3BFA1300008131FE454A434F5032315632333191", "NXP JCOP 21 V2.3.1 36K" }, - { "3BFA1300008131FE454A434F5032315632343196", "NXP JCOP 2.1 V 2.4.1 (JavaCard)" }, - { "3BFA1300008131FE454A434F50343156", "JCOP41 V221" }, - { "3BFA1300008131FE454A434F5034315632333197", "JCOP41 /72K (eID)" }, - { "3BFA1300008131FE454A434F50763234........", "NXP JCOP v2.4.x (see hist bytes for more info)" }, - { "3BFA1300008131FE54A434F503233191", "Jcop (JavaCard)" }, - { "3BFA1300FF813180450031C173C00100009000B1", "OpenPGP" }, - { "3BFA1800008031FE45FE654944202F20504B4903", "Estonian Identity Card (EstEID v3.5 (10.2014) cold) (eID)\nhttp://id.ee/" }, - { "3BFA1800008131FE4506082A841001876E0805BC", "Dutch Rijkspas (eID)" }, - { "3BFA1800008131FE4506082A841001876E0807BE", "Rijkspas (identification card dutch government employees) (eID)\nhttps://nl.wikipedia.org/wiki/Rijkspas\nDutch government multifunctional smartcard (Other)\nhttps://nl.wikipedia.org/wiki/Rijkspas" }, - { "3BFA1800008131FE45060860841001876F0602FE", "Card used by the Dutch health insurers to give medical personnel access to patient insurance information" }, - { "3BFA1800008131FE4546534A434F503453494480", "NXP Java Card JCOP4 P71 GP2.3 JC3.0.5 (JavaCard)\nhttps://www.javacardsdk.com/product/j3r180sim/" }, - { "3BFA1800008131FE454A33413034305632343184", "NXP J3A 40K\nJava Card v2.2.2 - Global Platform v2.2.1\nDual-interface functionality (features 1K Mifare emulation)" }, - { "3BFA1800008131FE454A33413038315632343189", "NXP JCOP CJ3A081\nhttp://www.usmartcards.com/media/downloads/492/NXP%20P5CX012%2002X%2040%2073%2080%20144%20%20%202011.pdf" }, - { "3BFA1800008131FE454A3344303831563234328F", "AustriaCard Dual Interface Unpersonalized EMV Cards (Bank)\nhttps://www.austriacard.com" }, - { "3BFA1800008131FE454A434F503431563232319D", "NXP JCOP 41 v2.2.1 72k SmartCard I/F" }, - { "3BFA1800008131FE454A546178436F72655631B2", "Taxpayer Portal Authentication for Fiji Revenue & Customs Service taxpayer portal (PKI)" }, - { "3BFA1800008131FE454D4F54494F4E0000900760", "SIM card (Telecommunication)" }, - { "3BFA1800008131FE4550564A434F5033454D5694", "NXP JCOP3 J3H082 Java Card 3.0.4 Dual-Interface (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop3-j3h082-java-card-3-0-4-j3h081-dual-interface/" }, - { "3BFA1800008131FE4550564A434F503453494493", "National Health Insurance (Taiwan) (HealthCare)" }, - { "3BFA180000910131FE4550564A434F503453494482", "Supposed P71 SecID purchased from a Chinese manufacturer (JavaCard)" }, - { "3BFA180000910131FE456BD1936AC2F28547E164CC", "J3R180, NXP JCOP4 JC3.0.5 Classic, GP2.3, SECID (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, - { "3BFA180002C10A31FE584B53776973735369676E89", "SuisseId card (used for qualified signatures)\nhttp://postsuisseid.ch/de/suisseid\nhttp://www.suisseid.ch/" }, - { "3BFA1800FF10004A546178436F72655631", "NXP JCOP4 J3R200 P71 (JavaCard)" }, - { "3BFA1800FF8031FE450031807394410000900090", "Kazakhstan Identity Card 2022 (eID)" }, - { "3BFA1800FF8131FE454A434F5032315632333165", "TrubDemax healthcare card\nJCOP 21 / 72k" }, - { "3BFA1800FF8131FE454A434F5034314332303074", "HID Crescendo C200\nhttps://www.hidglobal.com/sites/hidglobal.com/files/resource_files/crescendo-c200-c700-smart-card-ds-en.pdf" }, - { "3BFA1800FF8131FE454A434F5034315632323162", "JCOP41\nHID Crescendo C700\nhttp://www.hidcorp.com/\nShould be compatible to RAAK\nhttp://www.raaktechnologies.com/\nMarx CrypToken MX2048-JCOP USB Token" }, - { "3BFA1800FF8131FE454A434F5034315632333163", "JCOP41 V2.3.1 Dual Interface, Mifare emulation, 72K (NXP SmartMX P5CT072)\nJCOP (Java Card OpenPlatform) is a Java smart card distributed and developed by NXP.\nThe JCOP 41 v2.3.1. is an USB-smart card and can be used not only with standard smart card reader, but also with simple USB-connectors. The JCOP card is connected as ICCD card and can be used with such ICCD standard drivers.\nJCOP 41 is a Dual-Interface Smart Card, that means, the card can also be contacted with a contactless card reader. For building access systems, this card is also be able to emulate Mifare Classic 1k/4k.\nJCOP 41 v2.3.1 is compliant to JavaCard Standard 2.2.1. and GlobalPlattform 2.1.1. Their cryptographic features supports RSA up to 2432 bit, 'Eliptic curves' - ECC GF(2n), AES and 3DES.\nMore information is available here:\nhttp://www.nxp.com/documents/short_data_sheet/P5Cx009_P5Cx072_FAM_SDS.pdf" }, - { "3BFA940000813120438065A20101013D72D64321", "GemXpresso Pro R3 32PK (MPCOS, T=1)" }, - { "3BFA9600008031FE450031C8239752270F9000C1", "Swedish ID card (eID)" }, - { "3BFA960000813180438065A20101013D72D64383", "Malta identity card delivered by the Identity Management Office (eID)\nhttps://mhas.gov.mt/en/MHAS-Departments/Land%20Public%20Registry/Pages/ID-MO.aspx" }, - { "3BFA9800FFC11031FE55C8035341475F504B493277", "Siemens corporate ID card (access to the building / rooms etc,\nstores PKI private keys/certificates)" }, - { "3BFA9800FFC11031FE55C8045341475F504B493270", "Siemens Corporate Card (Belgium , Germany)" }, - { "3BFB11000040288059535059525553AE0002", "Spyrus Rosetta Basic" }, - { "3BFB11000040788059535059525553AE0202", "Rosetta(r) Series II Smart Card manufactured by Spyrus\nhttp://spyrus.com/products/rosetta_smart_usb.asp" }, - { "3BFB1100008131FE450031C06477E910000090006A", "OCS ID-One Cosmo Card USB Token" }, - { "3BFB1100FF81318055006802001010534941450004", "Italian Society of Authors and Publishers ticket and report signing smart card (PKI)\nhttps://www.siae.it/en/utilizzatori/other-services-stamps-certifications-data-and-statistics/automated-ticket-issuing-systems" }, - { "3BFB1300008131FE454A434F50533.3.56323332..", "JCOP-Sxx/yy v2.3.2 (see hist bytes for more info)" }, - { "3BFB1300008131FE456368617269736D6174657884", "Charismathics smart card JCOP and Qualified electronic signature CHJCOP-xxx (PKI)\nhttps://www.stampit.org/en/page/808" }, - { "3BFB1300FF10800031C164086032060F9000", "Stripe Issuing Card (Bank)" }, - { "3BFB1300FF10800031C164086032100F9000", "Varo (Bank)" }, - { "3BFB1300FF10800031C164089862210F9000", "Visa Debit (Bank)" }, - { "3BFB1300FF10800031C164089862290F9000", "Bank Card (Bank)" }, - { "3BFB1300FF10800031C1640924331E0F9000", "TransferWise Debit Card (Bank)\nhttps://wise.com/" }, - { "3BFB1300FF10800031C164096441360F9000", "Truist Business Debit (Bank)" }, - { "3BFB1300FF813180755A43352E3520524556204763", "ZeitControl BasicCard 5.5" }, - { "3BFB1300FF813180755A43352E3620524556204D6A", "ZeitControl BasicCard ZC5.6 user-programmable smart card\nhttp://www.basiccard.com/index.html?overview.htm" }, - { "3BFB1300FF813180755A43362E3520524556204364", "ZeitControl BasicCard 6.5, multiapplication with 30 kByte EEPROM" }, - { "3BFB1300FFC0803180755A43352E34205245562041A5", "ZeitControl BasicCard Professional 5.4 Revision A" }, - { "3BFB1300FFC0803180755A43352E34205245562048AC", "ZeitControl BasicCard Professional 5.4" }, - { "3BFB1300FFC0803180755A43352E3420524556204DA9", "Basiccard ZC5.4 revision M (Other)\nhttp://basiccard.com" }, - { "3BFB1300FFC0807553544F4C4C4D31504C5553BD", "Stoll M1PLUS (Other)" }, - { "3BFB180000407880595350595255530B0003", "Spyrus, Inc. Rosetta USB (PKI)" }, - { "3BFB180000407880595350595255530B0402", "SPYRUS Rosetta Series 2 (eID)\nhttp://www.spyrus.com/rosetta-hsm/" }, - { "3BFB18000040788059535059525553AE0402", "Spyrus Rosetta Series II" }, - { "3BFB1800008131FE450031C06477E9100001900062", "ID card for personal of 'Govern Illes Balears'\nhttp://www.caib.es/sacmicrofront/contenido.do?cont=7584&mkey=M08110610180317195848&&lang=en" }, - { "3BFB1800008131FE454A33483134354337583330C6", "COTECH OpenPGP Card - ECC (PKI)" }, - { "3BFB9100FF918171FE40004120000100812063CBA08003", "C*******r, MasterCard credit card, Pass Banque, Oberthur - contactless/PayPass" }, - { "3BFB9600008031FE450031C06477E3020082900076", "Oberthur ID-One Cosmo" }, - { "3BFB9600008031FE450031C06477E3030081900074", "D.O.D. Eid Passport rapidgate card (eID)" }, - { "3BFB9600008131FE450031C06477E91000019000EC", "Oberthur ID-ONE v5.4" }, - { "3BFB9600008131FE450031C06477E910000F9000E2", "Elektroniczna Legitymacja Studencka - Polish Student's ID Issued in Poznan in 2007" }, - { "3BFB9600008131FE450031E85427E60100079000BC", "Gemalto (PKI)" }, - { "3BFB9600008131FE4556445349354001000400011F", "Vasco DIGIPASS KEY 200 usb token\nhttp://www.vasco.com/products/digipass/digipass_pki/digipass_pki_keys/digipass_key_200.aspx\nShould contain a 'Oberthur cosmo v 5.4 or V7.0D' smartcard" }, - { "3BFB9800FFC11031FE550064052047033180009000F3", "Gemplus GemGate 32K\ndistributed by Postecert (www.postecert.it) to legally sign documents" }, - { "3BFC1300008131FE15597562696B65794E454F7233E1", "YubiKey NEO (PKI)\nhttp://www.yubico.com/" }, - { "3BFC1300008131FE45597562696B65794E454F7233B1", "Yubikey Neo\nhttp://www.yubico.com/products/yubikey-hardware/yubikey-neo/" }, - { "3BFC180000813180459067464A00641606F2727E00E0", "PIVKey C910 PKI Smart Card (eID)\nhttp://pivkey.com/" }, - { "3BFC180000813180459067464A00642D70C172FEE0FE", "pivkey token (JavaCard)\nhttp://www.pivkey.com/" }, - { "3BFC180000813180459067464A0068080.000000000.", "Feitian A22 JavaCard (150K) (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~712/javacos-a22-dual-interface-java-card-150k/p/index.shtml\nFeitian A40 JavaCard (64K) (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~711/javacos-a40-dual-interface-java-card-64k/p/index.shtml" }, - { "3BFC180000813180459067464A01002005000000004E", "Feitian A40 (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~711/javacos-a40-dual-interface-java-card-64k/p/index.shtml" }, - { "3BFC180000813180459067464A01002504000000004A", "Feitian JavaCOS A22CR ()\nhttp://www.javacardos.com/store/javacard-a22cr.php" }, - { "3BFC180000813180459067464A0100870600000000EA", "Feitian FTJCOS (https://www.ftsafe.com/products/Card_OS) (JavaCard)\nhttps://www.ftsafe.com/onlinestore/product?id=18" }, - { "3BFC180000813180459067464A01642F70C172FEE0FD", "Feitian eJavaToken (JavaCard)\nhttp://www.ftsafe.com/product/epass/eJavaToken" }, - { "3BFC1800008131FE458073C8211366020403550002D2", "National Health Insurance Card, Taiwan" }, - { "3BFC9800FFC11031FE55C803496E666F63616D65726528", "New Card Infocamere (Italy) series 1402...\nhttp://www.card.infocamere.it/\nSiemens Informatica - Siemens M4.01a\nchip Infineon SLE66CX322P (CC EAL5)\nMemory EEPROM: 32KB\nOperating system CARDOS\nMax numero dei tentativi PIN: 3\nPin: da 5 a 8 digit\nUnblocked by tool CARDOS API 2.2" }, - { "3BFD..00008131..4380318065B0........83..90....", "IDClassic 3XX / Classic TPC (IXS, IS, IS V2, IS CC, IM, IM CC, IM CC V3) / MultiApp ID Cards" }, - { "3BFD130000813160658031C0694D54434F537301011660", "Silesian University (Katowice, Poland) Student Identity Card (eID)\nhttps://www.us.edu.pl/" }, - { "3BFD1300008131FE158073C021C057597562694B657940", "Yubico YubiKey 5 NFC (PKI)\nhttps://www.yubico.com/product/yubikey-5-nfc" }, - { "3BFD1300008131FE4500125553554D49444153000000F6", "Midas key diversification card (Other)" }, - { "3BFD1300008131FE4541373030354347203234325231D5", "Feitian ePass FIDO NFC (Other)\nhttps://www.ftsafe.com/Products/FIDO/NFC" }, - { "3BFD1300008131FE4541373030364347203234325231D6", "YubiKey NEO (token)" }, - { "3BFD1300008131FE454A434F50323176323331474454E1", "National Health Insurance Card, Taiwan" }, - { "3BFD1300008131FE45543D314A323133364B56323331DC", "ic Card (JavaCard)" }, - { "3BFD1300008131FE4580318153534431738421C0810730", "Personal Info Card (eID)" }, - { "3BFD1300FF10000031C173C8400052A1C5009000", "IBKR Prepaid MasterCard, Issued by Peoples Trust Company (Bank)\nhttps://www.interactivebrokers.com/en/index.php?f=26451" }, - { "3BFD1300FF10000031C173C8400052A1D5009000", "PayPal Business Debit Mastercard (Bank)\nhttps://www.paypal.com/merchantapps/appcenter/makepayments/bdmc" }, - { "3BFD1800008031FE45003180718E6452D904008190005B", "Oberthur Card Systems, authentIC" }, - { "3BFD1800008031FE4553434536302D43443038312D46C4", "Panama Electronic Signature (JavaCard)" }, - { "3BFD1800008031FE45736674652063643134342D6E66D8", "SmartCafe Expert 3.2 144K Dual is a contact and contactless technology Java card from G&D with 144K on-board EEPROM for application and data storage. Certified to FIPS 140-2 Level 3 and Common Criteria EAL 5+. Supports specifications ISO 14443A T=CL and ISO 7816 T=1/0. (PKI)\nhttp://www.smartcardfocus.us/shop/ilp/id~523/smartcafe-expert-3-2-144k-dual/p/index.shtml" }, - { "3BFD1800008031FE45736674652D63643038302D6E66DC", "G&D Sm@Cafe 3.1 (eID)" }, - { "3BFD1800008131FE4553434536302D43433038312D46C2", "Giesecke & Devrient StarSign USB Token" }, - { "3BFD1800008131FE45534C4A35324778787979797A52AA", "The National Health Insurance Card issued by the National Health Insurance Administration Ministy of Health and Welfare in Taiwan (HealthCare)\nhttps://www.nhi.gov.tw/English/Content_List.aspx?n=320832076C00692B&topn=BCB2B0D2433F6491" }, - { "3BFD1800008131FE458031806540907B01518307900055", "Croatian Health Care card" }, - { "3BFD1800008131FE4580318153474531738421C081072E", "Georgian ID Card" }, - { "3BFD1800FF80B1FE451F078073002113574A5448613147005F", "Activkey Sim\nhttp://www.actividentity.com/products/activkey_usb_tokens__home.php" }, - { "3BFD1800FF80B1FE451F078073002113574A54486131480050", "G&D Sm@rtCafe Expert 64 v2" }, - { "3BFD1800FF80B1FE451F078073002113574A544861314A0052", "e-CPF issued by AASP (Lawyers Association of Sao Paulo, Brazil)" }, - { "3BFD1800FF8131FE4543494247555A494A324130383158", "Caregiver card for Dutch Medical System called UZI\n(Unieke Zorgverlener Identificatie, Caring Unique Identification)" }, - { "3BFD9100FF918171FE40004120004100818031C073D621C0D8", "Sparkasse Hanau - German contactless GeldKarte (PPSE, girogo)\nhttps://www.geldkarte.de/_www/en/pub/geldkarte/service_navigation/about_us.php" }, - { "3BFD9400008131204380318065B08302047E83009000B6", "GXPPRo-R3.x STD PTS T=1\nLatvian Digital Signature Card (cold)\nhttp://www.eme.lv/" }, - { "3BFD940000813160658031C0694D54434F5373010111E0", "MTCOS Light\nhttp://www.masktech.de/products/mtcoslight/index.html" }, - { "3BFD940000813160658031C0694D54434F5373010116E7", "Polish student card (eID)" }, - { "3BFD9500008131FE41008C0F17BD008C000000000030F2", "Khmer Identify Card (eID)" }, - { "3BFD9600008031FE45534C4A35324778787979797A5225", "TIPL (Other)" }, - { "3BFD9600008131204380318065B0831100C88300900015", "Gemalto TOP IM GX4 MSA081, T=1 (PKI)" }, - { "3BFD9600008131204380318065B0831148C883009000", "Pay TV" }, - { "3BFD9600008131484280318065B0840100C883009000", "Optelio Cards (D38-D72 R6) T=1 High Speed" }, - { "3BFD9600008131804380318065B0850100D683019000BC", "Queensland Drivers' Licence (Australia) (eID)" }, - { "3BFD9600008131FE4500000152332980000000000000A9", "DPI Guatemala (eID)\nhttp://www.renap.gob.gt/" }, - { "3BFD9600008131FE450000015233672000000000000047", "DPI Guatemala (eID)\nhttps://www.renap.gob.gt/servicios/que-es-el-dpi" }, - { "3BFD9600008131FE4500000161638620000000000000C5", "Renap Guatemala (eID)" }, - { "3BFD9600008131FE450000016687038000000000000003", "DPI (Documento Personal de Identificacion) Guatemala (eID)" }, - { "3BFD9600008131FE45534C4A353247444C313238435257", "Universal JCard (Contact) with Infineon SLE78 (JavaCard)\nhttp://www.usmartcards.co.uk/cards/universal-jcard-contact-with-infineon-sle78-white-gloss-pvc-card.html" }, - { "3BFD9600008131FE45534C4A35324778787979797A5224", "J3R180 (JavaCard)" }, - { "3BFE130000108080318066B0840C016E0183009000", "Sberbank of Russia MIR debit card (Bank)" }, - { "3BFE1300008131FE454A434F5076323431204C4F542057B1", "LOT test card (JavaCard)\nwww.lotgroup.eu" }, - { "3BFE1800008031FE454573744549442076657220312E30A8", "Estonian Identity Card (EstEID 3.0 'JavaCard' cold)" }, - { "3BFE1800008031FE4553434536302D43443038312D6E46A9", "G&D Sm@rtCafe Expert 6.0 (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~684/smartcafe-expert-6-0-80k-dual-/p/index.shtml" }, - { "3BFE1800008031FE4553434536302D43443134352D6E46A0", "Smart Cafe Expert 6.0, Java Card 3.0 (PKI)" }, - { "3BFE1800008031FE45803180664090A4162A0083019000E1", "Estonian Identity Card (EstEID 3.0 'JavaCard' warm)" }, - { "3BFE1800008031FE45803180664090A4162A00830F9000EF", "iEstonian Identity Card (EstEID 3.0 (18.01.2011) warm)" }, - { "3BFE1800008031FE45803180664090A5102E03830F9000EF", "Infineon jTOP SLE78 SLJ52GCA080CL IFX v46.03 (JavaCard) (JavaCard)" }, - { "3BFE1800008031FE45803180664090A5102E038381900061", "Infineon Trust-P (JavaCard)" }, - { "3BFE1800008031FE45803180664090A5102E1083019000F2", "Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 (JavaCard)" }, - { "3BFE1800008131FE458031815448534D31738021408107FA", "Smartcard-HSM\nhttp://www.cardcontact.de/products/sc-hsm.html" }, - { "3BFE1800FF8131FE454A3231024103479049544356008044", "Brazilian Army ID Card (eID)" }, - { "3BFE1800FF8131FE456368616E67696E677465634A33445E", "xgames pki (eID)" }, - { "3BFE9100FF918171FE40004120001177C1000000000000000089", "Tangem Tap It cryptocurrency hardware wallet (Other)\nhttps://tangem.com/" }, - { "3BFE9100FF918171FE400041200051779180318065B0850300FB", " Italian Card Identity (CIE Comune di Parma) (eID)\nhttp://www.comune.parma.it/servizi/Servizi-Demografici-Carta-di-identita/Carta-di-identita-Elettronica-CIE_A2_C100_P96.aspx" }, - { "3BFE9100FF918171FE40004128000180810073C840000090004D", "Philips SmartMX chip (IBMs JCOP OS)" }, - { "3BFE9100FF918171FE40004128001133B04A434F5033315632C4", "JCOP31 72K\ndual interface functionality, 1K Mifare emulation." }, - { "3BFE9100FF918171FE400041380011F7B14A434F503234325211", "SwissPass (Transport)\nhttps://www.swisspass.ch" }, - { "3BFE9100FF918171FE40004138002180718066B00701010707B7", "Java Gemalto R7 (contactless) (Bank)" }, - { "3BFE9100FF918171FE40004138002180818065A2010201317210", "Santander TUI Brazil (Bank)\nhttp://www.santanderuniversidades.com.br/Paginas/home.aspx" }, - { "3BFE9100FF918171FE40004138002180818066B00701017707B7", "Java Gemalto R5 (contactless) (Bank)" }, - { "3BFE940000801F42803180664750204583018301900002", "TATA Docomo UICC (Telecommunication)\nhttp://www.tatadocomo.com/" }, - { "3BFE9400FF80B1FA451F034573744549442076657220312E3043", "Estonian Identity Card (EstEID v1.0 cold)\nEstonian Identity Card (EstEID v1.1 'MULTOS' warm)" }, - { "3BFE9600008031FE4380738400E065B0850400FB8290004E", "EU smart tachograph card (driver/company/control/workshop)\nhttps://dtc.jrc.ec.europa.eu/" }, - { "3BFE9600008131FE45803180664090A5102E03830190006E9000", "Swissbit PS-100u (JavaCard)\nhttps://www.swissbit.com/ps-100u/" }, - { "3BFE9600FF8131FE455DFF6D6553414D2076312E302E320C", "SAM module for Kharkiv E-ticket (mikroelektronika) (JavaCard)\nhttp://www.mikroelektronika.com/en/card-and-ticket-validators" }, - { "3BFE9600FFC00A31FE4D4573744549442076657220312E309B", "Estonian Identity Card (EstEID v1.1 compatible)\nhttp://www.id.ee/?id=11019&&langchange=1" }, - { "3BFF..00008131..4380318065B0........120FFE829000..", "IDPrime MD 8840, 3840, 3810, 840 and 830 Cards T=1" }, - { "3BFF..00FF8131..456563............................", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ..." }, - { "3BFF0000FF8131FE458025A000000056575343363530000000", "SafeNet SC650" }, - { "3BFF00FF8131..456563............................", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ..." }, - { "3BFF1100008131FE4D8025A00000005657444B3333300600D0", "Datakey 32K PKI Smart Card Model 330\nhttp://www.datakey.com/products/smart_cards/products_sc_330.shtml" }, - { "3BFF1100008171404200002101314252000[05]63........9000.*", "Smart Card 'The Smart Way to Login'\nUsed on Acer TravelMate to secure boot" }, - { "3BFF11000240648069A2070103570000FF0083009000", "Gemplus GemXpresso" }, - { "3BFF1100FF8131FE9580F9D2760000255444010083000000A0", "GiroCard Haspa Hamburger Sparkasse (Bank)\nhttps://www.haspa.de/privatkunden/ihr-online-banking/unser-angebot/haspa-digital-services-96198/" }, - { "3BFF13000010003100DE525001001500000000000000", "wisely debit (Bank)\nhttps://www.mywisely.com/" }, - { "3BFF13000010003101F1564011001900000000000000", "BVG Guthabenkarte (Prepaid Payment Card for Berlin/Brandenburg Public Transport) (Transport)\nhttps://www.bvg.de/de/service-und-kontakt/guthabenkarte\nRevolut Visa Glow-in-the-dark\nhttps://revolut.com/\nMasterCard debit - PayCenter - Corporate Benefit 'Sachbezugskarte' (Bank)\nhttps://paycenter.de/sachbezugskarte/" }, - { "3BFF13000010003101F1564011001D00000000000000", "albo (Bank)\nhttps://www.albo.mx/" }, - { "3BFF1300008131FE450031B9640404ECC17394018082900052", "AKD kID (eID)\nhttps://www.id.hr" }, - { "3BFF1300008131FE450031B9640444ECC17394018082900012", "Croation personal ID card (eID)\nhttp://eid.hr/" }, - { "3BFF1300008131FE4543433169A92000002020202020200036", "Swiss Lunch Check Wallet Card (Bank)\nhttps://lunchcheck.ch" }, - { "3BFF1300008131FE4543443269A94100002020202020200053", "Visa credit card (Viseca Card Services SA, Switzerland) (Bank)\nhttps://www.viseca.ch/privatkunden/kreditkarten\nVisa credit card, UBS Switzerland (Bank)" }, - { "3BFF1300008131FE45434433690940000020202020202000F3", "VISA credit card (LBBW/Payback VISA) (Bank)" }, - { "3BFF1300008131FE454F574F4B31302D4A................", "OWOK (One Web, One Key) login card\nhttp://www.reiner-sct.com/owok/\nReiner SCT loginCard\nhttps://cardlogin.reiner-sct.com/" }, - { "3BFF1300008131FE4D8025A00000005657444B3333300600D2", "Datakey DCOS model 330 (DKCCOS 6.0 token)" }, - { "3BFF1300918131FE4141434F532046696F6E6131204C6336F4", "TURKEY A101 HADI APP CARD (Bank)\nhttps://a101hadi.a101.com.tr/" }, - { "3BFF1300FF10000031C173082110645631424E079000", "Credit card (Bank)" }, - { "3BFF1300FF10000031C1738211064414D33470779000", "Visa Debit (Bank)\nhttps://www.chase.com/" }, - { "3BFF1300FF10000031C173C821106441443533079000", "BRADESCO-CONTA SALARIO (Bank)" }, - { "3BFF1300FF10000031C173C8211064414D3037079000", "UP Day Ticket Restaurant Card (Other)\nhttps://www.day.it/login" }, - { "3BFF1300FF10000031C173C8211064414D3130079000", "Tangerine MasterCard (Bank)\nhttps://www.tangerine.ca/en/products/spending/creditcard/money-back/" }, - { "3BFF1300FF10000031C173C8211064414D3137079000", "PayPal Business Debit mastercard (Bank)\nhttps://www.paypal.com/merchantapps/appcenter/makepayments/bdmc" }, - { "3BFF1300FF10000031C173C8211064414D3330079000", "VISA card issued by ING-DiBa AG (Germany) (Bank)" }, - { "3BFF1300FF10000031C173C8211064414D3331079000", "NAB VISA Debit (contact interface) (Bank)\nhttps://www.nab.com.au/" }, - { "3BFF1300FF10000031C173C8211064414D3337079000", "VISA Credit Card (Postbank), Germany (Bank)" }, - { "3BFF1300FF10000031C173C8211064414D3341079000", "BBVA debit card Uruguay. MIFRE Plus compatible. (Bank)\nScotiabank Passport Visa Infinite credit card (Bank)\nhttps://www.scotiabank.com/ca/en/personal/credit-cards/visa/passport-infinite-card.html" }, - { "3BFF1300FF10000031C173C8211064414D3343079000", "MasterCard issued by President's Choice Bank (Canada) (Bank)\nhttp://pcfinancial.ca/mastercard" }, - { "3BFF1300FF10000031C173C8211064414D3344079000", "VISA debit emitted by FinecoBank (Bank)\nhttps://finecobank.com/" }, - { "3BFF1300FF10000031C173C8211064414D3347079000", "Chase Visa Debit Card (Bank)\nhttps://www.chase.com/bankinghelp" }, - { "3BFF1300FF10000031C173C8211064414D3348079000", "BBVA blue VISA Debit Card (Bank)\nhttps://www.bbva.es/en/personas/productos/tarjetas/tarjeta-joven-ahora.html\nDesjardins Bonus Visa credit card (Bank)\nhttps://www.desjardins.com/ca/personal/loans-credit/credit-cards/bonus-visa/index.jsp" }, - { "3BFF1300FF10000031C173C8211064414D3430079000", "PNC BUSINESS VISA DEBIT (Bank)\nhttps://www.pnc.com/en/small-business/payments-and-processing/payment-cards/pnc-bank-visa-business-debit-card.html" }, - { "3BFF1300FF10000031C173C82110644930424E079000", "National Bank Debit Card with expiration date and cvv code (Bank)" }, - { "3BFF1300FF10000031C173C82110644932424E079000", "Interact, Visa Debit Bank of Novia Scotia (Bank)\nhttps://www.scotiabank.com/global/en/credit-card-terms-and-conditions.html" }, - { "3BFF1300FF10000031C173C82110644D30424E079000", "Debit payment card (Rabobank NL) (Bank)\nhttps://www.rabobank.nl/en/business/making-and-receiving-payments/payments/paying-with-your-bank-card" }, - { "3BFF1300FF10000031C173C82110644D30434E079000", "Huntington (Bank)" }, - { "3BFF1300FF10000031C173C82110645630424E079000", "Rabobank Netherlands VISA debit (Bank)" }, - { "3BFF1300FF10000031C173C82110645631424E079000", "Portuguese 'BancoCTT' Bank Card (Bank)\nhttps://www.bancoctt.pt/o-seu-dia-a-dia/cartao-de-credito-banco-ctt" }, - { "3BFF1300FF10000031C173C82110645631434E079000", "Chase Freedom Unlimited Credit Card (Bank)" }, - { "3BFF1300FF10808031E06B04310502AF555555555555", "USAA EMV Visa Debit Card (Bank)" }, - { "3BFF1300FF10808031E06B071405028A555555555555", "Tangerine Debit Card (Bank)\nhttps://www.tangerine.ca" }, - { "3BFF1300FF10808031E06B08240502B5555555555555", "Tangerine Canada Interac debit card (Bank)\nhttps://www.tangerine.ca/" }, - { "3BFF1300FF8031FE45534653452D43583332322D5601010165", "Portugal Santander Totta Universitarios 'Associacao Academica de Coimbra'" }, - { "3BFF1300FF8031FE45534653452D43583332322D5618020876", "SmartCafe Expert Java" }, - { "3BFF1300FF8031FE45534653452D43583332322D5618030877", "Giesecke & Devrient SmartCafe Expert 32K v2.0 #2" }, - { "3BFF1300FF8131FE45656311045002800008390004020502E9", "German 'Geldkarte' supplied by the Deutsche Bank in Karlsruhe,\nBaden-Wurttemberg, Germany." }, - { "3BFF1300FF8131FE45656311045002800008540004230502A5", "Maestrocard/Geldkarte (Stadtsparkasse Haltern, Germany)" }, - { "3BFF1300FF8131FE5D8025A00000005657444B33323005003F", "Datakey DCOS model 320" }, - { "3BFF1300FF910131FE210031C173C82110644D30434E07900094", "AirPlus MasterCard Commercial (Bank)\nhttps://www.airplus.com/us/en/products-solutions/products/corporate-cards/corporate-cards.html" }, - { "3BFF1300FF910131FE4141434F5320486F6C6C7931204C633665", "OEAMTC Visa Club Card (Bank)\nhttps://www.oeamtc.at/mitgliedschaft/leistungen/die-oeamtc-kreditkarte-31091443" }, - { "3BFF1300FF918131FE4141434F532046696F6E6131204C6336F4", "Deutsche Kreditbank Debit (Bank)" }, - { "3BFF1300FF918131FE4141434F53204769756C6961204C6336B5", "revolut debit visa (Bank)\nhttps://www.revolut.com/" }, - { "3BFF1300FF918131FE4541434F53204449616E6132204C6336DF", "Alior Bank MasterCard debit (Bank)\nComdirect (Deutsch Bank) debit VISA (AUSTRIACARD 56015/001) (Bank)" }, - { "3BFF1400FF8131FE458025A000000056575343363530010039", "SafeNet SC650 (PKI)\nhttp://www.safenet-inc.com/data-protection/authentication/smartcard-650/" }, - { "3BFF1400FF8131FE458025A000000056575343363530030239", "SafeNet SC650 v3.2 (PKI)\nhttp://www.safenetat.com/products-solutions/high-assurance-authentication/sc650/" }, - { "3BFF1400FF8131FE458025A00000005657534336353004003C", "SafeNet AT SC650 V4.0 02/2018 (PKI)\nhttps://www.safenetat.com/Solutions/Enterprise-Security/high-assurance-authentication/sc650/" }, - { "3BFF1800008131FE45006B04050100011101434E5310318069", "Sanitary Card of 'Friuli Venezia Giulia' region (Italian Republic)\nCarta Nazionale dei Servizi (Italia)\nhttp://cartaservizi.regione.fvg.it/" }, - { "3BFF1800008131FE45006B040501000112024850431031806C", "Carta del Professionista Sanitario - CNS - Provincia autonoma di Trento\nProfessional Health card, Autonomous Province of Trento" }, - { "3BFF1800008131FE45006B0405010001210143494510318048", "hybrid card for various health services and regional services (access to various organizations and digital signatures)" }, - { "3BFF1800008131FE45006B04050100012101434E5310318059", "CNS - Carta Nazionale dei Servizi (Italia)\nPA emittente: Regione Autonoma della Sardegna\nCarta del Servizio Sanitario Regionale - Emilia Romagna" }, - { "3BFF1800008131FE45006B05051017012101434E531031805E", "Regional Card - Regione Liguria, Veneto - Italy (eID)\nTessera Sanitaria - Carta Regionale dei Servizi" }, - { "3BFF1800008131FE45006B05052000012101434E5310318079", "health card (HealthCare)\nhttps://tscns.regione.sardegna.it/" }, - { "3BFF1800008131FE45006B0505200001F101434E53103180A9", "national health service card (HealthCare)\nhttps://ca.arubapec.it/downloads/MU_LINUX.zip" }, - { "3BFF1800008131FE45006B0505912001F101434E5310318038", "Italian Health Card (TS) and Citizen's Card (CNS) based on IDEMIA ID-One CNS v2 on Cosmo 9.1 (HealthCare)" }, - { "3BFF1800008131FE45006B11050700011101434E531131807B", "Italian National Fire Corps -special identification card (eID)" }, - { "3BFF1800008131FE45006B11050700012101434E531031804A", "Oberthur ID-One Cosmo V7-n it's a java card 2.2.2\nIzenpe Certificado Ciudadano (eID)\nhttps://www.izenpe.eus/informacion/certificado-ciudadano/s15-content/es/" }, - { "3BFF1800008131FE4D8025A00000005657444B3430300600DD", "DataKey 400 (DK400)" }, - { "3BFF1800008131FE55006B02090403010101434E5310318065", "Italian Chambers of Commerce CNS (PKI)\nhttp://www.card.infocamere.it/infocard/pub/" }, - { "3BFF1800008131FE55006B0209040301010144534410318068", "ACA (Lawyer Identifier Card) (eID)" }, - { "3BFF1800008131FE55006B02090503010101434E5310318064", "Bit4id J-SIGN 2048 (L) (PKI)\nhttps://www.bit4id.com/en/j-sign/" }, - { "3BFF1800008131FE55006B02090603010101434E5310318067", "ST microelettronics JSign3 (HealthCare)" }, - { "3BFF1800008131FE55006B02090703010101434E5310318066", "Aruba digital signing card (eID)\nhttps://www.aruba.it" }, - { "3BFF1800008131FE55006B02091403010101434E5310318075", "Smart Card INFOCERT digital key CNS from CST PADOVA (eID)" }, - { "3BFF1800008131FE55006B02091717010101434E5310318062", "Carta Nazionale dei Servizi (CNS) Centro Servizi Territoriali (CST) (PKI)\nhttp://cst.provincia.padova.it/category/faq/firma-digitale" }, - { "3BFF1800FF8031FE45534653452D43583332322D561803087C", "Giesecke & Devrient Sm@rtCafe Expert 2.0" }, - { "3BFF1800FF8031FE45536D4072744361666545787065727465", "Giesecke & Devrient SmartCafe 32K v1" }, - { "3BFF1800FF8131..456563............................", "Geldkarte (generic ATR)" }, - { "3BFF1800FF81313C4565630D02310250001090002600041009", "Maestrocard/Geldkarte (Postbank, Germany)" }, - { "3BFF1800FF81313C4565630D0231025000109001550004107B", "Volksbank VR-BankCard (GeldKarte)" }, - { "3BFF1800FF81313C4565630D02310250001090052900041003", "Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany)" }, - { "3BFF1800FF81313C4565630D023102500010900788000410A0", "HBCI-Karte (Berliner Sparkasse, Germany)" }, - { "3BFF1800FF81313C4565630D023102500010901382000410BE", "Bremer Karte ('Geldkarte und BSAG-Kundenkarte in einem.')\nhttp://www.bsag.de/4911.php" }, - { "3BFF1800FF81313C4565630D0231025000109014060004103D", "Geldkarte/HBCI(DDV-1) (Staedtische Sparkasse Offenbach, Germany)" }, - { "3BFF1800FF81313C4565630D0231025000109014440004107F", "Geldkarte/HBCI (Kreissparkasse Ebersberg, Deutschland)" }, - { "3BFF1800FF81313C4565630D0231025000109055700004100A", "EC-Card from DKB (Deutsche Kreditbank AG)" }, - { "3BFF1800FF81313C4565630D02310280001224300020041059", "Geldkarte (Germany)" }, - { "3BFF1800FF813150456563............................", "GeldKarte v3 (Germany)" }, - { "3BFF1800FF8131FE4065631116710156000F1309D0A957111B", "Harzer Volksbank eG bank card (girocard, V-PAY, debit card, Germany / Giesecke & Devrient, DG Nexolution, 10/22) (Bank)\nhttps://www.harzer-volksbank.de/privatkunden/girokonto-kreditkarten/bankkarte-v-pay.html" }, - { "3BFF1800FF8131FE4165630608710156000FB85073204712D8", "Commerzbank maestro (Bank)\nhttps://www.commerzbank.de/konten-zahlungsverkehr/produkte/girokonten/kostenloses-girokonto/" }, - { "3BFF1800FF8131FE4165630608710156000FB8602AA0471231", "Debit card (Germany): Postbank - GeldKarte (EUR), girocard, V-PAY (Bank)\nhttps://www.postbank.de/" }, - { "3BFF1800FF8131FE41656306087102500023B80080C04712B2", "1822direct Bank Card (Bank)\nhttps://www.1822direkt.de" }, - { "3BFF1800FF8131FE41656306087102500023B8907360471271", "Debit card (Germany): Deutsche Kreditbank (DKB), ec-cash, (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, - { "3BFF1800FF8131FE4165631116710156000F0902904E5711AC", "German Bank Card IDEMIA 9 Maestro/Girocard (Sparkasse S-Payment TPY 1974693D) (Bank)" }, - { "3BFF1800FF8131FE4165631116710156000F0908309A5711D2", "Bank card from German Bank 'Sparkasse', issued by manufacturer 'S-Payment GmbH' (Bank)" }, - { "3BFF1800FF8131FE4165631116710156000F16082024571163", "German Sparkasse with visa (Bank)\nhttps://www.sparkasse.de/lp/echtesmultitalent.html#alle-funktionen" }, - { "3BFF1800FF8131FE450031C573C00180547615020105900074", "SIGILANCE NFC OpenPGP Smart Card (JavaCard)\nhttps://www.sigilance.com/" }, - { "3BFF1800FF8131FE455448434331305445434F4744484E3224", "National Health Insurance Card, Taiwan" }, - { "3BFF1800FF8131FE455448434331305445434F4744494E3126", "National Health Insurance Card, Taiwan" }, - { "3BFF1800FF8131FE4565630D0450028000089009700005002A", "Landesbank baden-Wurttemberg Geldkarte" }, - { "3BFF1800FF8131FE4565630D07630528000D90810600061558", "Geldkarte/HBCI (Frankfurter Sparkasse, Germany)" }, - { "3BFF1800FF8131FE4565630D07630764000D........0615..", "Giesecke & Devrient GmbH\nROM Mask=SDP2G330.E_1 (BES0), SWP2G370.E_1 (CS0)\nInit-Table=ecD6.3\nSignaturerstellungseinheit ZKA TUVIT.09397.TU.03.2005 Banking Signature Card, v6.31 NP, Type 3\nTUVIT.09397.TU.03.2005" }, - { "3BFF1800FF8131FE4565630D07630764000D9058450006158C", "Stadtsparkasse Munchen electronic cash card / Geldkarte" }, - { "3BFF1800FF8131FE4565630D07630764000D907307000615E5", "Sparkasse Acchen HBCI Geld Karte" }, - { "3BFF1800FF8131FE4565630D07630764000D907432000615D7", "German HBCI-Banking Card with 'Geldkarte' from the bank 'Sparkasse Marburg-Biedenkopf'" }, - { "3BFF1800FF8131FE4565630D07630764000D90926100061562", "Geldkarte (Frankfurter Sparkasse, Germany)" }, - { "3BFF1800FF8131FE4565630D08650764000D........0616..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.5\nInit-Table=SWP3G5J0.E_1 (CS0)\nSignaturerstellungseinheit ZKA Banking Signature Card, v6.51\nTUVIT.93129.TU.03.2006" }, - { "3BFF1800FF8131FE4565630D08650764000D9104900006160E", "German Railway's (Deutsche Bahn AG) 'Konzernausweis'" }, - { "3BFF1800FF8131FE4565630D0C760764000D9581200007300F", "Master Card Credit Card issued by WGZ bank (all german volksbank institutes use them)" }, - { "3BFF1800FF8131FE4565630D0C760764000D960361000730CF", "VR-Networld-Card with SECCOS-chip / Volksbank eG Konstanz\nfor Online-Banking (FinTS / HBCI-3.0 + EBICS; RD 01/12 NetWorld)" }, - { "3BFF1800FF8131FE456563110350028000082770020605018A", "old banking card (electronic-card / Maestro / Geldkarte) of the\n'Volksbank Gelderland eG' (around 2003)" }, - { "3BFF1800FF8131FE4565631105400250001055100303050043", "belongs to a banking card (electronic-card / Maestro / Geldkarte).\nthe bank calls it 'VR-BankCard'. the banks name is 'Volksbank\nGelderland eG' and is part of the 'Volksbanken und Raiffeisenbanken'\nhttp://www.vb-gelderland.de/html/5/2394/rubrik/1282.html" }, - { "3BFF1800FF8131FE45656311064002500010........0500..", "Gemplus-mids GmbH,\nROM Mask=ZKA 322 V5A,\nInit-Table=SWI1P070.E_0 (CS0),SDI1P080.E_1 (BES0),\nSignaturerstellungseinheit ZKASignaturkarte v5.02,\nTUVIT.09385.TU.09.2004" }, - { "3BFF1800FF8131FE4565631106400250001005500310050043", "HBCI-Karte (Bordesholmer Sparkasse, Germany)" }, - { "3BFF1800FF8131FE4565631106400250001019100420050028", "Stadtsparkasse Munchen HBCI card / Geldkarte" }, - { "3BFF1800FF8131FE4565631106400250001025600512050057", "Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany)" }, - { "3BFF1800FF8131FE4565631106400250001027300216050006", "GeldKarte from Sparkasse bank" }, - { "3BFF1800FF8131FE4565631106400250001027800325050084", "Volksbank VR-BankCard (GeldKarte)" }, - { "3BFF1800FF8131FE456563110640025000102850011105006D", "HBCI Bancing Card of Sparkasse Pforzheim" }, - { "3BFF1800FF8131FE45656311066202800011........0613..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.2,\nInit-Table=SDI1G280.E_1 (BES0),\nSignaturerstellungseinheit ZKA Banking Signature Card, v6.2b NP & 6.2f NP, Type 3\nTUVIT.09395.TU.01.2005" }, - { "3BFF1800FF8131FE4565631106620280001106600304061387", "Geldkarte (Volksbank Offenburg, Germany)" }, - { "3BFF1800FF8131FE45656311066202800011165005170613B2", "FinTS (BBBank Karlsruhe, Germany)" }, - { "3BFF1800FF8131FE456563110662028000112090030906135C", "Geldkarte [ec, Maestro] (1822 direkt Frankfurter Sparkasse, Germany)" }, - { "3BFF1800FF8131FE45656311066202800011435001170613E3", "EC-Card of Sparkasse Pforzheim Calw" }, - { "3BFF1800FF8131FE45656311075102500010728000020620C6", "Maestro Card Deutsche Kredit Bank (DKB) / Germany" }, - { "3BFF1800FF8131FE45656311076402800011........0619..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.4\nInit-Table=SDI2G4G0.E_4 (BES0), SWI2G4H0.E_2 (CS0)\nSignaturerstellungseinheit ZKA 17.01.2006 Banking Signature Card, v6.4\nTUVIT.93123.TU.01.2006" }, - { "3BFF1800FF8131FE45656311084302500010........0530..", "Gemalto\nROM Mask=ZKA 680 V5A\nInit-Table=SSI3P3M6E_1 (MS0)\nMassen-Signaturerstellungseinheit ZKA Banking Signature Card, Version 5.11M\nTUVIT.93148.TU.06.2007" }, - { "3BFF1800FF8131FE4565631108430250001046500108053027", "HBCI-Karte (Sparkasse Altmark-West, Salzwedel, Germany)" }, - { "3BFF1800FF8131FE45656311084302500010847001040530C9", "HBCI Card (1822 direkt Frankfurter Sparkasse, Germany) Geldkarte [ec, Maestro]" }, - { "3BFF1800FF8131FE45656311086602800011........0620..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.6\nInit-Table=SDI3G6G0.E_3 (BES0), SSI3G6M0.E_2 (S0), SWI3G6H0.E_3 (CS0)\nSignaturerstellungseinheit ZKA Banking Signature Card, Version 6.6\nTUVIT.93130.TU.05.2006 - 2. Nachbestatigung" }, - { "3BFF1800FF8131FE45656311086602800011405003180620D4", "banking card (electronic-card / Maestro / Geldkarte). the bank+calls\nit 'S-Card' or 'Sparkassen-Card'. the banks name is 'Stadtsparkasse\nDuesseldorf' and is part of the 'Sparkassen-Finanzgruppe' (a finance\ngroup, network of local banks)." }, - { "3BFF1800FF8131FE4565631108660280001156000318062092", "Geldkarte [ec, Maestro] (Sparkasse Langen-Seligenstadt, Germany)" }, - { "3BFF1800FF8131FE4565631901500280000F........0512..", "SAGEM ORGA GmbH\nROM Mask=SecV1.5.3\nInit-Table=SDR0O1G0.A_B (BES0), SWR0O1H0.A_5 (CS0)\nSignaturerstellungseinheit ZKA SECCOS Sig v1.5.3\nBSI.02076.TE.12.2006" }, - { "3BFF1800FF8131FE4565631A01410250001052090567051021", "Maestro/Geldkarte (BBBank Karlsruhe, Germany)" }, - { "3BFF1800FF8131FE55006B02090200010101434E531031809F", "Carta Nazionale dei Servizi - InfoCamere" }, - { "3BFF1800FF8131FE55006B0209020001010144534410318092", "Postcom S.P.A. (digital certificate)" }, - { "3BFF1800FF8131FE55006B02090200011101434E531031808F", "Carta Regionale dei Servizi - Regione Lombardia" }, - { "3BFF1800FF8131FE55006B02090200011101434E531131808E", "Infocamere CNS" }, - { "3BFF1800FF8131FE55006B02090300011101434E531131808F", "Card description: Multiservice Card - CMCC - Arma Carabinieri (Carta Multiservizi)" }, - { "3BFF1800FF8131FE55006B02090303010101434E531031809D", "Aruba CNS for Regione Toscana (IT)\nhttp://www.regione.toscana.it\nAruba CNS for Infocamere (the Chambers of Commerce)" }, - { "3BFF1800FF8131FE55006B0209030301010144534410318090", "Postecert (www.postecert.it) to legally sign documents" }, - { "3BFF1800FF8131FE55006B02090303011101434E531131808C", "Infocert 1205* smart card\nUniversita' Degli Studi di Torino (Infocert)" }, - { "3BFF1800FF8131FE55006B0209040301010144534410318097", "J-Sign (STMicroelectronics S.r.l. - Incard Division) (JavaCard)" }, - { "3BFF1800FF8131FE55006B02091300024954494420203180D3", "electronic identity card (PKI)" }, - { "3BFF1800FF8131FE55006B02091301011101434E531131809E", "Service card of the Ministry of Defense of Italy" }, - { "3BFF1800FF8131FE55006B0209130301000150534510318094", "Italian Electronic ID Card (eID)\nhttp://www.interno.gov.it/mininterno/site/it/temi/servizi_demografici/scheda_006.html" }, - { "3BFF1800FF8131FE55006B02091303010101434E531031808D", "Aruba Digital Signature (Other)\nhttps://www.pec.it/offerta-firma-digitale.aspx" }, - { "3BFF1800FF8131FE55006B02091303011101434E531131809C", "Politecnico di Torino Student Card (eID)\nhttp://www.polito.it/" }, - { "3BFF1800FF8131FE55006B02091617011101434E531131808D", "Carta Regionale dei Servizi - Regione Autonoma Friuli Venezia Giulia (HealthCare)\nhttps://www.regione.fvg.it/rafvg/cms/RAFVG/GEN/carta-regionale-servizi/" }, - { "3BFF1800FF8131FE55006B02091717011101434E531131808C", "european health insurance card and Regional (ItalY - Provincia Autonoma di Trento) Service Card (CPS) (eID)\nhttps://www.provincia.tn.it/Servizi/Attivare-la-Carta-Provinciale-dei-Servizi-CPS#cos_e" }, - { "3BFF1800FF8131FE55006B42495434494420312E3000900091", "Touch&Sign 2048 (PKI)" }, - { "3BFF1800FF8131FE55006B42495434494420322E3000900092", "Izenpe Green Card (Citizen Certificate) (eID)\nhttp://www.izenpe.com/s15-12020/en/contenidos/informacion/ciudadano/en_def/index.shtml" }, - { "3BFF1800FFC10A31FE55006B0508C805011101434E531031800C", "Carta Regionale dei Servizi - Regione Lombardia" }, - { "3BFF1800FFC10A31FE55006B0508C809011101434E5310318000", "Carta regionale dei servizi - Regione Sicilia\nhttp://www.regione.sicilia.it/crs/index.asp" }, - { "3BFF1800FFC10A31FE55006B0508C80A011101434E5310318003", "Carta Regionale dei Servizi - Regione Lombardia" }, - { "3BFF1800FFC10A31FE55006B0508C80C011101434E5310318005", "Healthcare card (TS-CNS) - Provincia Autonoma di Trento\nUnified Healthcare card (TS-CNS) - Repubblica Italiana" }, - { "3BFF32000010808031E05B4742500000000000000255", "UK NatWest BT PayToView Mondex" }, - { "3BFF6700008131FE45FF43727970746E6F784649444F32305F", "Fast Identification Online card (FIDO2) from Cryptnox manufacturer (Other)\nhttps://www.cryptnox.ch" }, - { "3BFF9100FF918171FC40000A654B5450304432654B5450043D5B62", "Indonesian eID (eID)" }, - { "3BFF94000000434D425F55425369676E3030303215", "UBS Access Card used for online banking with UBS in Switzerland.\nIt resides in a calculator like token, that is used for a challenge\nresponse when logging in." }, - { "3BFF940000400A80310073122113574A330E01314100", "O2 Loop SIM card" }, - { "3BFF940000400A80310073122113574A330E02314100", "GSM-SIM Beeline RU (Telecommunication)\nhttp://beeline.ru" }, - { "3BFF940000400A80310073122113574A330E02324100", "Turkcell SIMPlus64 / Turkey" }, - { "3BFF940000400A80310073122113574A330E10314100", "GSM SIM MEDIONmobile (MVNO) the Netherlands (Telecommunication)" }, - { "3BFF940000801F478031E073FE210000000000830F900052", "Telecommunication SIM (Telecommunication)" }, - { "3BFF9400008131804380318065B0850201F3120FFF82900079", "Serbian Identity Card (eID)\nJava Card (Sealys MultiApp ID v2.1) supporting Global Platform 2.1.1" }, - { "3BFF9400008131FE4380318065B0846160FB120FFD8290000E", "IDPrime 930 FIPS Level 3 (T=1 CT=94) (BAI4) (PKI)" }, - { "3BFF940000C00AB1FE491F438031E073F62113573436434132302068", "Sonera UICC (Telecommunication)" }, - { "3BFF9400FF400A80310073122113574A332009314100", "Globul GSM operator card (Bulgaria) (Telecommunication)" }, - { "3BFF9400FF80B1FE451F030068D276000028FE052231800090001E", "Alice Business card (to be used in the modem supplied by an Italian provider)" }, - { "3BFF9400FF80B1FE451F030068D276000028FF051E318000900023", "D-Trust Signature Card (www.d-trust.net):\n- Citizencard of the People of Ulm in Germany (Burgerkarte)\n- Qualified Electronic Signature Card (Qualifizierte Signaturkarte)" }, - { "3BFF9400FFC00A1F438031E073362113574A43491C3130321C", "Giesecke & Devrient - UniverSIM Pegasus" }, - { "3BFF9400FFC00A1F478031E073F62113574A33200B314141D4", "SIM (Telecommunication)" }, - { "3BFF950000400A80310073122113574A330E10314100", "Verizon GSM SIM (Telecommunication)" }, - { "3BFF9500008031FE4380318067B0850201F3A3018301900045", "Swedish digital tachograph driver smart card (Other)\nhttps://www.transportstyrelsen.se/sv/vagtrafik/Yrkestrafik/Kor--och-vilotider/Fardskrivare/ansokan-om-forarkort/" }, - { "3BFF9500008031FE4380318067B0850201F3A3048301900040", "Company Card for authentication in tachograph applications (Other)\nhttps://ec.europa.eu/transport/modes/road/social_provisions/tachograph/tachonet_en" }, - { "3BFF9500008031FE4380318067B0850201F3A3138301900057", "Driver's Card (Tachograf card) issued by pwpw Poland (Transport)\nhttps://www.pwpw.pl/en/Products/Cards/Cards.html" }, - { "3BFF9500008031FE4380318067B0850201F3A3138301F83BFF", "UK Drivers Tachograph Card (Transport)" }, - { "3BFF950000C00A1F438031E073362113574A330E0231410088", "'BASE' SIM card; BASE is a german mobile phone operator, which is a brand of E-Plus, Germany." }, - { "3BFF95000150801C444E41535034323020526576533430", "Nagra card Canal+ (Polish TV provider) (Pay TV)\nhttps://pl.canalplus.com/" }, - { "3BFF95000150801C444E41535034323020526576533430F1", "NC+ Polland (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, - { "3BFF95000150801C444E41535034323020526576533430F15D", "NC+ Polland (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, - { "3BFF95000150801C444E41535034323020526576533441", "Platforma Canal+ Polska, cayman card (Pay TV)\nhttps://www.flysat.com/canalplus-pl.php" }, - { "3BFF9500FF400A803100731A2113574A504860314147", "Vodafone 64 KB SIM with Javacard" }, - { "3BFF9500FF400A8031E873F62113674A474860314200", "Giesecke & Devrient STARSIM" }, - { "3BFF9500FF50801C444E41535034303020526576493431", "Pay TV card nc+ polish (seca with merlin layer) (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, - { "3BFF9500FF50801C444E41535034303020526576493435", "Decoder card for VOO TV distributer in Belgium (Pay TV)" }, - { "3BFF9500FF50801C444E41535034303020526576493439", "Big TV India (Pay TV)\nhttps://www.lyngsat.com/packages/Big-TV.html" }, - { "3BFF9500FF50801C444E41535034303020526576493441", "Pay TV - NC+ in Poland (Pay TV)\nhttp://ncplus.pl/" }, - { "3BFF9500FF50801C444E41535034303020526576493447", "Platforma Canal+ Polska, cameleon card (Pay TV)\nhttps://www.flysat.com/canalplus-pl.php" }, - { "3BFF9500FF50801C444E41535034303020526576493548", "Canal+ France Nagra3 (Pay TV)\nhttps://www.canalplus.com/" }, - { "3BFF9500FF50801C444E41535034383220526576523038", "CANALSAT, mediaguard key (Pay TV)" }, - { "3BFF9500FFC00A1F438031E073362113574A3320073341411F", "Swisscom 3G SIM card" }, - { "3BFF9500FFC00A1F438031E073F62113574A334857314141E5", "MTNL 3G USIM (India)" }, - { "3BFF9500FFC00A1F438031E073F62113574A334861324147D6", "GSM SIM (issued by e-plus, Germany)" }, - { "3BFF9500FFC00A1F438031E073F62113574A554860324100F6", "GSM SIM from O2 Germany (UMTS ready) from 2005" }, - { "3BFF9500FFC00A1F478031E073F62113574A33200B314141D5", "Telenor SIM card (Norway)" }, - { "3BFF9600008031FE45536D40727443616665204578702E374E", "haruka (eID)" }, - { "3BFF9600008131804380318065B0850300EF12026C829000F9", "Authorization Card (eID)" }, - { "3BFF9600008131804380318065B0850300EF120FFF82900067", "Greek Academic ID (eID)\nhttp://academicid.minedu.gov.gr/" }, - { "3BFF9600008131804380318065B0850300EF12FFFE82900096", "Gematlo IDCore 8030 (JavaCard)" }, - { "3BFF9600008131804380318068B0850300EF780100829000F1", "Cameroon National Identity Card (eID)" }, - { "3BFF9600008131FE4380318065B0845651101201788290006A", "SafeNet eToken 5300 (PKI)" }, - { "3BFF9600008131FE4380318065B08456511012021082900001", "Nedap NexS N:Secure (eID)\nhttps://www.nsecure.nl/nl/" }, - { "3BFF9600008131FE4380318065B0846160FB120FFD8290000C", "IDPrime 930 FIPS Level 2 (T=1 CT=96) (BAI3.1) (PKI)" }, - { "3BFF9600008131FE4380318065B0846566FB12017882900085", "eToken 5110+ FIPS 140-2 Level 2 (JavaCard)" }, - { "3BFF9600008131FE4380318065B0846566FB120FFC8290000F", "SmartID 3930 FIDO Contact and Contactless card (PKI)\nhttps://www.smartcardfocus.com/shop/ilp/id~962/safenet-idprime-3930-fido-dual-interface-fips-l2/p/index.shtml" }, - { "3BFF9600008131FE4380318065B0846669FB12FFFE829000F1", "IDCore3230 build 6.8, test APDU applet (JavaCard)" }, - { "3BFF9600008131FE4380318065B085040011120FFF829000E0", "Pakistan National identity card (eID)" }, - { "3BFF9600008131FE4380318065B085040120120FFF829000D0", "Portuguese National Identity Card (eID) (eID)\nhttps://www.autenticacao.gov.pt/o-cartao-de-cidadao" }, - { "3BFF9600008131FE4380318065B0855956FB12017882900088", "SafeNet 5110 token for eSignature (eID)\nhttps://www.certsign.ro/en/support/safenet-installing-the-device-on-windows/" }, - { "3BFF9600008131FE4380318065B0855956FB120FFC82900002", "THALES SafeNet IDPrime 3940 Fido (PKI)\nhttps://cpl.thalesgroup.com/fr/resources/access-management/idprime-3940-product-brief" }, - { "3BFF9600008131FE4380318065B0855956FB120FFE82900000", "SafeNet eToken 5110 SC (PKI)\nhttps://cpl.thalesgroup.com/access-management/authenticators/pki-usb-authentication/etoken-5110-usb-toke3B 86 80 01 49 44 2D 56 44 56 63n" }, - { "3BFF9600008131FE4580F9A0000003080000100053454E54AC", "cac (eID)" }, - { "3BFF9600008131FE55006B02090403010101434E53103180EB", "Aruba PEC SpA digital signature card made by Incard (eID)\nhttps://www.pec.it/download-software-driver.aspx" }, - { "3BFF960000C00A31FE4380318065B085040011120FFF829000AB", "French National Identity Card (eID) (eID)\nhttps://www.interieur.gouv.fr/actualites/actu-du-ministere/nouvelle-carte-nationale-didentite" }, - { "3BFF9600FF8131FE406563111562025000100A0190A90730BF", "girocard Sparkasse Ansbach, Germany BLZ 76550000 (Bank)" }, - { "3BFF9600FF8131FE406563111562025000100A0271500730A4", "Debitcard Sparkasse Duesseldorf (Bank) (Bank)\nhttps://www.sskduesseldorf.de/" }, - { "3BFF9600FF8131FE4065631D02840156001F190850E10200EF", "Raiffeiesenbank Girocard Maestro (Bank)" }, - { "3BFF9600FF8131FE4065631D028401560024090A10CC0200AB", "Postbank Germany (Bank)\nhttps://www.postbank.de/privatkunden/services.html" }, - { "3BFF9600FF8131FE4065631D028402500023010A60D40200C9", "DKB Girocard (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, - { "3BFF9600FF8131FE4065631D0284025000230308C0B702000A", "German Debitcard from Sparkasse (Bank)" }, - { "3BFF9600FF8131FE4065631D0284025000230709E0F9020061", "Sparkasse Ingolstadt (Bank)" }, - { "3BFF9600FF8131FE4065631D028402500023140710B80200CD", "Sparkasse Aachen - german Maestro/Girocard (S-Payment TGI 50380969) (Bank)" }, - { "3BFF9600FF8131FE4065631D028402500023150860DC0200D7", "Deutsche Kreditbank AG, Girocard (Bank)\nhttps://www.dkb.de" }, - { "3BFF9600FF8131FE4065631D028402500023160BB0C102001A", "debit card (Bank)" }, - { "3BFF9600FF8131FE4065631D0386025000230808914F0110B8", "Debit card (Germany): ec-cash, GeldKarte(EUR), Visa, Cirrus (Bank)" }, - { "3BFF9600FF8131FE4065631D038602500023130981390110C4", "girocard contactless (Bank)" }, - { "3BFF9600FF8131FE456563060752025000103025411A064082", "DKB (Deutsche Kreditbank) girocard (V-PAY, GeldKarte) (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, - { "3BFF9600FF8131FE4565630D09710764000D00035450070181", "Commerzbank ServiceCard / Maestro / GeldKarte / Cirrus / girocard / CashGroup / electronic cash" }, - { "3BFF9600FF8131FE4565631901500280000F002B0046501172", "Sparkasse Bremen Germany HBCI DDV" }, - { "3BFF9600FF8131FE4565631901500280000F002F0025501115", "German Postbank Giro card with electronic cash, Maestro, GeldKarte features" }, - { "3BFF9600FF8131FE4D8031E06B0431050277555555555555EA", "IRMA card (eID)\nhttp://irmacard.org" }, - { "3BFF9600FF8131FE55006B02090403010101434E5310318014", "JavaCard Bit4Id (JavaCard)" }, - { "3BFF9600FF918131FE4D8031E06B043105027555555555555579", "algeria national identity card (eID)" }, - { "3BFF9600FFC00A1F438031E073362113574A43491C3130321E", "Giesecke & Devrient - UniverSIM Pegasus" }, - { "3BFF9600FFC00A31FE4D8031E06B04200502585555555555559F", "MULTOS (Other)" }, - { "3BFF9600FFC00A31FE4D8031E06B04310502A85555555555557E", "Multos (Other)" }, - { "3BFF9700008131FE4380318065B0846160FB120FFD8290000D", "IDPrime 3930 FIPS Level 3 (T=1 CT=97) (BAI6) (PKI)" }, - { "3BFF9700008131FE4380318065B08466693912FFFE82900032", "IDCore3230 build 6.8, test APDU applet (JavaCard)" }, - { "3BFF9700FFC00A31FE4D8031E06B04520502BB5555555555550F", "MULTOS Dual Interface Card - MC4-P23-S1 (Other)" }, - { "3F05DC20FC0001", "DigiCash Facility Card" }, - { "3F28000011140003689000", "SIMEMU - a DIY GSM SIM card\nhttp://simemu.cjb.net/" }, - { "3F2D0027A051827D00000052000C9000", "Porta Moedas Multibanco (Portugeese electronic purse)" }, - { "3F2F0036AF690204018000000A0E833E9F16", "SIM Card GSM (Telecommunication)" }, - { "3F2F008059AF0201013000000A0E83069F12", "Gemplus GemXplore" }, - { "3F2F008059AF02010230000C0A0E831E9F16", "GSM-SIM (900MHz) card of the carrier 'Mannesmann Mobilfunk' for\ntheir network 'D2-Privat' - now known as Vodafone Mobilfunk\nhttp://www.vodafone.de/" }, - { "3F2F008069AE0202013600000A0E833E9F16", "GSM-SIM e-plus (1800MHz)" }, - { "3F2F008069AF0204013600000A0E833E9F16", "Telia Mobitel GSM (Telecommunication)" }, - { "3F2F008069AF0204013600020A0E833E9F16", "GSM-SIM D2 CallYa (900MHz)" }, - { "3F2F008069AF0307015900000A0E833E9F16", "Nokia SIM Ph2 16K Ver2.0" }, - { "3F2F008069AF0307015900130A0E833E9F16", "Old Spanish Telefonica Movistar GSM SIM card manufactured by Gemplus" }, - { "3F2F008069AF0307015900240A0E833E9F16", "dialog romania now orange (Telecommunication)\nhttps://orange.ro" }, - { "3F2F008069AF0307035200000A0E833E9F16", "GemXplore 98 V1 16K" }, - { "3F2F008069AF03070352000D0A0E833E9F16", "GSM-SIM Debitel D2 (900MHz)" }, - { "3F2F008069AF0307035A00150A0E833E9F16", "Virgin Mobile SIM (Gemplus)" }, - { "3F36110053495B015153", "Sodexo Pass Lunch Card. An employee benefits card to provide meal tickets to workers. (Other)\nhttps://www.sodexo-benefits.it/prodotto/aziende/pausa-pranzo-aziende/pass-lunch-card/#tabsoluzioni" }, - { "3F3BF81300008131FE454A434F5076", "District6 Group employee ID (eID)" }, - { "3F3D1100806728500402200000838E9000", "GSM SIM card of the Austrian provider A1" }, - { "3F3E110046524543434941524F5353419000", "Trenitalia (Italy) fidelity card 'CartaFreccia' (Smartcard)" }, - { "3F3F94008069AF0307015900000A0E833E9F16", "Finnish SIM card from 'Radiolinja' now 'Elisa'" }, - { "3F6525....046C90.0", "Carte Bancaire (French banking card)" }, - { "3F65250024096B9000", "Old Postgirot/Plusgirot SmartSec bank ID card (Bank)" }, - { "3F65250024096E9000", "Oberthur Bull CP8 smart card. Russian 'Pochtovyj Bank' (Bank)" }, - { "3F6525002B09629000", "Coinamatic SmartyCity smartcard" }, - { "3F6525002B09699000", "Municipal parking meter card for the City of St. John's, NL, Canada.\nhttp://www.stjohns.ca/index.jsp" }, - { "3F6525002B09EB9000", "Bull Scot 5" }, - { "3F6525002[2C]09[F6]99000", "Sesam Vitale (French health card)" }, - { "3F65250052096A9000", "French carte Vitale" }, - { "3F6525005343689000", "'Flying Cow'- russian pirate CAM-card. (Pay TV)\nhttp://mxc.do.am/publ/collection/viewing_card_smart_karty_sputnikovogo_veshhanija/flying_cow_smart_card/13-1-0-25" }, - { "3F652500A[34]096A9000", "Sesam Vitale (French health card)" }, - { "3F6525082204689000", "France Telecom card (ex Pastel card)" }, - { "3F6525082304689000", "France Telecom card" }, - { "3F6525083304209000", "D-Trust card" }, - { "3F65250843046C9000", "CB visa La Poste France (Oberthur)\nCB visa Societe Generale France (Oberthur)" }, - { "3F65250863046C9000", "CB visa La Poste France (Oberthur)\nCB Master Carte du Credit Mutuel" }, - { "3F65250865046C9000", "CB visa Boursorama France (Axalto)" }, - { "3F6535100.04[6,E]C9000", "Postcard (Switzerland)" }, - { "3F6535100104EC9000", "Old Swiss Postbank card (Bank)" }, - { "3F6535640104689040", "Bull AFNOR-positioned microprocessor chip card 'Carte Pastel Internationale' by France Telecom (Other)\nhttp://phonecards.free.fr/carte_pastel.htm" }, - { "3F6535640204689040", "Carte Pastel Nationale - nominal France Telecom service card with Bull CP8 chip in AFNOR position (Other)" }, - { "3F65356402046C9040", "Postcard (Switzerland)" }, - { "3F6725002120000F689000", "Smart Builder 'your kit for PC/SC applications' and Bull\nhttp://www.cp8.bull.net/" }, - { "3F6725002120000F789000", "Bank Nederlandse Gemeenten, BNG Data Services" }, - { "3F67250026140020689000", "Pay-TV card from Casema Cable Television, Netherland" }, - { "3F6725002A20000F689000", "Carte Grand Voyageur (SNCF: French train company)" }, - { "3F6725002A200040689F00", "Swiss Cash card\nChipknip SNS Bank (banking card)" }, - { "3F6725002A200041689000", "ChipKnip" }, - { "3F6725002A20004[01]689000", "Dutch ChipKnip, Proton\n(chip Bull CC 60 V1, Bull CC 60 V2 or Bull CC 1000)" }, - { "3F67250421200007689000", "Philips TB100 (C-MOS chip)" }, - { "3F672F0011140001689000", "FilmNet(Sweden, 1984-1997) (Pay TV)" }, - { "3F672F0011140003689000", "D2MAC/Eurocrypt (Pay TV)" }, - { "3F672F0411200000689000", "BULL HN ITALIA 06/92 - 100.000 - 64MP\nLa Sapienza - Universita' di Roma" }, - { "3F69000024AF01700101FF9000", "French GSM SIM card (900MHz)" }, - { "3F69000025AF01700103FF9000", "French Gift Card (Loyalty)" }, - { "3F6A000000640150010C820101A9", "Credit Card cafe Selecta" }, - { "3F6B150002A007906F4D59000C9000", "Sky Viewing Card (Gen 1) from 1990s (Pay TV)" }, - { "3F6C000024A03000FF00000100049000", "Gemplus MCOS 16K DES Sample Card" }, - { "3F6C000025A0308976000001030C9000", "MCOS 24Ko Gemplus (eID)" }, - { "3F6C000025A0308976000004010C9000", "MCOS 24k EEPROM" }, - { "3F6C000025A03100FF00000180049000", "Motorola Clone Card (Telecommunication)\nhttp://web.mclink.it/MK0750/Motorola_files/docuclon.txt" }, - { "3F6C00003CA0309E6100000100049000", "Gemplus - British Gas - Gascard" }, - { "3F6C00003CA030A758000001018C9000", "Rendezvous Series 7 (D2-Mac satellite TV card)" }, - { "3F6C00003DA030BE4100370100049000", "Sberbank (Bank)" }, - { "3F6D000080318065B00501025E83009000", "Gemplus GemXpresso 211PK or 211PK-IS" }, - { "3F6D000080318065B00501025E92009000", "Gemplus GemXpresso 32K" }, - { "3F7613250421B0114A5003", "DSS/DTV F (P1; first generation access card) (Pay TV)" }, - { "3F77130000C11400A2689000", "Boxer DTV Sweden (Pay TV)\nhttp://www.boxer.se" }, - { "3F77180000C11400A2689000", "Viacess card HRT (Hrvatska Radio Televizija)" }, - { "3F77180000C11401A2689000", "VIA 2.6 XXX (Pay TV)" }, - { "3F77180000C21400C1689000", "Viaccess Sexview" }, - { "3F77180000C2474000689000", "Viacces card: SRG SSR idee suisse" }, - { "3F77180000C27A4102689000", "Viacces card: SRG SSR idee suisse" }, - { "3F77180000C27A4202689000", "SCT (Via Access)" }, - { "3F77180000C27A4302689000", "DORCEL (Via Access)" }, - { "3F77180000C27A4402689000", "XXX Redlight_HD (Viaccess)" }, - { "3F77180000C2EB41026C9000", "Elite HD10+ (Pay TV)\nSatellite cryptoworks card - Smart card Viaccess (Telesat - belgium) (Pay TV)" }, - { "3F77180000C2EB45026C9000", "facetv (Other)" }, - { "3F77180000D38A4001649000", "Skylink Viaccess 5.0 (Pay TV)\nhttp://www.skylink.sk/" }, - { "3F77180000D38A4201649000", "Satellite decoder card for TV Vlaanderen (Other)\nhttps://www.tv-vlaanderen.be" }, - { "3F77180000DAAC4114649000", "Fransat PC7 (Pay TV)\nhttps://www.fransat.fr/" }, - { "3F7718250029140062689000", "Viaccess card" }, - { "3F7812250140B0034A50204855", "DSS/DTV H" }, - { "3F7813250340B020FFFF4A5000", "DSS/DTV P4" }, - { "3F7D11250241B00369FF4A50F08000565403", "Viasat Baltics Videoguard card (Pay TV)" }, - { "3F7E11250521B01200004D59000000534B0900", "Sky Viewing Card (Gen 9) (Pay TV)" }, - { "3F7E11250540B00800004D59000000534B0B07", "BSkyB Series 11 (DSS satellite TV card)" }, - { "3F7E11250540B00800004D59000000534B0B08", "Sky Series 11 (DSS satellite TV card)" }, - { "3F7E11250940B00100004D59000003534B0A01", "Sky Series 10 (DSS satellite TV card)" }, - { "3F7F11250333B00969FF4A507000005654010000", "Viasat Baltic (satellite card, NDS)" }, - { "3F7F11250540B00F69FF4D59000000534B0C0600", "Sky Series 12 (DSS satellite TV card)" }, - { "3F7F13250140B01069FF4A5001474C0000000000", "NDS Smartcard (Pay TV)" }, - { "3F7F13250240B00C69FF4A50C000005253000000", "Stream Italy NDS 1 (Pay TV)" }, - { "3F7F13250240B01269FF4A5090474C0000000000", "NDS VideoGuard GL23 Card (Sky Brazil) (Pay TV)\nhttps://en.wikipedia.org/wiki/VideoGuard" }, - { "3F7F13250240B01269FF4A509054560000000000", "NDS Smartcard (Pay TV)" }, - { "3F7F13250241B004FFFF4A508080000000475806", "NDS card DIRECTV (Other)" }, - { "3F7F13250241B00EFFFF4A508080000000474C07", "SKY BRASIL (Pay TV)" }, - { "3F7F13250333B00669FF4A50D000005359000000", "Sky 2005/6 (DSS satellite TV card)" }, - { "3F7F13250333B01169FF4A505000004956010000", "Indonesia Videoguard 2 card" }, - { "3F7F13250338B004FFFF4A500000294855......", "DSS/DTV HU" }, - { "3F7F13250340B00B694C4A50C000005359000000", "Sky Digital (DSS satellite TV card)" }, - { "3F7F13250540B01169FF4A500000004754000C00", "YES DBS Israel Videoguard 090C,090D" }, - { "3F7F15250333B01169FF4A505000004956010000", "Sky Germany V13 Smartcard (Pay TV)" }, - { "3F961880018051006110309F", "Atmel/Athena T0 Inverse Convention PC/SC Compliance Test Card No. 2" }, - { "3FEF00FF8131..456563", "Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus" }, - { "3FFA1125040001B00200004D59008180", "Sky Viewing Card (Gen 1) from 1990s (Pay TV)" }, - { "3FFA1125050001B0023B364D59028090", "HackTV SKY11 PIC16F84 card (Other)\nhttps://github.com/captainjack64/hacktv" }, - { "3FFA1125050001B0023B404D59008180", "Sky Viewing Card (Gen 7) (Pay TV)" }, - { "3FFA1125050001B0023BD04D59008180", "Sky Viewing Card (Gen 7) (Pay TV)" }, - { "3FFD11250250000333B01569FF4A50F080034B4C03", "Kabel Deutschland G02 (Pay TV)" }, - { "3FFD11250250800F41B00A69FF4A507080005A4503", "Buypass smart card (Bank)\nhttps://www.buypass.no/bruker/buypass-id/buypass-smartkort" }, - { "3FFD11250250800F41B00D69FF4A50F08000565403", "Viasat (Pay TV)" }, - { "3FFD11250250800F41B00F69FF4A50F080005A4A03", "Telekom Romania Communications (DVB-C) (Pay TV)\nhttps://www.telekom.ro/" }, - { "3FFD13250250000F33B00F69FF4A50D00000535902", "Sky Digital (DSS satellite TV card) 2009 issue" }, - { "3FFD13250250000F33B01669FF4A50D08000535903", "Sky TV Multiroom (Pay TV)" }, - { "3FFD13250250800F..B0..69FF4A50D08000495403", "Sky (Italy) VideoGuard CAM card" }, - { "3FFD13250250800F33B008FFFF4A50900000474C01", "Sky (Brasil) VideoGuard CAM card" }, - { "3FFD13250250800F33B008FFFF4A50900000545601", "NDS Videoguard TV CAM card (Sky Mexico 0905) (Pay TV)\nhttps://en.wikipedia.org/wiki/VideoGuard" }, - { "3FFD13250250800F41B00A69FF4A50F00000503103", "Sky Germany V14 NDS card (Pay TV)\nhttp://www.wikipedia.org/wiki/Sky_Deutschland" }, - { "3FFD13250250800F41B00F69FF4A50F080005A4A03", "Orange Romania (DVB-C) (Pay TV)\nhttps://www.orange.ro/" }, - { "3FFD13250250800F55B00269FF4A50F08000503103", "SKY DE V15 (Pay TV)" }, - { "3FFD14250150000F33B00BFFFF4A50800000475801", "DirecTV card" }, - { "3FFD14250250800F41B00A69FF4A507080004E5A03", "Sky Network Televisiton Limited (New Zealand) card for new (2016) decoder. Reportedly, this is a Kaon NS1120-500 box. (Pay TV)\nhttp://www.sky.co.nz" }, - { "3FFD14250250800F41B00D69FF4A50F08000425203", "Airtel Digital TV (Pay TV)" }, - { "3FFD15250250000333B01569FF4A50F080034B4C03", "Kabel Deutschland (G02) (Pay TV)\nhttps://www.kabeldeutschland.com" }, - { "3FFD15250250800F41B00569FF4A50F00000415A03", "astro Pay TV Measat 91.5 E Caid: 0910 Provider: 000000" }, - { "3FFD15250250800F41B00A69FF4A50F00000503103", "Sky Germany [NDS|V14] (098C:000000) (Pay TV)" }, - { "3FFD15250250800F41B00D69FF4A50F08000414A03", "beIN Sports Arabia NDS (09B5:000000) (Pay TV)" }, - { "3FFD15250250800F41B00D69FF4A50F08000565403", "TVPLAY HOME (Pay TV)\nhttps://www.tvplayhome.lt/" }, - { "3FFD15250250800F55B00269FF4A50F08000503103", "Sky Germany [NDS|V15] (098D:000000) (Pay TV) (Pay TV)\nhttp://www.sky.de" }, - { "3FFDFF250250800F54B00469FF4A50D08000495403", "SKy italia (Pay TV)" }, - { "3FFE142503108041B00769FF4A5070804245544114", "OSN (Pay TV)\nhttps://www.osn.com" }, - { "3FFF112503108041B00669FF4A50700000415A010011", "Astro (Pay TV)\nhttp://www.astro.com.my" }, - { "3FFF112503108041B00769FF4A507000005031010011", "Sky (Germany) VideoGuard CAM card (www.sky.de)" }, - { "3FFF13250250800F54B003FFFF4A508000000000474C05", "Sky (Brasil) VideoGuard CAM card" }, - { "3FFF132503108033B00E69FF4A507000004954020000", "Sky entitlement card" }, - { "3FFF132503108033B01069FF4A507000004E5A010000", "NDS SKY NZ (Pay TV)" }, - { "3FFF13250B50000F33B00469FF4A50E000005335000000", "Stream TV (IP television) decoder card, provided by stream.ru ISP in Moscow" }, - { "3FFF13250B50000F33B00469FF4A50E000005438000000", "Stream TV (IP television) decoder card, provided by aon (Telekom Austria) TV card, contains Incorporated NDS Videoguard (TM) security system" }, - { "3FFF142503108033B01069FF4A507000004352010000", "Russian cable TV AKADO NDS Card (Pay TV)\nhttp://www.akado.ru/" }, - { "3FFF142503108033B01069FF4A507000005A45010000", "Norwegian DVB-C provider Get (www.get.no). NDS Videoguard security card." }, - { "3FFF142503108041B00169FF4A507000005356010000", "Tata Sky India Card (Telecommunication)" }, - { "3FFF142503108041B00169FF4A507000005A48010000", "'D-Smart' NDS from Turkie" }, - { "3FFF142503108041B00169FF4A507000005A4A010000", "Dolce by RomTelecom (Pay TV)" }, - { "3FFF142503108041B00169FF4A507000005A4B010000", "Pay TV, Viasat Ukraine" }, - { "3FFF142503108041B00269FF4A507000004252010000", "airtel (Pay TV)" }, - { "3FFF142503108041B00269FF4A50708000414F010014", "Pay TV" }, - { "3FFF142503108041B00769FF4A507080005844010014", "NDS vivacom Bulgaria card (Pay TV)\nhttps://www.vivacom.bg/bg/tv" }, - { "3FFF142503108041B00769FF4A5070800058440100FF", "Provider Vivacom Bulgaria NDS (Pay TV)\nhttp://www.vivacom.bg/en/satellite-services" }, - { "3FFF142503108041B00769FF4A507080005845010014", "Sat TV (Other)" }, - { "3FFF142503108054B00169FF4A507000004B57010000", "PayTV Card Kabel BW (www.kabelbw.de), Encryption: NDS by Videoguard, Distribution Standard: DVB-C" }, - { "3FFF152503108041B00769FF4A507000005031010015", "Sky (Germany) VideoGuard CAM card (www.sky.de) in Fast Mode (ins7e11=15) (Pay TV)" }, - { "3FFF3F3F3F3F003F3FFF3F3F3F3F3FFF3FFF953FFF953FFF", "Premium joker card to see Spanish TDT premium (goltv)" }, - { "3FFF9500FF918171..4700..4.4.....3.3.3.20..657.........", "Nagravision TV CAM card\nhttp://en.wikipedia.org/wiki/Nagravision" }, - { "3FFF9500FF918171..47004E434D45443.303.20526576..3.3...", "Mediaset Premium (Italy) CAM card" }, - { "3FFF9500FF918171644700444E41535030303320526576333233FF", "Satellite TV Card 'Via Digital' (Nagra)" }, - { "3FFF9500FF918171A04700444E4153503031302052657641323048", "DSS/DISH ROM10" }, - { "3FFF9500FF918171A04700444E4153503031302052657641323149", "PayTV card for DishNetwork Sat receiver\nhttp://www.dishnetwork.com/" }, - { "3FFF9500FF918171A04700444E4153503031312052657642", "NTL digital TV card (Nagravision)" }, - { "3FFF9500FF918171A04700444E415350303131205265764230364E", "Telewest Broadband (Nagravision)" }, - { "3FFF9500FF918171A04700444E415350303131205265764230423A", "NagraVision card for StarHub Digital Cable DVB-C Singapore" }, - { "3FFF9500FF918171A04700444E415350303131205265764230443C", "NagraVision card for Virgin Media in the UK" }, - { "3FFF9500FF918171A04700444E415350313830204D657230303028", "NagraVision (VG04) for Virgin Media (UK)\nNagraVision 3 for DigiTV (Romania)\nhttp://www.rcs-rds.ro/televiziune-digi-tv/satelit" }, - { "3FFF9500FF918171FE4700444E4153503131302052657641303114", "TVA Digital - Nagra Vision ID TV-01" }, - { "3FFF9500FF918171FE4700444E4153503131302052657641303712", "UPC Austria/UPC-Cablecom Switzerland, digital television encryption card\nhttp://www.upc-cablecom.ch/" }, - { "3FFF9500FF918171FE4700444E4153503131302052657641323215", "UM01 card from German Unitymedia cable TV provider" }, - { "3FFF9500FF918171FE4700444E4153503131302052657641343514", "Telenet N.V. HDTV Decoder Card Belgium" }, - { "3FFF9500FF918171FE4700444E4153503131302052657641433365", "Brazilian NET Digital (Cable TV provider) - Nagra Vision 'NASP110 RevA01'" }, - { "3FFF9500FF918171FE4700444E4153503134322052657647303216", "Polsat Nagra3\nBrazil - Claro TV Nagra3 Red" }, - { "3FFF9500FF918171FE4700444E4153503134322052657647303410", "Nagra 3 Card - Telefonica Brazil Green" }, - { "3FFF9500FF918171FE4700444E4153503134322052657647303612", "UM02 card from German Unitymedia cable TV provider" }, - { "3FFF9500FF918171FE4700444E4153503134322052657647433463", "HD+ card used by the satellite company astra for decryption of the HDTV channels of RTL, VOX, Sat1 and ProSieben. Nagravision V3 is used for the encryption." }, - { "3FFF9500FF918171FE4700444E415350313830204D65724A30320E", "Nagra 3 Digital Plus Spain" }, - { "3FFF9500FF918171FE4700444E41535032343120447368", "DISH Network G3 (Pay TV)" }, - { "3FFF9500FF918171FE4700444E415350323431204473684830390C", "Dish Network Smart Card (Pay TV)" }, - { "3FFF9500FF918171FE47004E434D4544303041205265764130316C", "Mediaset Premium (Italy) 2013" }, - { "3FFF9500FF918171FE47004E434D4544303043205265764330306D", "Mediaset Premium rechargeable (Pay TV)\nhttp://www.mediasetpremium.it/" }, - { "3FFF9500FF918171FE47005449474552363031205265764D383013", "Spanish pay TV card for GOLTV" }, - { "3FFF9500FF918171FE5700444E415350314230204D657257323079", "Vodafone HUNGARY (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651323113", "Nagravision D08 / KD-31 Vodafone Cable Germany (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651323210", "Telenet CI+ card Belgium (Pay TV)\nhttps://www2.telenet.be/nl/tv-met-een-kaartje/" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651323517", "New ROM of Nagra PayTV Card DNASP410 (Pay TV)\nhttp://en.wikipedia.org/wiki/Nagravision" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651323715", "New Digi Slovakia (Pay TV)\nhttps://www.lyngsat.com/packages/Digi.html" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651324260", "Nagravision Kudelski Generation 7 card Rom410 MerQ2B (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503431302052657651325371", "Slovak and Czech pay TV provider Slovak Telecom (Pay TV)\nhttp://www.flysat.com/novadigi-sk.php" }, - { "3FFF9500FF918171FE5700444E4153503432302052657653363017", "HD+ HD04b Card (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503432302052657653363413", "claro card honduras central america 'NAGRA' (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503432302052657653364265", "Nagra Kudelski / Canalsat Reunion (Pay TV)" }, - { "3FFF9500FF918171FE5700444E4153503435302052657657363014", "HD+ HD05 Paytv smartcard (Pay TV)" }, - { "3FFF9500FF918171FE5700444E415350343832205265765232361C", "Max Tv Croatia (Pay TV)\nhttps://www.lyngsat.com/packages/Max-TV.html" }, - { "3FFF9500FF918171FE5700444E415350353532204473684E30391F", "Dish Network ROM552 (Pay TV)" }, - { "3FFF9500FF918171FE5700444E415350353532204473684E304264", "Dish Network (Satellite Pay TV) NASP 552 (Pay TV)\nhttp://www.dishnetwork.com/" }, - { "3FFF9500FF918171FE5700444E415350353533205265764E304178", "BELL CA EXPRESS VU CARD (Pay TV)" }, - { "3FFF9500FF918171FF4700444E4153505330312044736836303916", "PayTV card for DishNetwork Sat receiver\nhttp://www.dishnetwork.com/\nCards were obsoleted in nationwide system update in 2009." }, - { "3FFF9500FF918171FF4700444E4153505330312052657636343702", "BELL EXPRESSVU (Pay TV)" }, - { "3FFF9500FF918171FF470054494745523030332052657632353064", "Tivu' Sat (Italy) CAM card www.tivu.tv" }, - {NULL, "n/a"} -}; + { "3B9F96801FC78031E073FEA117574A33058C33390096", "1NCE SIM card (Telecommunication)\nhttps://1nce.com/en-eu/1nce-os/our-architecture" }, + { "3B9F96803F87828031E073FE211B67454D753034024B02", "Hologram Global G1 eUICC SIM(Telecommunication)\nhttps: //www.hologram.io/products/global-iot-sim-card/" }, + { "3B9F96803F87828031E073FE211F574543753130136502", "sysmoEUICC1-Cxx - eUCICC for econsumer eSIM RSP (Telecommunication)\nhttps://sysmocom.de/products/sim/sysmocom-euicc/index.html" }, + { "3B9F96803F87828031E073FE211F574543753130266F3D", "An eSIM physical card, you can write eSIM profiles into it and use it as a general SIM (Telecommunication)\nhttps://www.9esim.com/" }, + { "3B9F96803FC3A08031E073F62113574A4D0E1D31300071", "Telenor SIM card (Norway)" }, + { "3B9F96803FC6A08031E073F62116574A4D020B34546369", "SIM card Wingo operator (Switzerland) (Telecommunication)" }, + { "3B9F96803FC7008031E073FE211B6408050300829000EF", "Multipurpose UICC card for 2G, 3G, 4G/LTE, CDMA, ISIM & NFC (Telecommunication)\nhttp://www.smartjac.biz/index.php/component/eshop/telecom/test-uicc-sim-cards/2ff-mini-sim-cards/4g-open-multipurpose-uicc-card-3ff?Itemid=0" }, + { "3B9F96803FC7008031E073FE211F6441262100829000A3", "Smartjac SMAOT100A234FF (Telecommunication)\nhttps://smartjac.com" }, + { "3B9F96803FC7828031E073F62157574A330581053000CE", "COMPRION M2M eUICC (Telecommunication)" }, + { "3B9F96803FC7828031E073F62157574A4D020B60010069", "eSIM GSMA Card (Telecommunication)\nhttps://www.gsma.com/newsroom/wp-content/uploads/SGP.22_v2.2.pdf" }, + { "3B9F96803FC7828031E073F62157574A4D020B60610009", "ting (Telecommunication)" }, + { "3B9F96803FC7828031E073FE211B57AA8660F0010004FB", "The eSIM.me Card (Telecommunication)\nhttps://esim.me/" }, + { "3B9F96803FC7828031E073FE211B57AA8660F0010011EE", "eSIM.me pluggable eSIM (Telecommunication)\nhttps://esim.me/" }, + { "3B9F96803FC7828031E073FE211B57AA8660F0010017E8", "eSim.me Orange Setup (Telecommunication)" }, + { "3B9F96803FC7828031E073FE211B57AA8660F001001EE1", "5Ber (Telecommunication)\nhttps://esim.5ber.com" }, + { "3B9F96803FC7828031E073FE211B633A204E8300900031", "eSIM (Telecommunication)" }, + { "3B9F96803FC7828031E075F62157200355020B60500018", "iPhone 11 SIM Slot eUICC chip. Identified by eSTK.me. (Telecommunication)" }, + { "3B9F96803FC7828031E075F62157200355020C608000CF", "ST33J2M0STL9DZB0 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33j2m0.html" }, + { "3B9F96803FC7828031E075F62157210355020B60010048", "ST33G1M2STL8ENL0 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33g1m2.html" }, + { "3B9F96803FC7828031E075F62157210355020B60500019", "st33g1m2 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33g1m2.html" }, + { "3B9F96803FC7828031E075F62157210355020C608000CE", "ST33J2M0STL9DZB1 (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st33j2m0.html" }, + { "3B9F96803FC7828031E075F621573C0455020C61010054", "euicc from iphone14 (Telecommunication)" }, + { "3B9F96803FC7A08031E073F62116574A4D020233456377", "ISIS-Ready T-Mobile Sim Card (Telecommunication)" }, + { "3B9F96803FC7A08031E073F62156574A4D020B3444005B", "Norwegian telenor (Telecommunication)\nhttp://www.telenor.no" }, + { "3B9F96803FC7A08031E073F62157574A4D020B34546329", "Orange FR - opa (Telecommunication)" }, + { "3B9F96803FC7A08031E073FE211B63F100E8830090005E", "UICC CARD (Telecommunication)" }, + { "3B9F96803FC7A08031E073FE211B6407689A00829000B4", "Orange SIM Card (Telecommunication)" }, + { "3B9F96803FC7A08031E073FE211B64080503008290004F", "NFC-enabled SIM card of MTS Russia. (Telecommunication)" }, + { "3B9F96803FC7A08031E073FE211F6300690083819000AB", "GSM file system and SWP sample supplied with STMicro development kit (Other)" }, + { "3B9F96803FC7A08031E073FE211F6441269100829000B3", "LTE Lab SIM Ver 1.3 (Telecommunication)" }, + { "3B9F968131FE458065544312210831C073F6218081059A", "Scientific and Technological Research Council of Turkey (test card) (eID)" }, + { "3B9F968131FE45806755454B41451212318073B3A180EA", "AKiS v1.2 on nxp chip" }, + { "3B9F968131FE45806755454B41451252318073B3A180AA", "AKiS v1.2.1 on infineon chip" }, + { "3B9F968131FE45806755454B41451253318073B3A180AB", "AKiS v1.2.1 on nxp chip" }, + { "3B9F968131FE45806755454B41451292318073B3A1806A", "AKiS v1.2.2 on infineon chip" }, + { "3B9F968131FE45806755454B41451293318073B3A1806B", "AKiS v1.3 on infineon chip" }, + { "3B9F968131FE5D00640428010231C073F701D000900065", "German eTicketing SAM (Transport)\nhttps://www.eticket-deutschland.de/" }, + { "3B9F968131FE6D00640428010231C073F701D000900055", "VDV-KA Secure Access Module (German Public Transport) (Transport)\nhttps://www.eticket-deutschland.de/" }, + { "3B9F968131FE9D006405A0030431C073F701D000900028", "Deutsche Telekom AG, TeleSec PKS ECC Signature Card (PKI)\nhttps://www.telesec.de/en/signaturecard" }, + { "3B9F9681B1FE451F070064051EB20031B0739621DB0590005C", "SignTrust (www.signtrust.de)\nInfinion SLE66CX680PE with Starcos 3.2\nhttp://www.deutschepost.de/dpag?xmlFile=link1015459_49595" }, + { "3B9F9681B1FE451F070064051EB20331B0739621C005900044", "German Dentist ID (eID)" }, + { "3B9F96C00A1FC38031E073FE211B63F100AD830F9000DA", "SIM SFR Pro (French Mobile Operator)" }, + { "3B9F96C00A1FC68031E073FE211F65D00233131B810FFA", "Tinkoff SIM card (Telecommunication)" }, + { "3B9F96C00A1FC78031E073FE211B63F100AD830F9000DE", "H3G (Italy) UMTS USIM card" }, + { "3B9F96C00A1FC78031E073FE211B65D0011009228100F3", "Verizon 4G LTE SIM Card (Telecommunication)\nhttp://www.verizonwireless.com/support/information/4gsim.html" }, + { "3B9F96C00A1FC78031E073FE211B65D0018E0E3281007A", "Rogers 3G SIM card" }, + { "3B9F96C00A1FC78031E073FE211F65D0020912EE810F35", "German SIM card Drillisch (Telefonica) (Telecommunication) (Telecommunication)\nhttps://www.drillisch-online.de/" }, + { "3B9F96C00A1FC78031E073FE211F65D0020914F9810F24", "CONNEXA SIM CARD (Telecommunication)" }, + { "3B9F96C00A1FC78031E073FE211F65D0020B11A4810F7E", "Telia Finland Oyj, network operator LTE (Telecommunication)" }, + { "3B9F96C00A1FC78031E073FE211F65D013370F3B810FD2", "Gemalto Security Element (PKI)" }, + { "3B9F96C00A31FE45435431690B010001000000000000000D", "EU smart tachograph card (driver/company/control/workshop)\nhttps://dtc.jrc.ec.europa.eu/" }, + { "3B9F96C00A31FE45754A6176656C696E2D4F5320312E3051", "Vietnam ID Card (eID)" }, + { "3B9F96C00A3FC6A08031E073FE211B65D001740EEB810FD7", "Verizon '4G LTE' USIM (Telecommunication)" }, + { "3B9F96C00A3FC6A08031E073FE211B65D001740F13810F2E", "SFR GSM SIM Card (Telecommunication)" }, + { "3B9F96C00A3FC6A08031E073FE211B65D001740F50810F6D", "5G (Telecommunication)" }, + { "3B9F96C00A3FC6A08031E073FE211F65D001900F3B810FE6", "Verizon US USIM card (Telecommunication)" }, + { "3B9F96C00A3FC6A08031E073FE211F65D00209107C810F24", "GSM SIM Vodafone NL postpaid NFC+ (Telecommunication)" }, + { "3B9F96C00A3FC6A08031E073FE211F65D0021B12B7810FFF", "SIM Card Fastweb IT GSM mobile network (Telecommunication)" }, + { "3B9F96C00A3FC7828031E073FE211F65D00209146C810F13", "euicc (eID)" }, + { "3B9F96C00A3FC7A08031E073FE211B65D001740E8D810FB0", "USIM" }, + { "3B9F96C00A3FC7A08031E073FE211B65D001740EE3810FDE", "EE (UK) Mobile Phone SIM Card circa 2016 (Telecommunication)" }, + { "3B9F96C00A3FC7A08031E073FE211B65D001740F13810F2F", "Phone card sim (Telecommunication)" }, + { "3B9F96C00A3FC7A08031E073FE211F65D0021A12AB810FE3", "Orange SIM (Telecommunication)" }, + { "3B9F96C00A3FC7A08031E073FE211F65D0021B12B7810FFE", "ISPL Card (Telecommunication)" }, + { "3B9F96C0F031FE45754A6176656C696E2D4F5320312E30AB", "ATKey.Card NFC Bio-ID (eID)" }, + { "3B9F97801FC68031E073FE211B6441442100829000E5", "SAKURA Internet SIM (Telecommunication)\nhttps://www.sakura.ad.jp/services/sim/" }, + { "3B9F97801FC68031E073FE211B65CA010E060B81059E", "rain Networks - R15 4G Sim Card (Telecommunication)\nhttp://www.rain.co.za" }, + { "3B9F97801FC78031E073FE211367980801120401045B", "Tmobile Sim card (Telecommunication)" }, + { "3B9F97801FC78031E073FE211367980801120601065B", "Tmobile (Telecommunication)" }, + { "3B9F97801FC78031E073FE2113679814010202010257", "Orange SIM from Egypt (Telecommunication)" }, + { "3B9F97803FC6828031E073FE211F630089008381900069", "ST4SIM-200M (Telecommunication)\nhttps://www.st.com/en/secure-mcus/st4sim-200m.html" }, + { "3B9F97803FC7828031E073FE211F640856210082900019", "eSIM card (Telecommunication)" }, + { "3B9F97803FC7828031E073FE211F6409069200829000FB", "Ubigi Transatel esim (Telecommunication)" }, + { "3B9F978131FE458065544312210831C073F621808105", "Republic of Turkey Identity Card (eID)\nhttps://bilgem.tubitak.gov.tr/en/icerik/national-identity-card-tr-nc-identity-card" }, + { "3B9F978131FE458065544312210831C073F62180810590", "Turkish National Electronic Identity Card - TCKK (eID)\nhttp://www.ekds.gov.tr" }, + { "3B9F978131FE458065544312210831C073F6218081059B", "Turkish Republic Identity Card - Turkiye Cumhuriyeti Kimlik Karti (TCKK) (eID)\nhttp://www.ekds.gov.tr/tckk/t-c-kimlik-karti/tanim" }, + { "3B9F978131FE4580655443D2210831C073F6218081055B", "Turkish Republic official electronic ID card with biometric data, e-signature, authentication, secure private-key cryptographic messaging, etc. (eID)\nhttp://bilgem.tubitak.gov.tr/en/icerik/national-identity-card-tr-nc-identity-card" }, + { "3B9F978131FE4580655443D3228231C073F621808105D3", "Turkish eID (Turkiye Cumhuriyeti Kimlik Karti) (eID)" }, + { "3B9F97C00A1FC68031E073FE211F65D00233150E810FE8", "SIM Card (Telecommunication)" }, + { "3B9F97C00A1FC78031E073FE211B65D0011009228100F2", "'ultra fast card, max speed supported for telecom'? (transport)" }, + { "3B9F97C00A1FC78031E073FE211B65D001900F3B810F62", "Gemalto Multi-SIM consumer 4.2 (ST33I1M2) (Telecommunication)" }, + { "3B9F97C00A3FC6828031E073FE211B65D0023314A5810FE4", "Thales eUICC French Ministry BAP v2 (Telecommunication)" }, + { "3B9F97C00A3FC6A08031E073FE211B65D001740EEB810FD6", "Verizon 4G LTE Micro SIM (Telecommunication)" }, + { "3B9F97C00A3FC6A08031E073FE211F65D0021B13F6810FBE", "Verizon SIM Card (Telecommunication)" }, + { "3B9F97C00A3FC7A08031E073FE211F65D001900FEE810F33", "AT&T Mobility LLC MicroSIM Card (Telecommunication)\nhttps://www.att.com/wireless/" }, + { "3B9F97C00AB1FE453FC6828031E073FE211B65D0023A14C9810F8B", "SIM (Telecommunication)" }, + { "3B9F97C0FF1FC78031E073FE211B63F100AD830F90002A", "Gemalto Speed Enhancement 97 (Telecommunication)" }, + { "3B9FB681B1FE5D1F4700640411030131C073B7010000900035", "BOS (Telecommunication)" }, + { "3B9FD680B1A0591FC7534C4538385F50534C5F56302E353001", "Infineon SLE88CFX4000P" }, + { "3BA70040..8065A208......", "Gemplus GemSAFE Smart Card (8K)" }, + { "3BA70040148065A214010137", "Gemplus GPK4000sdo" }, + { "3BA70040188065A208010152", "Gemplus GPK8000\nGemSAFE Smart Card (8K)\nMultiApp ID IAS ECC 72K CC (with IAS XL / IAS ECC Applet) IAS ECC Type 3 (Bank)" }, + { "3BA70040188065A209010152", "Gemplus GPK16000" }, + { "3BA70040188065A209010252", "Gemplus GPK16000" }, + { "3BA70040188065A209010352", "Gemplus GemSAFE std (GPK16000?)" }, + { "3BA8008171465D0054434F53312E320065", "Telesec TCOS 1.2" }, + { "3BA8008171465D0054434F53312E324B2E", "CeloCom Card with TCOS 1.2" }, + { "3BAA00401447473245543553343830", "Old German 'D2 Privat' sim card (Telecommunication)" }, + { "3BAA00401447473247543553343830", "GSM-SIM Libertel (900MHz)" }, + { "3BAA004080534F805345030411AAA3", "'open platform' ATMEGA 'new Generation'\nhttp://www.masterixweb-italy.com/new/images/articoli/atmega.jpg" }, + { "3BAB00813140458031C0650806800000000084", "Reloadable Visa Cash card (Schlumberger), Bank of America" }, + { "3BAC00402A001225006480000310009000", "Sesam Vitale card CPS (Carte Profesionnel de Sante)\nhttps://esante.gouv.fr/securite/cartes-et-certificats/CPS" }, + { "3BAC00402A001225006480820212009000", "Sesam Vitale card CPS (Carte Profesionnel de Sante)" }, + { "3BAD0040FF80318065B00501015E83009000", "Dallas Semiconductor iButton\nJIB\nGemplus GemXpresso 2.11PK" }, + { "3BB0110081319073F2", "SamOS 2.7" }, + { "3BB033009181316B35FC", "SkyperfecTV HD IC Card (Pay TV)\nhttps://www.skyperfectv.co.jp/eng/" }, + { "3BB036008131FE5D95", "Betacrypt 2 (Comvenient GmbH) Conditional Access Smart Card (Pay TV)\nwww.comvenient.com" }, + { "3BB2110010800001", "Atmel memory card AT88SC0104C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf\nPlug'n'Print" }, + { "3BB2110010800002", "Atmel memory card AT88SC0204C (Atmel memory card)\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5211.pdf\nCard LAVAGE reloadadble from stations TOTAL" }, + { "3BB2110010800004", "Atmel memory card AT88SC0404C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, + { "3BB2110010800008", "Atmel memory card AT88SC0808C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf\nSmart VR Card - GD Burti" }, + { "3BB2110010800016", "Atmel memory card AT88SC1616C\nhttps://www.microchip.com/en-us/product/AT88SC1616C#document-table\nRexall (Canada) - Blood Pressure Check card\nhttp://www.rexall.ca/services/blood-pressure-tracking" }, + { "3BB3110000000032", "Atmel memory card AT88SC3216C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, + { "3BB3110000000064", "Atmel memory card AT88SC6416C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, + { "3BB3110000000128", "Atmel memory card AT88SC12816C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, + { "3BB3110000000256", "Atmel memory card AT88SC25616C\nhttp://www.atmel.com/dyn/resources/prod_documents/doc5210.pdf" }, + { "3BB7110081319043A5..............", "Siemens CardOS/M V1.4 (SLE44C80S)" }, + { "3BB7110081319043C517B09D19221E1F", "CryptoTech blank access/authentication card (Other)\nhttp://www.cryptotech.com.pl/" }, + { "3BB7110081319053B5..............", "CardOS EM/V1.4 (SLE44CR80S)" }, + { "3BB711008131FE432025854702202866", "Research Institute of Applied Information Technologies (Other)\nhttp://dodatok.osvita.net/" }, + { "3BB711008131FE4320283FB50320313B", "Research Institute of Applied Information Technologies (Other)\nhttp://dodatok.osvita.net/" }, + { "3BB718008131704310434E5452563253", "Avtor SecureToken (PKI)" }, + { "3BB718008131FE6553504B323490005A", "Giesecke & Devrient Starcos 2.4" }, + { "3BB71800C03E31FE6553504B3234900025", "G&D STARCOS SPK 2.4" }, + { "3BB794008131FE5553504B32329000E0", "Dresdner Bank (a German Bank) Key-Card for InternetBanking" }, + { "3BB794008131FE6553504B32329000D0", "Giesecke & Devrient STARCOS SPK2.2" }, + { "3BB794008131FE6553504B32339000D1", "Giesecke & Devrient Starcos 2.3\nDeutsche Bank WebSign (RSA-Card)\nG&D StarSign Token\nOsakidetza ONA (eID)\nhttp://www.osakidetza.euskadi.eus/r85-ckserv01/es/contenidos/nota_prensa/ruedasanidad35/es_rs/ruedasanidad35_c.html" }, + { "3BB813008131205D0057696E4361726402", "SmartCard for Windows 1.1" }, + { "3BB813008131FA524348544D4F494341A5", "citizen digital certificate (PKI)\nhttp://moica.nat.gov.tw/" }, + { "3BB897008131FE45FFFF148230502300F1", "UAE Emirates ID (eID)\nhttps://www.icp.gov.ae" }, + { "3BB89700813FE45FFFF148230502300F", "UAE Emirates ID (eID)" }, + { "3BB89700C00831FE45FFFF148230502300B8", "Infineon SECORA ID X (JavaCard)" }, + { "3BB918008131FE9E8073FF614083000000DF", "Serbian Identity Card\nThis is the new Serbian biometric identity card (every adult cityzen\nmust have). The chip contains owners picture, name, date and place\nof birth, current address, unique ID number and fingerprint." }, + { "3BB9940040144747334D4838353330", "T D1 GSM card (Telecommunication)" }, + { "3BB9940040144747334E4838363430", "GSM-SIM card of the Austrian mobile phone provider One\nhttp://www.one.at\nProximus SIM - Belgium (SetCOS?)\no2 GSM-SIM card Germany 2003" }, + { "3BBA11001000434C5F53414D00133800", "Planeta Informatica CL-SAM (Other)\nhttp://www.planeta.inf.br/" }, + { "3BBA11008131FE4D55454B41452056312E30AE", "AKIS v1.0 on infineon chip" }, + { "3BBA13008131865D0064050A0201318090008B", "Telesec TCOS 2 (SLE44)\nTCOS 2.0 (on CR80S)\nCryptokarte with RSA-Controller, T=1 Protocol" }, + { "3BBA14008131865D0064051402023180900091", "TCOS 2.0 (on CX160S)\nTelesec TCOS 2 (SLE66)" }, + { "3BBA14008131865D0064057B020331809000", "PHILIPS (HealthCare)" }, + { "3BBA14008131865D0064057B020331809000FF", "PHILIPS (HealthCare)" }, + { "3BBA14008131865D0064057B0203319000FF", "JCOP CARD (Other)" }, + { "3BBA94004014", "GG3RS732S0 ?" }, + { "3BBA9400401447473352533731365300", "Micro Sim MCP crew sim (Telecommunication)" }, + { "3BBA9400401447473352533731365320", "GSM SIM Elisa Estonia" }, + { "3BBA9400401447473352533731365330", "GSM-SIM Viag Interkom E2 Loop (1800MHz)\nGSM-SIM card of the Austrian A1\nhttp://www.a1.net/privat/home\nGSM SIM Radiolinja Estonia; 2005" }, + { "3BBA9400401447473353533731365330", "GSM SIM Cellway (e-plus), Germany (Telecommunication)" }, + { "3BBA95001080434C5F53414D00013811", "CLSAM (Transport)\nhttp://www.planeta.inf.br" }, + { "3BBA950081B1865D1F430064045C02033180900084", "T-Mobile Corporate ID Card" }, + { "3BBA96008131865D0064056002033180900066", "Telesec TCOS 2 (SLE66P)\nTCOS 2.0 (on CX320P)\nTeleSec Netkey Card" }, + { "3BBA96008131865D00640560020331809000667001040530C9", "TeleSec Netkey E4 Card" }, + { "3BBA96008131865D0064057B0203318090007D", "TeleSec NetKey Card\nDeutsche Post card (tcos)" }, + { "3BBB18008131FE4580670518B1020184008105E0", "STARCOS Smart Card (Other)\nhttps://www.gi-de.com/de/identities/unternehmenssicherheit/signaturkarte" }, + { "3BBB1800C01031FE4580670412B003030000810138", "Giesecke & Devrient Star Sign Card, STARCOS 3.0 DI, 72 KB, RSA2048 bit\nGiesecke & Devrient Smartc@fe Expert 32K v2.0" }, + { "3BBB1800C01031FE4580670412B00303000081053C", "Philips Smart MX\nSzczecin University of Technology in Poland student identity card (Elektroniczna Legitymacja Studencka = student identity card)\nCSOB bank, Czech Republic\nCATCert (Agencia Catalana de Certificacio) catalan government workers identity card" }, + { "3BBB1800C03E31FE654726442054534D20312E30B7", "Italian Tachograph Driver Card" }, + { "3BBC1800813120755A43332E313220524556204146", "ZeitControl BasicCard Enhanced 3.7\nhttp://www.basiccard.com/" }, + { "3BBC1800813120755A43332E313420524556204445", "ZeitControl BasicCard Enhanced 3.14 Rev D\nhttp://www.basiccard.com/" }, + { "3BBC1800813120755A43332E333220524556204247", "ZeitControl BasicCard (Other)\nhttps://ZeitControl" }, + { "3BBC1800813120755A43332E333420524556204447", "ZeitControl BasicCard Enhanced ZC3.34 (Other)\nhttps://www.zeitcontrol.de/en" }, + { "3BBC94004014474733483335585332303030", "GSM-SIM Era-PL\nT-Mobile GSM SIM Card" }, + { "3BBC94004014474733483335585632303030", "GSM SIM CARD 32K, Vodafone" }, + { "3BBC94004014474733493539424332303030", "GSM SIM Vodafona NL prepaid" }, + { "3BBC94004014474733493543414331303030", "Siemens SIM card" }, + { "3BBC94004014474733493731394332303020", "Telenor SIM card (Norway)" }, + { "3BBC94004014474733494231424331303020", "Telenor SIM (Telecommunication)" }, + { "3BBC94004014474733494231424331303030", "SIM Card (Scarlet, Belgium) (Telecommunication)\nhttps://www.scarlet.be/nl/prepaid/" }, + { "3BBC94004014474733533035315331303130", "GSM SIM (Tele2, Estonia)\nGSM SIM Elisa Estonia; 2007\nGSM SIM from 'fonic' Germany" }, + { "3BBC94004014474733533443454332303030", "Era-PL SIM Card (Telecommunication)" }, + { "3BBD110000414C4946415820503031523041", "alifax (HealthCare)" }, + { "3BBD18008131FE45805102670414B10101020081053D", "Austrian 'e-Card' (=Health Card)\nspecial Version of Starcos 3.1" }, + { "3BBD18008131FE45805102670518B102020201810531", "Austrian health insurance card 'e-card'" }, + { "3BBD18008131FE45805103670414B10101020081053C", "Austrian Health insurance card 'eCard' (HealthCare)\nhttp://www.chipkarte.at" }, + { "3BBE..000041052000............00009000", "CryptoMate64 USB Cryptographic token\nhttp://www.acs.com.hk/en/products/18/cryptomate64-cryptographic-usb-tokens/\nACS ACOS5-64 V2.00\nhttp://www.acs.com.hk/en/products/17/acos5-64-cryptographic-smart-card/" }, + { "3BBE1100004101102038000000000000000000", "ACOS2" }, + { "3BBE1100004101380000000000000000019000", "ACS (Advanced Card System) ACOS-1\nACOS3\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, + { "3BBE1100004101380000000000000000029000", "ACS (Advanced Card System) ACOS-1 8K" }, + { "3BBE1100004101380000010000000000019000", "ACOS3 Microprocessor Card (Contact) (Other)\nhttp://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, + { "3BBE1100004101380000030000000000019000", "ACS ACOS3-32 (Telecommunication)\nhttp://www.acos3.com/" }, + { "3BBE110000410138000004006275627A019000", "Advanced Card Systems ACOS3 (24k) V1.7\nhttp://www.acs.com.hk/index.php?pid=product&prod_sections=0&id=ACOS3" }, + { "3BBE1100004101380000050000000000029000", "ACS (Advanced Card System) ACOS2" }, + { "3BBE1100004101380100030000000000029000", "ACOS2 test card from ACS reading off a ACR38U" }, + { "3BBE1100004101380300040000000000019000", "ACOS 3 from ACS (Other)" }, + { "3BBE1100004101380400140000000000019000", "Dekart Smartcard Logon (eID)\nhttp://www.smartcardfocus.com/shop/ilp/se~81/dekart-smartcard-logon/p/index.shtml" }, + { "3BBE1100004101380400140000000000029000", "DEKART proprietary logon authentication solution for Windows (Other)\nhttp://www.dekart.com/products/" }, + { "3BBE1100004101380500070000000000029000", "EEPROM card (Other)" }, + { "3BBE11000041013817CE010000000000019000", "ACOS3 Contact Microprocessor Card (Other)\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, + { "3BBE1100004101382500030000000000019000", "8 pin (eID)" }, + { "3BBE1100004101384D800A8050524F56009000", "ACS (Advanced Card System) ACOS-3" }, + { "3BBE110000410138FF40000000000000019000", "Acos3 (zend) (eID)" }, + { "3BBE1100004107020000000000000000019000", "ACOS7 MOC Combi-Card (Other)\nhttp://www.acs.com.hk/en/products/123/acos7-moc-combi-card/" }, + { "3BBE1800004105..0000000000000000009000", "Advanced Card Systems (ACS) ACOS5 Cryptographic Smart Card" }, + { "3BBE1800004105100000000000000000009000", "ACS ACOS5 'ACOS5-32-G' dual card\nhttp://www.acs.com.hk/acos5.asp" }, + { "3BBE1800004206110000000000000000009000", "Etoken nano 192k (eID)" }, + { "3BBE94004014474733463034415A455439313330", "GSM operator Life Ukraine (Telecommunication)" }, + { "3BBE940040144747335333454441544C36303130", "SingTel hi! Prepaid GSM SIM UICC (Telecommunication)" }, + { "3BBE940040144747335333454841544C39313000", "Latvian GSM operator TELE2" }, + { "3BBE940040144747335333474841544C39313030", "simCard Vip Mobile(Serbia) or Telecom Austria (Telecommunication)\nhttp://www.vipmobile.rs/" }, + { "3BBE94008131FE3553504B3233205745353031364E4325", "G&D StarCOS SPK 2.3 secure element (Bank)" }, + { "3BBE9500004103000000000000000000029000", "touchatag SAM card\nSpanish University of Murcia smart ID card - Old version with CajaMurcia Banking card integrated (Maestro card) (M.Mar OS) - Also used by many others spanish universities\nACOS6 C6\nhttps://www.acs.com.hk/en/products/309/acos6-multi-application-purse-card-contact/\nACOS6S C7 SAM\nhttps://www.acs.com.hk/en/products/310/acos6-sam-secure-access-module-card-contact/" }, + { "3BBE96000041013802001D0000000000019000", "ACOS3-32 (Other)\nhttps://www.acs.com.hk/en/products/306/acos3-microprocessor-card-contact/" }, + { "3BBE9600004103000000000000000000029000", "SAM inside the Tikitag reader from Alcatel-Lucent\nhttp://hackerati.com/post/57314994/rfid-on-the-cheap-hacking-tikitag" }, + { "3BBE9600004105004E46000000000000009000", "ACOS5-64 v3.00 (PKI)\nhttps://www.acs.com.hk/en/products/308/acos5-64-v3.00-cryptographic-card-contact/" }, + { "3BBE9600004105300000000000000000009000", "CryptoMate Nano USB Cryptographic token\nhttp://www.acs.com.hk/en/products/414/cryptomate-nano-cryptographic-usb-tokens/\nACS ACOS5-64 V3.00\nhttp://www.acs.com.hk/en/products/308/acos5-64-v3.00-cryptographic-card-contact/" }, + { "3BBE9600004206210000000000000000009000", "ESMART Token (PKI)\nhttps://esmart.ru/products/informatsionnaya-bezopasnost/smart-karty-esmart-token/" }, + { "3BBE9600801FC78031E073FE21136200..83819000..", "Vodafone (Italy) 128 kB GSM SIM card\nTIM (Italy) 128 kB GSM SIM card" }, + { "3BBF..008131FE5D0064040F03..31C073F701D0009000..", "TCOS 3.0 on Philips P5CD036" }, + { "3BBF..008131FE5D0064041103..31C073F701D0009000..", "TCOS 3.0 on Philips P5CT072" }, + { "3BBF..008131FE5D0064041503..31C073F701D0009000..", "TCOS 3.0 on Philips P5CD072" }, + { "3BBF..008131FE5D00640428030231C073F701D0009000..", "TCOS 3.0 release 2 on Philips P5CD080" }, + { "3BBF..008131FE5D0064056D03..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CX642P" }, + { "3BBF..008131FE5D0064058903..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CLX641P" }, + { "3BBF..008131FE5D0064058A03..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CLX640P" }, + { "3BBF..008131FE5D0064059103..31C073F701D0009000..", "TCOS 3.0 on Infineon SLE 66CX680PE" }, + { "3BBF11008131..4545504100000000........0000......", "Austrian Quick E-purse\nhttp://www.quick.at/" }, + { "3BBF11008131FE45455041000000000000000000000000F1", "a.sign premium signature card" }, + { "3BBF11008131FE4545504100000000792780760000000059", "Raiffeisenbank Austria (Raffeisen Club) Maestro debit card (old model) (Bank)" }, + { "3BBF11008131FE454D434100000100016971850000000077", "Austrian 'easybank' branded Mastercard, issued 2007" }, + { "3BBF11008131FE454D434100000100020820510000000090", "austrian combined card of a mastercard and OBB Vorteilscard (Austrian Federal Railways)\nhttp://www.oebb.at/pv/de/Servicebox/VORTEILScard/Bezahlen_mit_der_VORTEILScard/VORTEILScard_MasterCard.jsp" }, + { "3BBF11008131FE454D43410000010002559133000000001E", "Mastercard (Paylife Austria)" }, + { "3BBF1100C01031FE44534D405254204341464520312E3143C1", "Giesecke&Devrient SmartCafe 1.1" }, + { "3BBF18008031703553544152434F5320533231204390009B", "Giesecke & Devrient STARCOS S2.1" }, + { "3BBF18008131705553544152434F532053323120439000FA", "Giesecke & Devrient STARCOS S2.1" }, + { "3BBF1800C02031705253544152434F5320533231204390009C", "Giesecke & Devrient SPK 2.1 C" }, + { "3BBF9300801FC68031E073FE2113576573746B2E6D65E3", "eSTK.me v1.2.5 or later (Telecommunication)\nhttps://eSTK.me" }, + { "3BBF9300803FC6828031E073FE2113576573746B2E6D6541", "eSTK.me v1.2.4 (Telecommunication)\nhttps://eSTK.me" }, + { "3BBF94008131FE65454C55204175737472696120312E3238", "A-Trust: trust-sign (Old Version, ca. 2002) for Digital Signature etc.\nA-Trust: a-sign-premium (ca. 2004) 'Burgerkarte' ('Citizen-Card')\nfor Identifikation, Digital Signature etc.\n('should be' Starcos 2.3)" }, + { "3BBF9500801FC68031E073FE2113576573746B2E6D65E5", "eSTK.me v3.1.1 or later (Telecommunication)\nhttps://estk.me" }, + { "3BBF9500803FC6828031E073FE2113576573746B2E6D6547", "eSTK.me v3.1.1 (Telecommunication)\nhttps://eSTK.me" }, + { "3BBF96008131FE5D0064........31C073F701D0009000..", "TCOS 3.0 / NetKey 3.0" }, + { "3BBF96008131FE5D00640411000031C073F701D0009000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, + { "3BBF96008131FE5D00640411030131C07301D000900000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, + { "3BBF96008131FE5D00640411030131C073F701D0009000", "DATEV eG, Nuernberg, Bavaria, Germany (PKI)\nhttp://www.datev.de" }, + { "3BC5FF8131FB458073C6010000", "Japanese Individual Number Card (eID)\nhttps://www.kojinbango-card.go.jp/en/kojinbango/index.html" }, + { "3BC800000073C84000000000", "verve (Bank)" }, + { "3BCDFF8031FE450068D276000028040481009000CD", "Tachograph company test card (Transport)" }, + { "3BD096FF81B1FE451F032E", "New european health insurance card of the German health insurance (G2) (HealthCare)\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, + { "3BD096FF81B1FE451F072A", "German public health insurance card (,,Gesundheitskarte'), 2nd generation (G2), issuer Techniker Krankenkasse (HealthCare)\nhttps://gematik.de/cms/de/spezifikation/wirkbetrieb/kartengeneration2/kartengeneration2.jsp" }, + { "3BD096FF81B1FE451FC7EA", "German public health insurance card (Elektronische Gesundheitskarte eGK), 2nd generation (G2) (HealthCare)" }, + { "3BD097FF81B1FE451F072B", "German Elektronische Gesundheitskarte (eGK) (HealthCare) - From TK (HealthCare)\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, + { "3BD097FF81B1FE451FC7EB", "German Health Professional Card (eHBA) (HealthCare)\ngSMC-KT, STARCOS 3.6 (HealthCare)" }, + { "3BD0A8FF81F1FB24001FC3F4", "Philips DESFire SAM" }, + { "3BD218008131FE450101C1", "Dutch License Plate Card (RDW)\nhttps://commons.wikimedia.org/wiki/File:Kentekencard_voorzijde_1_december_2013.jpg" }, + { "3BD218008131FE58C90114", "Atos CardOS5 (PKI)\nhttp://atos.net/NR/rdonlyres/17C7BDD0-225B-4A58-B9A4-438EA3F3238A/0/74743_20120830_160149_cardos_v5_0__datenblatt_en.pdf" }, + { "3BD218008131FE58C90217", "Atos CardOS 5.3 (PKI)\nhttp://www.atos.net/cardos" }, + { "3BD218008131FE58C90316", "Austrian 'RKS-Card' issued by GlobalTrust (PKI)\nhttps://secure.globaltrust.eu/info-rksv.html" }, + { "3BD218008131FE58C90411", "Identity Card in Slovakia with security chip and e-signature issued after 2021-06-21 (eID)\nD-TRUST Card 4.1 Standard, qualified signature card" }, + { "3BD218008131FE58CA6076", "CardOS IoT V5.4 (PKI)\nhttps://atos.net/wp-content/uploads/2018/11/ct_181127_lpm_cardos_iot_v5-4_fs_en4_web.pdf" }, + { "3BD218008131FE58CB0116", "D-Trust Card 5.1/5.4 (contact based)\nhttps://www.d-trust.net/de/support/signatur-und-siegelkarten" }, + { "3BD21802C10A31FE58C80D51", "Siemens Card CardOS M4.4" }, + { "3BD296FF81B1FE451F870102AB", "Electronic Vehicle Registration (eVR) from RDW.nl (The Netherlands), open sourced at [URL], demo (Windows / Linux Wine Mono) (Transport)\nhttps://github.com/eVRMTV/eVR" }, + { "3BD396FF81B1FE451F078081052D", "German public health insurance card (Elektronische Gesundheitskarte eGK), 2nd generation (G2) (HealthCare)" }, + { "3BD5180081313A7D8073C8211030", "Aladdin eToken NG-Flash with 256MB of flash memory\nAladdin eToken PRO (72KB)\nhttp://www.aladdin.com/etoken/devices/default.aspx" }, + { "3BD518008131FE7D8073C82110F4", "Bank of Lithuania Identification card\nGemalto SafeNet eToken Java Based Cards\nhttps://safenet.gemalto.com/multi-factor-authentication/authenticators/pki-usb-authentication/" }, + { "3BD518FF8091FE1FC38073C8211308", "Athena IDProtect (JavaCard 2.2.2)\nhttp://www.athena-scs.com/product.asp?pid=32\nThales nShield Security World Card - Remote Administration Ready\nhttps://www.thalesesecurity.fr/products/hsm-management-and-monitoring/nshield-remote-administration" }, + { "3BD518FF8191FE1FC38073C821100A", "ComSign digital signature card (eID)\nhttps://www.comsign.co.uk/" }, + { "3BD518FF8191FE1FC38073C8211309", "Athena IDProtect Key (v2)\nhttp://www.athena-scs.com/product.asp?pid=33" }, + { "3BD518FF81B1FE451FC38073C821106F", "DPI Card ID Guatemala Version 2024 (eID)\nhttps://www.renap.gob.gt/" }, + { "3BD5950400AE01020101", "Axalto Cyberflex Access 64K v2b SM 1.1" }, + { "3BD595FF8091FE1FC38073C8211385", "Athena IDProtect - Cryptographic Java Card\nhttp://www.athena-scs.com/product.asp?pid=32" }, + { "3BD596028031FE654F734549441F", "AVR128DA32 microcontroller based open source EID smartcard with RSA and ECC. (eID)\nhttps://oseid.sourceforge.io/" }, + { "3BD596FF80B1FE451F878073C82110A4", "French national identity card (eID)\nhttps://en.wikipedia.org/wiki/National_identity_card_(France)" }, + { "3BD596FF8191FE1FC34332333030CC", "HID Global - Crescendo C2300 (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/c2300" }, + { "3BD6180080B1806D1F038051006110309E", "Atmel/Athena T0 PC/SC Compliance Test Card No. 1" }, + { "3BD618008131FE7D415350204F5383", "ASP FIXED CHAL1, 2, 3 and 4 (Other)" }, + { "3BD6180081B1807D1F038051006110308F", "ASECard Crypto\nhttp://www.athena-scs.com/product.asp?pid=8" }, + { "3BD618FF8191FE1FC34573C8211110DD", "PDOX J3R180 (JavaCard)" }, + { "3BD6960081B1FE451F078031C1521118F8", "smart card from NASA, 2019 (PKI)" }, + { "3BD6960081B1FE451F878031C152211949", "DHS CAC card (PKI)" }, + { "3BD6960081B1FE451F878031C152411A2A", "Identiv SCR3310 v2.0 (eID)" }, + { "3BD6970081B1FE451F078031C1521118F9", "NASA Personal Identity Verification (PIV) card (eID)\nIDEMIA Cosmo V8.0 with a PIV applet" }, + { "3BD6970081B1FE451F078031C1521119F8", "Secure badge (PKI)" }, + { "3BD6970081B1FE451F878031C152211948", "DOS PIV (PKI)" }, + { "3BD6970081B1FE451F878031C152211A4B", "ID-One PIV 2.4 (P/N 1501381) from IDEMIA (Other)" }, + { "3BD6970081B1FE451F878031C152411A2B", "Oberthur Technologies ID-One PIV/CIV on V8 Device (eID)\nhttps://csrc.nist.gov/csrc/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp2986.pdf\nIDEMIA Cosmo V8.1 with a PIV applet" }, + { "3BD71100400A654E434F533037", "eNCOS MC MChip Advance (Bank)" }, + { "3BD7970081B1FE451F878031C15351132012", "IdemiaID-ONEPIV (eID)\nhttps://www.idemia.com/id-one-piv-card" }, + { "3BD81800801F078031C1640806920F", "US Government CAC (PKI) / IDEMIA Cosmo v8 (PKI)\nhttps://www.idemia.com/id-one-piv-card" }, + { "3BD81800801F078031C1640806920FDF", "US DoD Common Access Card (IDEMIA Cosmo v8) (PKI)" }, + { "3BD8180080B1FE451F078031C1640806920FD5", "Oberthur Cosmo v8 (PKI)" }, + { "3BD818FF8131FE458064041BB42A8105D5", "Schweizerische Krankenversicherungskarte KVG (HealthCare)" }, + { "3BD818FF81B1FE451F038064041AB403810561", "D-Trust multicard advanced 3.1\nGerman public health insurance card ('Gesundheitskarte'), issuer SBK 'Siemens Betriebskrankenkasse'" }, + { "3BD896008031FE4400531200840F90001F", "Cape Verde National Identity Card (CNI) (eID)\nhttps://sniac.cv/cartao-nacional-de-identificacao/" }, + { "3BD8960081B1FE451F0743485447504B494ADD", "Citizen Digital Certificate, Taiwan (PKI)\nhttp://moica.nat.gov.tw/" }, + { "3BD896FF8131FE458064041BB42A81055B", "Swiss LAMal health insurance card" }, + { "3BD911008131FE8D0000464F4D53312E3132", "TFOMS (eID)\nhttp://www.samtfoms.ru" }, + { "3BD918008011F08054434F4C4482900062", "TransaXiom Janus Card (Other)\nhttp://www.transaxiom.co.uk" }, + { "3BD91800C00910FE5459464F4E45000000", "Tyfone's SideTap Card (NFC payments)" }, + { "3BD918FF8191FE1FC35441474C494F5049565B", "Taglio PIV C2190 (NXP JCOP 3 SecID P60 CS) (eID)\nhttps://www.taglio.com/pivcard.html" }, + { "3BD99400004D4502000901009000", "Moviestar. GSM SIM card (Telecommunication)" }, + { "3BD99400004D454576352E369000", "Vending Machine Card (Other)" }, + { "3BD99400004D4D41523331349000", "Vodafone Spain 64kb SIM card. GSM/3G networks" }, + { "3BD99500004D4516005401009000", "MTS Ukraine (Telecommunication)\nhttp://www.mts.ua/" }, + { "3BD996FF8131FE454352455343454E444FFF", "HID Global Crescendo JCOP 21 v2.4.1 R2 64K (PKI)" }, + { "3BD996FF8131FE458031B8738601E0810522", "German dentist's identity card (eID)\nhttp://www.medisign.de/" }, + { "3BD996FF8191FE1FC343323330302D4B4559BA", "Crescendo Key (USB Type-A) (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/crescendo-key" }, + { "3BDA11FF81B1FE551F0300318473800180009000E4", "Gnuk OpenPGP Token (PKI)\nhttps://www.fsij.org/category/gnuk.html" }, + { "3BDA11FF81B1FE551F0300318473800180059000E1", "Nitrokey Start (Openpgp USB) (Other)\nhttps://www.nitrokey.com/products/nitrokey-start" }, + { "3BDA13FF8131FB468012392F31C173C601C03B", "My Number Card (The Social Security and Tax Number System in JAPAN) (eID)\nhttp://www.cas.go.jp/jp/seisaku/bangoseido/english.html" }, + { "3BDA1802C10A31FE584B53776973735369676EA9", "SuisseID Post - ATOS CardOS 4.x (eID)\nhttps://postsuisseid.ch/" }, + { "3BDA18FF8191FE1FC350564A434F503353494472", "J3H145 (P6 SecID) purchased from FUTAKO Ltd., Taiwan (JavaCard)\nhttp://www.javacardsdk.com" }, + { "3BDA18FF8191FE1FC380641211111073C0C1801B", "Belarus national identity card (passport)\nhttps://eng.belta.by/infographica/view/id-cards-in-belarus-7095/" }, + { "3BDA18FF81B1FE451FC3546963546F6B20322E3068", "TikTok 2.0 (PKI)" }, + { "3BDA18FF81B1FE451FC3546963546F6B20332E3069", "TicTok 3.0 (PKI) (PKI)\nhttps://en.cryptoshop.com/products/cryptas-tictok-v3-basisartikel.html" }, + { "3BDA18FF81B1FE751F030031C573C001400090000C", "OpenPGP Card V2" }, + { "3BDA18FF81B1FE751F030031F573C001600090001C", "OpenPGP Card V3" }, + { "3BDA9400004D4D41524A2B33399000", "SIM card from Vodafone Spain" }, + { "3BDA9500400A2508004053434F535441", "Card used for issuing commodity to benificiary for rice, wheat and more (Other)" }, + { "3BDA96FF8031FE454D696E694C6F61646572AB", "iClass SE Processor (Miniloader Mode) (Other)\nhttps://www.hidglobal.com/products/embedded-modules/iclass-se/sio-processor" }, + { "3BDA96FF8031FE45536E6D704C6F61646572A8", "iClass SE Processor (SNMP Loader Mode) (Other)\nhttps://www.hidglobal.com/products/embedded-modules/iclass-se/sio-processor" }, + { "3BDA96FF8131FE45805631B85349434181057B", "STARCOS 3.5 ID ECC C1R (PKI)\nhttps://www.gi-de.com/fileadmin/user_upload/MS/Certificates/STARCOS35_ID_ECC_TABLES.pdf" }, + { "3BDA96FF8191FE1FC343323330302D46495053E2", "Crescendo 2300 FIPS (JavaCard)" }, + { "3BDA96FF81B1FE451F0780584943412056322E30E9", "Starcos chip card from Giesecke & Devrient (PKI)\nhttps://ica.cz/functionality-smart-card" }, + { "3BDB11FF5000FF0000000000000007921603", "NEC V-WAY64 v2.1" }, + { "3BDB1800801F030031C06477E303008290004F", "Oberthur ID-One Cosmo 64K V5.2" }, + { "3BDB18008031FE448059494465616C20312E367D", "ID card Albania (eID)" }, + { "3BDB180080B1FE451F830031C064C7FC1000019000FA", "Oberthur Cosmo V7 64K Dual/128K" }, + { "3BDB18FF8191FE1FC306092B06010401E9100503D7", "SafeSign Default QSCD (NXP JCOP 3 SecID P60) (PKI)\nhttps://www.tuv-nederland.nl/assets/files/cerfiticaten/2020/02/security-target-v1.0.pdf" }, + { "3BDB18FF8191FE1FC306092B06010401E9100504D0", "Serbian qualified electronic certificate issued by Serbian Post sertification centr (PKI)\nhttps://www.ca.posta.rs/serbian_post_ca.htm" }, + { "3BDB18FF81B1FE751F03504B436172642056312E30ED", "Tecos 3 card (Other)" }, + { "3BDB18FF81B1FE751F035A43372E35205245562041AE", "BasicCard Professional ZC7.5-COMBI (Other)\nhttp://www.basiccard.com/" }, + { "3BDB18FF81B1FE751F035A43372E36205245562044A8", "Zeitcontrol Professional BasicCard ZC 7.6 REV D (Other)\nhttp://www.zeitcontrol.de/en/products/basiccard/basiccard" }, + { "3BDB18FFC080B1FE751F035A43372E352052455620416F", "ZeitControl BasicCard ZC7.5 user-programmable dual interface smart card\nhttp://www.smartcardfocus.com/shop/ilp/id~380/BasicCard_ZC7_5_Dual_Interface/p/index.shtml" }, + { "3BDB18FFC080B1FE751F035A43372E352052455620426C", "BasicCard ZC7.5 dual-interface programmable smartcard (30K) (eID)\nhttps://secure.zeitcontrol.de/shop/Smart-card-BasicCard-Professional-ZC75-Combi" }, + { "3BDB18FFC080B1FE751F035A43372E352052455620446A", "Smart card BasicCard Professional ZC7.5, ZeitControl cardsystems GmbH\nhttp://www.zeitcontrol.de/en/products/chip-cards/processor-chip-cards/basiccard" }, + { "3BDB18FFC080B1FE751F035A43372E3620524556204469", "ZeitControl BasicCard 7.6 (Other)\nhttps://www.zeitcontrol.de/en/products/basiccard/basiccard" }, + { "3BDB96004010004F535F335F3134059000", "Vehicle identity card for Iran (eID)" }, + { "3BDB9600801F030031C06477E30300829000C1", "Oberthur Card Systems (contactless pilot) ID-One Cosmo v5.2D 64K\nOberthur Card Systems (PIV Transitional) ID-One Cosmo v5.2D 72K\nCAC (Common Access Card)" }, + { "3BDB9600801F030031C064B0F3100007900080", "DoD CAC, Oberthur ID One 128 v5.5 Dual" }, + { "3BDB9600801F030031C064B0F310000F900088", "US Department of Veterans Affairs PIV" }, + { "3BDB9600801F830031C0641D18010001900051", "ID0One Cosmo Development Kit (JavaCard)" }, + { "3BDB96008031FE448059654944204E414452418F", "Pakistan ID card (eID)" }, + { "3BDB960080B1FE451F830012233F536549440F9000F1", "Estonia ID-card (eID)\nhttps://id.ee" }, + { "3BDB960080B1FE451F830012428F536549440F900020", "Latvia eID (eID)\nhttps://www.eparaksts.lv/lv/" }, + { "3BDB960080B1FE451F830031C064102301000F900063", "Extremenian Health Service target (HealthCare)\nhttps://saludextremadura.ses.es/web/preguntas-frecuentes" }, + { "3BDB960080B1FE451F830031C0641A1801000790005A", "Ercom CRYPTOSMART\nhttp://www.ssi.gouv.fr/entreprise/qualification/gamme-cryptosmart-pour-la-securisation-des-smartphones-et-des-tablettes/" }, + { "3BDB960080B1FE451F830031C0641A1801000F900052", "Serbian Car registration ID card\nhttp://blog.goranrakic.com/archives/2011/07/citanje_saobracajne_dozvole_sa_cipom.html" }, + { "3BDB960080B1FE451F830031C0641A71010007900033", "ChamberSign Gemalto USB Shell Token V2 - Certificate Audacio ** (eID)\nhttp://www.chambersign.fr/certificat-rgs-audacio/" }, + { "3BDB960080B1FE451F830031C064B0FC100007900005", "Oberthur Cosmo V7 debug card (SDK)" }, + { "3BDB960080B1FE451F830031C064B0FC10000F90000D", "ID-One PIV (that's the only non-numeric identifying mark) (PKI)" }, + { "3BDB960080B1FE451F830031C064BAFC10000790000F", "Oberthur ID-One Cosmo v7.0 80K (eID)\nhttps://www.ssi.gouv.fr/uploads/IMG/certificat/ANSSI-CC-cible_2011-64en.pdf" }, + { "3BDB960080B1FE451F830031C064BAFC10000F900007", "Oberthur ID-One Cosmo v7.0 (PKI)\nhttps://csrc.nist.rip/groups/STM/cmvp/documents/140-1/140sp/140sp1236.pdf" }, + { "3BDB960080B1FE451F830031C064BE1B0100019000FB", "Bank card" }, + { "3BDB960080B1FE451F830031C064C30801000F90009B", "SIM Aruba (Italian provider)" }, + { "3BDB960080B1FE451F830031C064C7FC100001900074", "Oberthur Cosmo (eID)\nhttp://www.stampit.org" }, + { "3BDB960080B1FE451F830031C064C7FC10000F90007A", "Guatemalan ID Card\nhttp://www.renap.gob.gt/" }, + { "3BDB960080B1FE451F830031C164084022300F90000A", "Oberthur v7 - in a Gemalto (was Gemplus) GemPC Key SmartCard Reader (grey USB dongle) - bought at ChamberSign (PKI)" }, + { "3BDB960080B1FE451F830031E85427E6040007900084", "Polish encard (eID)" }, + { "3BDB960080B1FE451F830031E85427E604000F90008C", "Token card from iBRE CompanyNet (mbank) (Bank)" }, + { "3BDB960080B1FE451F834553544F4E49412D65494455", "Estonian Identity Card (ID-One Cosmo v8.1) (eID)" }, + { "3BDB960080B1FE451F870031C1640958223607900019", "Idemia Solvo Fly 40 (JavaCard)" }, + { "3BDB960081B1FE451F0380F9A0000003080000100018", "Oberthur CS PIV End Point v1.08 FIPS201 Certified" }, + { "3BDB960081B1FE451F0380F9A0000003480000000149", "Fly Clear card" }, + { "3BDB960081B1FE451F8380F9A0000003080000100098", "Oberthur Cosmo v7 128K with PIV applet\nhttp://www.smartcardfocus.com/shop/ilp/id~410/p/index.shtml" }, + { "3BDB96FF80B1FE451F870031C164093364490F9000BC", "cnie Carte Nationale d'Identite Electronique (eID)" }, + { "3BDB96FF80B1FE451F870031C164093772130F9000F4", "French ID Card 2021 (eID)\nhttps://ants.gouv.fr/nos-missions/les-titres-produits-par-l-ants/les-documents-d-identite/la-puce-de-la-nouvelle-carte-nationale-didentite" }, + { "3BDB96FF8131FE4580670534B50201064081051B", "SINA STARCOS 3.5 BX-CombiCard+HSB (Other)" }, + { "3BDB96FFC01031FE4580671501B403000900810521", "Digital Tachograph Card for Professional Driver\nolish driver card for digital tachograph" }, + { "3BDC1802C10A31FE588031A873B0019B2460071320AA", "Public Services Card | Ireland (Other)\nhttps://psc.gov.ie/" }, + { "3BDC18FF00001225006480000401009000", "Vitale card CPS V4 (Carte Profesionnel de Sante) (HealthCare)" }, + { "3BDC18FF8011C18073C821136605036351000232", "GoTrust Idem Card (Other)\nhttps://www.gotrustid.com/idem-card" }, + { "3BDC18FF8091FE1FC38073C8211366010B0352000539", "Digital Signature Costa Rica (eID)" }, + { "3BDC18FF8091FE1FC38073C821136602040355000235", "ST security module for German smart meter gateway (JavaCard)\nhttps://www.bsi.bund.de/SharedDocs/Downloads/DE/BSI/Publikationen/TechnischeRichtlinien/TR03109/TR-03109-2-Anforderungen_an_die_Funktionalitaet.pdf?__blob=publicationFile&v=3" }, + { "3BDC18FF8111C18073C821136605036351000233", "GoTrust Idem Key (Other)\nhttps://www.gotrustid.com/idem-key" }, + { "3BDC18FF8111FE8073C82113660106013080018D", "Aladdin R.D. JaCarta LT (eID)" }, + { "3BDC18FF8191FE1FC3060A2B06010401E910050103D2", "DoD (Other)\nhttps://cps.ca.pkidefensie.nl/" }, + { "3BDC18FF8191FE1FC3060A2B06010401E910050203D1", "Caregiver card for Dutch Medical System called UZI (Unieke Zorgverlener Identificatie, Caring Unique Identification) (HealthCare)\nhttps://www.uziregister.nl/" }, + { "3BDC18FF8191FE1FC3060A2B06010401E910050204D6", "UZI (HealthCare)" }, + { "3BDC18FF8191FE1FC38073C821136601060130040155", "Athena IDProtect Key Laser" }, + { "3BDC18FF8191FE1FC38073C821136601061159000128", "JaCarta (PKI)\nhttp://www.aladdin-rd.ru" }, + { "3BDC18FF8191FE1FC38073C8211366010B0352000538", "Athena IDProtect Smart Card Logon Card" }, + { "3BDC18FF8191FE1FC38073C821136605024258000279", "NXP Athena SCS (PKI)" }, + { "3BDC18FF8191FE1FC38073C821136605036057000255", "NXP IDProtect (X) (JavaCard)" }, + { "3BDC18FF8191FE1FC38073C821136605036351000250", "JCOP3 SecID P60 CS (JavaCard)" }, + { "3BDC18FFC080B1FE751F035A43382E362052455620443657", "ZeitControl Professional Multi-Application BasicCard ZC8.6 (Other)\nhttps://www.zeitcontrol.de/Smart-card-BasicCard-Professional-ZC76" }, + { "3BDC96FF8111FE8031C8544356300573FFA1C03B", "NXP Javacard with Athena SCS OS (JavaCard)" }, + { "3BDC96FF8111FE8031C8544356350773FFA1C03C", "NXP JCOP 4, J3R200P0X3U/0ZA16CP NXD6.2 (JavaCard)" }, + { "3BDC96FF8191FE1FC38073C8211366050363510002DE", "Montenegro eID (eID)" }, + { "3BDC96FF81B1FE431FC30B46415245474F53414D5632CC", "Multismartcard SAM (used in proprietary Scheidt&Bachmann Smartcard Reader v2)" }, + { "3BDD18008131FE4580F9A0000000770100700A90008B", "National ID Card of Peru issued by RENIEC from Oberthur" }, + { "3BDD18008131FE4580F9A000000077010800079000FE", "Oberthur Cosmo v7 IAS ECC\nBrazilian 'e-CNPJ' card, issued by Certisign (Oberthur)" }, + { "3BDD18008131FE45904C41545649412D65494490008C", "Identity card (eID) Republic of Latvia\nhttp://www.pmlp.gov.lv/lv/pakalpojumi/passes/eid.html" }, + { "3BDD18008191FE1FC3006646530803003671DF00008097", "Feitian K9Plus - ePass FIDO-NFC with PIV (Other)\nhttps://ftsafe.com/products/FIDO/NFC" }, + { "3BDD18FF8191FE1FC3006646530803003671DF00008068", "Feitian FIDO NFC Plus K9 Security Key (Other)\nhttps://www.ftsafe.com/products/FIDO/NFC" }, + { "3BDD18FF8191FE1FC3FF4F70656E506879736963616CF6", "Open Physical PIV-Compatible NXP SECID P60 (eID)\nhttps://openphysical.org/" }, + { "3BDD18FFC080B1FE451FC30068D276000028040411009000C9", "Russian Federation driver card for the digital tachograph\nPolish driver card for digital tachograph" }, + { "3BDD18FFC080B1FE451FC30068D276000028040971009000A4", "Worktime/driving style monitoring card (Transport)\nhttp://www.paetronics.fi/en/" }, + { "3BDD96008010FE8031806301FFC073B3211B8105", "BIFIT iBank 2 USB Key (Bank)\nhttp://bifit.ua" }, + { "3BDD96008031FE450031B8640429ECC1739401808248", "Finnish Digital and Population Services Agency Organisation Card (eID)\nhttps://dvv.fi/en/organisation-cards" }, + { "3BDD960080B1FE451F8380640503040056564453414554FC", "VASCO DIGIPASS KEY 101 (Other)" }, + { "3BDD96008131FE4580F9A00000007701080007900070", "IDEMIA Cosmo v8.1-n (JavaCard)" }, + { "3BDD96FF801F034E5850204E53434F5320342E3006", "SCOSTA (Transport)" }, + { "3BDD96FF8131FE4580595F5374645F496E697481059B", "Karta kryptograficzna cryptoCertum 3.5 (PKI)\nhttps://www.certum.pl/pl/karty-do-czytnikow/" }, + { "3BDD96FF81B1FE451F03006404050803739621D0009000C9", "German public health insurance card ('Gesundheitskarte'), issuer Techniker Krankenkasse" }, + { "3BDD96FF81B1FE451F03006404050A02739621D0009000CA", "German public health insurance card ('Gesundheitskarte'), issuer Techniker Krankenkasse, issued 02/15 (HealthCare)" }, + { "3BDD96FF81B1FE451F030064057310A673D621C000900053", "New european health insurance card of the German health insurance" }, + { "3BDD96FF81B1FE451F038031B052010364041BB42281051B", "Austrian Motor Vehicle Registration Certificate (Transport)" }, + { "3BDD96FF81B1FE451F038031B052020364041BB422810518", "Austrian 'e-card' G3 (State Health Insurance Card)\n(running StarCOS 3.4 by Giesecke & Devrient)" }, + { "3BDD97FF81B1FE451F03006404050803739621D0009000C8", "German 'eGK' (State Health Insurance Card)" }, + { "3BDD97FF81B1FE451F0300640405080373969621D00090C8", "German public health insurance card ('Gesundheitskarte'), issuer Knappschaft" }, + { "3BDD97FF81B1FE451F03006404050A02739621D0009000CB", "German Elektronische Gesundheitskarte (eGK) (HealthCare)\nhttp://www.bmg.bund.de/en/health/the-electronic-health-card.html\nhttps://de.wikipedia.org/wiki/Elektronische_Gesundheitskarte" }, + { "3BDE11000049434F5335330000000000000008", "MyKID (eID)" }, + { "3BDE13000049434F5335330000000000000008", "Malaysian citizens under age of 12 including newborns (non-compulsory) (eID)\nhttps://en.wikipedia.org/wiki/Malaysian_identity_card#MyKid" }, + { "3BDE18FF8191FE1FC38031815448534D317380214081071C", "SmartCard-HSM 4K USB-Token (JavaCard)\nhttps://www.smartcard-hsm.com/features.html#usbstick" }, + { "3BDE18FF81F1FB34001F074445534669726553414D56312E30D2", "Mifare Desfire SAM Module" }, + { "3BDE18FF81F1FE43003F078344455346697265382053414D2D5817", "NXP SAM" }, + { "3BDE18FFC080B1FE451F034573744549442076657220312E302B", "Estonian Identity Card (EstEID v1.0 2006 cold)" }, + { "3BDE86FF9101F1FB34001F074445534669726553414D56312E305D", "Mifare Desfire SAM Module (after warm reset) (Other)" }, + { "3BDE96FF8191FE1FC38031815448534D3173802140810792", "SmartCard HSM (PKI)\nhttps://www.smartcard-hsm.com/" }, + { "3BDE98FF8191FE1FC38031815448534D3173802140810792", "Nitrokey HSM 2 (PKI)\nhttps://docs.nitrokey.com/hsm/" }, + { "3BDF1100400A003180718666654E434F5331839000", "eNCOS MC MChip Advance V10 (Bank)\nhttps://tr.iccore.tech/" }, + { "3BDF18008131FE580031B964050E010073B401D300000022", "Identity Card in Slovakia with security chip and e-signature" }, + { "3BDF18008131FE588031905241016405C903AC73B7B1D444", "a.sign RK CHIP with certificate\nhttps://www.a-trust.at/webshop/Detail.aspx?ProdId=2021" }, + { "3BDF18008131FE588031B05202046405C903AC73B7B1D422", "Austrian 'e-Card' (=Health Card) of the 4th generation. (HealthCare)" }, + { "3BDF18008131FE58AC31B05202046405C903AC73B7B1D422", "e-Card Austria (HealthCare)" }, + { "3BDF18008131FE67005C49434DD49147D276000038330058", "Infineon SICRYPT Card Module D4 PC/SC Compliance Test Card" }, + { "3BDF18008131FE67005C49434DD49147D277000038330059", "Infocrypt Token++ (PKI)\nhttps://tokenplus.ru/products/%D0%A2%D0%BE%D0%BA%D0%B5%D0%BD/" }, + { "3BDF18008131FE7D006B020C0182011101434E53103180FC", "Italian healthcare card (TS) National Service Card (CNS) (HealthCare)" }, + { "3BDF18008131FE7D006B040C0184011101434E53103180FC", "Italian healthcare card (TS) National Service Card (CNS) (HealthCare)\nhttp://www.regione.toscana.it/cartasanitaria\nhttps://www.agid.gov.it/it/piattaforme/carta-nazionale-servizi" }, + { "3BDF18008131FE7D006B150C0180011101434E53103180E9", "Provider: Actalis S.p.A.\ncode: AT00006181\nhttp://www.actalis.it" }, + { "3BDF18008131FE7D006B150C0181011101434E53103180E8", "Italian healthcare card (TS) National Service Card (CNS)\nCarta Regionale dei Servizi - Regione Lombardia\nTuscany TS-CNS\nhttp://www.regione.toscana.it/cartasanitaria" }, + { "3BDF1801C04031FC7580738421E0694D54434F537302050516", "German digital tachograph control card (Transport)" }, + { "3BDF18FF8091FE1FC3003138644790ECC273140150829000BB", "Ministry of Interior - France 'Agent Card' (Other)" }, + { "3BDF18FF8131FE4580590180484944433730307300011B33", "Crescendo C700 + MiFare 4K\nhttp://www.smartcardfocus.com/shop/ilp/id~265/p/index.shtml" }, + { "3BDF18FF8131FE458073C8211059B81D417574684B6579BA", "Arculus AuthentiKey (Other)" }, + { "3BDF18FF8191FE1FC3003138644790ECC273140150829000BA", "Card store authentication and signature keys (JavaCard)\nhttps://ants.gouv.fr/Les-titres/Cartes-Agents/Adhesion/Telechargement-et-support" }, + { "3BDF18FF8191FE1FC30031B8640000EC0073940000829000FE", "NXP Jcop3 P60 ChipDoc v7b4 (JavaCard)\nhttps://www.javacardos.com/store/products/10029" }, + { "3BDF18FF8191FE1FC30031B86404216010739401C005900001", "Dutch Governement Identity Card using physical (eID)\nhttps://nl.wikipedia.org/wiki/Rijkspas" }, + { "3BDF18FF8191FE1FC30031B8640C01ECC173940180829000B3", "ebee card\nhttps://www.ebeeoffice.ca/ebee-home/public\nDigital Signature Costa Rica (issued since 09/2019) (eID)\nhttps://www.mifirmadigital.go.cr/" }, + { "3BDF18FF81B1FE451F870031B96409377213738401E00000008E", "Slovak eID card with dual (NFC and physical) interface. It is Cosmo v9.2. The card is used for electronic identification and for electronic signing with either qualified or just electronic signing certificate. (eID)" }, + { "3BDF18FF81F1FE43001F034D494641524520506C75732053414D98", "Mifare SAM AV2" }, + { "3BDF18FF81F1FE43003F03834D494641524520506C75732053414D3B", "NXP SAM AV2 module" }, + { "3BDF18FF81F1FE43003F03834D4946506C75732053414D3B53414D3B", "Mifare SAM -AV2 (PKI)" }, + { "3BDF18FF81F1FE43003F07834D49464152452053414D204156333011", "NXP SAM AV3 module" }, + { "3BDF18FF910131FE4680319052410264050200AC73D622C099", "Acos-ID (AUSTRIACARD's Operating System) (Other)\nhttps://www.austriacard.com/digital-security/solutions/card-solutions/acos-id/" }, + { "3BDF94FFC080B1FE451F03006AD2760000280415FA10040090006B", "UK Digital Tacho card (Other)" }, + { "3BDF94FFC080B1FE451F03006AD2760000280415FA40040090003B", "DVLA Company Card (Transport)" }, + { "3BDF9500801F878031A073FF21006345B105830F900060", "FUTURE CARD Normal ISO SIM (Telecommunication)" }, + { "3BDF9500801F878031A073FF21006345B309830F90006E", "Card Mobilis Algeria telecom (Telecommunication)\nhttp://www.mobilis.dz" }, + { "3BDF9500801FC38031E073FE211B674C455441323135BD", "SK Telecom SIM card (in Korea) (Telecommunication)\nhttp://www.sktelecom.co.kr/" }, + { "3BDF95FF8091FE1FC349445044554F33475049544356008029", "Generic Card NFC (eID)" }, + { "3BDF95FF8091FE1FC38025A0000000685319000173C8211329", "CardLogix Credensys-J Contacted Java Card 2.2.1 Global Platform 2.1.1 (Atmel AT90SC12872RCFT)\n(bank)" }, + { "3BDF96008031FE450031B864041FECC173940180829000EC", "Ministry of Interior - France 'Agent Card'\n(Carte Agent du Ministere de l'Interieur Francais)" }, + { "3BDF96008031FE450031B8640429ECC173940180829000DA", "Finnish identity card given by the City of Helsinki to all members of city council, board and commitees" }, + { "3BDF960080B1FE451F830012276F5741495242555331079000EA", "IDEMIA ID-One Cosmo V8.2 IAS ECC card (eID)" }, + { "3BDF960080B1FE451F838073BC9180F9A00000007780080201A4", "Latvian eSignature card (eID)\nhttps://www.lvrtc.lv/e-signature.html" }, + { "3BDF960080B1FE451F870031C16408923201738421E0059000C5", "Company Card for Transport companies (Transport)" }, + { "3BDF96008131FE4541434F532D4944303032382E3031366F", "Sri Lankan driving license [ web: motortraffic.gov.lk ] (eID)\nhttp://www.motortraffic.gov.lk/web/index.php?option=com_content&view=article&id=83&Itemid=140&lang=en" }, + { "3BDF96008131FE4580738421E0554978000080830F90000C", "Idemia Cosmo X (eID)\nhttps://cyber.gouv.fr/sites/default/files/2021/08/anssi-cible-cc-2021_36n.pdf" }, + { "3BDF96008131FE588031B05202056405A100AC73D622C020", "Austrian health insurance card 'e-card' (HealthCare)\nhttps://de.wikipedia.org/wiki/E-card_(Chipkarte)" }, + { "3BDF960081B1FE451F838073CC91CBF9A0000003080000100079", "Test PIV Cards available for sale from NIST\nhttp://csrc.nist.gov/groups/SNS/piv/testcards.html" }, + { "3BDF960090103F07008031E0677377696363000073FE210006", "swsim card (Telecommunication)" }, + { "3BDF960090103F07008031E0677377696363000073FE2100DC", "swsim (Telecommunication)" }, + { "3BDF96FF8131FE455A018048494443313158587300011B09", "HID Crescendo iCLASS Px G8H" }, + { "3BDF96FF8131FE4580590180504956434C41537300011BDE", "HID Global pivCLASS v1.0 (PKI)\nhttp://www.hidglobal.com/products/cards-and-credentials/pivclass/pivclass-smart-card" }, + { "3BDF96FF8131FE45805B44452E42415F53433335328105B5", "Employee ID card from the Federal Employment Agency (Germany) (PKI)\nhttps://www.pki.arbeitsagentur.de/" }, + { "3BDF96FF8131FE45805B44452E424E4F544B3130308105A0", "BeA - Certification Card for German Solicitors (Other)\nhttps://bea.bnotk.de/" }, + { "3BDF96FF81B1FE451F870031B96409377213738401E000000000", "National Identity Card of Slovakia (eID) (eID)\nhttps://en.wikipedia.org/wiki/Slovak_identity_card" }, + { "3BDF96FF910131FE4680319052410264050200AC73D622C017", "Acos-ID (AUSTRIACARD's Operating System) (Other)\nhttps://www.austriacard.com/digital-security/solutions/card-solutions/acos-id/" }, + { "3BDF97008131FE588031B05202056405A100AC73D622C021", "Austrian healthcare insurance identification card (HealthCare)\nhttps://www.chipkarte.at" }, + { "3BDF970081B1FE451F838073CC91CBF9A0000003080000100078", "NASA PIV Card (Other)" }, + { "3BE000008131104505", "Emoney indonesia (Bank)" }, + { "3BE000008131204030", "SmarTEC" }, + { "3BE000FF8131FE4514", "'JUKICARD', digitally sign tax documents in Japan" }, + { "3BE20000402049..", "Schlumberger Cryptoflex 4k" }, + { "3BE2000040204905", "Schlumberger Cryptoflex DES" }, + { "3BE2000040204906", "Schlumberger Cryptoflex" }, + { "3BE2000040204907", "Schlumberger Cryptoflex Key Generation" }, + { "3BE200FFC11031FE55C8029C", "Aladdin eToken PRO (USB token)\nSiemens CardOS M4.0" }, + { "3BE300FF9181712644000113202D", "Metrebus Card\n(used in Rome to store personal information and Atac subscription.\nAtac is the public transport company of the city of Rome.)\nhttp://www.atac.roma.it/smart/smart.asp?A=2&S=22&PR=4&LNG=2" }, + { "3BE500008121459C100100800D", "BIN 470132 -- BANK OF AMERICA VISA DEBIT -- GEMALTO MGY 0 U1090788B - 12/14 F8 00 89 (Bank)" }, + { "3BE500008131FE45D00037008089", "ATM card for Standard Chartered, Taiwan" }, + { "3BE500FF8131FE458073C601082D", "MUFG (.jp) (Bank)" }, + { "3BE6000080318066B1A30401110B83", "Java Jcop J2A040 (JavaCard)" }, + { "3BE6000080318066B1A30401110B83009000", "VISA Credit Card (Bank)" }, + { "3BE60000812145324B010101017A", "Axalto Cyberflex Palmera V5" }, + { "3BE600FF8131FE4544492030324D70", "Alior Sync (Poland) - MasterCard Debit Card with PayPass (Bank)\nMasterCard Contactless Debit Card issued by Raiffeisen Bank in Czech Republic\nDebit MasterCard with paypass issued by Bank Zachodni WBK (Poland)\nDebit MasterCard with paypass issued by AliorSync" }, + { "3BE600FF8131FE454449203032566B", "VISA credit card (DKB)" }, + { "3BE600FF8131FE454A434F50303307", "IBM JCOP 30/16" }, + { "3BE600FF8131FE454A434F50313005", "IBM JCOP 10/16\nRental card for Blockbuster, Taiwan" }, + { "3BE600FF8131FE454A434F50323006", "IBM JCOP 20/16\nIBM JCOP20 with MIFARE\nor Datakey Smart Card Model 330J\nhttp://www.datakey.com/products/smart_cards/products_sc_330j.shtml" }, + { "3BE600FF8131FE454A434F50323107", "IBM JCOP ID21" }, + { "3BE600FF8131FE454A434F50333007", "Mifare ProX T=1" }, + { "3BE600FF8131FE454A434F50333106", "IBM JCOP 30/31bio (contact interface)" }, + { "3BE600FF8131FE4580640C7000008A", "AEON Credit Card (Bank)\nhttps://www.aeon.co.jp/card/lineup/" }, + { "3BE700008131FE4200639531059000B9", "Chunghwa Post Co., Ltd. Visa Debit Card (Bank)\nhttp://www.post.gov.tw/post/internet/U_english/index.jsp?ID=24030107" }, + { "3BE70000918131FE410110300100908049", "'FirmenTicket' from the 'Rheinbahn' for the 'VRR'\nits a ticket corporates can buy for their employees. so its called\n'FirmenTicket'. 'Rheinbahn' is the local service operator for the\nmass traffic in and around duesseldorf/germany. 'VRR' is traffic\nnetwork spanning over at least a big part of north rhine westphalia\n(Verkehrsverbund Rhein-Ruhr)\nhttp://www.vrr.de/de/tickets_und_tarife/vielfahrer/firmenticket/index.php" }, + { "3BE700FF8131FE454430382E30203657", "EMV (MasterCard) card, issued by Raiffeisen Bank in Russia\n'Deutsche Kreditbank AG' Visa Card produced by AustriaCard GNC\nAll cards (MasterCard, Maestro, VISA Electron) issued by Raiffeisen Bank in Romania\nEMV (MasterCard) Card, issued by Raiffeisen Bank in Czech Republic" }, + { "3BE700FF8131FE454430382E31203656", "WinWin Austria Player-ID-Card (Other)\nhttps://www.winwin.at/" }, + { "3BE700FF8131FE454430382E32203655", "Mastercard (Bank)" }, + { "3BE700FF8131FE454D43412038203652", "Mastercard credit card issued by 'PayLife Bank GmbH'.\nBank number is '5266' - Bawag PSK." }, + { "3BE700FF8131FE458031C073C62148BE", "Japanese ETC (Electronic Toll Collection System) card (Transport) and Credit card (Issuer: Toyota) (Transport)" }, + { "3BE700FF81B1FE451F018031C073C6214820", "Japanese ETC (Electronic Toll Collection System) card (Transport)" }, + { "3BE8000040FA0073C84011009000", "KEBTechnology KONA USB SmartCard (Other)" }, + { "3BE800008031FE450073C8401300907DE7", "National Health System of Spain - Consejeria de Sanidad y Servicios Sociales - JUNTA DE EXTREMADURA (HealthCare)\nhttps://www.juntaex.es/es/lajunta/consejo-de-gobierno/vicepresidencia-segunda-y-consejeria-de-sanidad-y-servicios-sociales/servicio-extremeno-de-salud" }, + { "3BE80000813120450073C8400000900056", "Visa credit card for Standard Chartered, Taiwan" }, + { "3BE800008131FE00506572736F53696DAA", "Simulated virtual smartcard, from project PersoSim (eID)\nhttps://persosim.de/?q=node/33" }, + { "3BE800008131FE450073C8400000900088", "VISA Card (Skandinaviska Enskilda Banken) with Swedish BankID\nVISA card (Chinatrust Bank (Taiwan), dual-interface card with a Taipei Metro e-purse function)" }, + { "3BE800008131FE454A434F50763234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, + { "3BE800008131FE454A434F5076323431B4", "VISA Debit card for NAB, Australia" }, + { "3BE800FF8131FE43AA00000000000000B0", "Secure Signing Token (eID)" }, + { "3BE800FF8131FE45434C6169726520361A", "DKB Visa card with PayWave" }, + { "3BE90000812145454D565F41545220066C", "VISA card, issued by HVB Bank Czech Republic or austrian BankAustria\nhttp://www.hvb.cz" }, + { "3BE900008121454D435F5F494E46200665", "MasterCard Credit card issued by SpareBank1 in Norway\nhttp://www.sparebank1.no" }, + { "3BE900008121455649535F494E46200678", "VISA card, issued by the Austrian 'Raiffeisen' bank\nhttp://www.raiffeisen.at/\nVisa Card - Maximum - Oyak Bank / Turkey\nVISA, issued by Austrian bank 'Erste Bank'\nVISA card, issued by the Latvian bank 'Latvijas Krajbanka'" }, + { "3BE900008131C345996374691999125610EC", "Compunicate Technologies Inc. (Pay TV)\nhttp://www.cti.com.cn/en/product.aspx?m=20140731165252850216" }, + { "3BE900008131FE00FF506572736F53696D54", "German PersoSim (eID)\nhttps://persosim.secunet.com/en/" }, + { "3BE900008131FE4541434F534A76323034F6", "ACS ACOSJ-DI 95K (in T=1 mode) (JavaCard)" }, + { "3BE900008131FE4543443169A90000000014", "Mastercard credit card, UBS Switzerland (Bank)" }, + { "3BE900008131FE45434432690900000000B7", "Swiss UBS MasterCard Creditcard" }, + { "3BE900008131FE45454D5620303320200699", "Visa credit card\nMasterCard credit card" }, + { "3BE900008131FE45454D5630325F34530680", "Maestro Card issued by 'First Investment Bank' in Bulgaria\nhttp://fibank.bg/\nVisa Electron card: TATRA BANKA, a.s." }, + { "3BE900008131FE454A434F503130563232A3", "ORGA Open Platform DES 16k V2.0 / JCOP10" }, + { "3BE900008131FE454A434F503234325232A0", "NXP J3D081 (JavaCard)" }, + { "3BE900008131FE454A434F503331563232A0", "JCOP 31 / 72k" }, + { "3BE900008131FE454A434F503431563232A7", "IBM JCOP v2.2 41" }, + { "3BE900008131FE454D434120303320200688", "PayLife Gold MasterCard -- an unbranded version of the master card" }, + { "3BE900FF8131FE45434C6169726532203629", "UB(SK) Visa Vusiness card with PayWave (Bank)\nhttps://www.vub.sk/en/companies-entrepreneurs/cards/debit-cards/visa-business/" }, + { "3BE900FF8131FE45434C6169726533203628", "BZ WBK Mastercard (Bank)" }, + { "3BE900FFC11031FE5500640500C80231800047", "Identity card of Italian Republic" }, + { "3BE900FFC11031FE55C80120504E34303132AD", "Siemens CardOS/M 3.0 (SLE66CX160S)" }, + { "3BEA0000813120438065A2........72D6....", "IDClassic 3XX Cards (with MPCOS Applet)" }, + { "3BEA0000813120438065A20101013D72D643A5", "GemXpresso Pro R3 32PK (MPCOS, T=1) (warn reset)" }, + { "3BEA00008131FE450031C173C840000090007A", "Nigerian eID Card (cold reset)\nChip is NXP JCOP 2.4.1R3\nDual BCR Signum Mastercard (bank) + Digital Signature Costa Rica (eID)\nhttps://bancobcr.com/wps/portal/bcr/bancobcr/personas/tarjetas/signum_firma_digital/" }, + { "3BEA00008131FE45436F6D624F5320494900FE", "UBS VISA Gold Card\nMasterCard from lhv.ee\nNordea Bank Finland PLC Estonian Branch (ABnote)" }, + { "3BEA00008131FE454A434F5033315632333290", "NAB VISA Debit card" }, + { "3BEA00008131FE454A434F5034315632323195", "HID Crescendo C700\nhttps://www.hidglobal.com/products/cards-and-credentials/crescendo/c700" }, + { "3BEA00FF813120750064051401023100900027", "GCOS-MDK" }, + { "3BEA00FF8131FE455455422D434B010301007B", "Technische Universitat Berlin - Campus Karte\nMaybe Sm@rtCafe Expert 2.0 (Giesecke & Devrient)\nor GemXpresso 211 PK (Gemplus)\nIncludes a Mifare-Chip (1 KB - Memory-Chip)" }, + { "3BEB0000813120454A434F503331333647445478", "card for testing (eID)" }, + { "3BEB0000813142454E4C436853434B303430312B", "Dutch University accesscard & Electronic purse & telphone card" }, + { "3BEB0000813142454E4C4368697070657230310A", "Dutch Post (Chipper)" }, + { "3BEB00008131FE450031C0643F680102079000B6", "Chris firstbank (Bank)" }, + { "3BEB00008131FE450031C0643F6801020F9000BE", "VISA Debit card for Taishin International Bank, Taiwan (Bank)" }, + { "3BEB00008131FE450031C0643F680108079000BC", "Debit Mastercard of Mega ICBC, Taiwan (Bank)\nhttps://www.megabank.com.tw/en-us/english/credit-card" }, + { "3BEB00008131FE450031C064A9EC010082900023", "Junta de Extremadura (Spain) public healthcare card (HealthCare)\nhttps://saludextremadura.ses.es/web/preguntas-frecuentes" }, + { "3BEB00008131FE45436F6D624F5320312E3015C5", "Reka Card - Swiss Holiday Member Card (Loyalty)\nhttps://reka.ch/en/rekamoney/privatepersons/reka-card/Seiten/reka-card.aspx?lang=en" }, + { "3BEC00004032424C554520445241474F4E20430001", "Pay TV" }, + { "3BEC00004032544954414E49554D00110106", "Titanium high security access smartcard (the back says something about 'DoorCard') (Other)" }, + { "3BEC00004032544954414E49554D00130202", "Titanium 2 Card Pirat Card for Seca 2 / Viaccess 2004 (Pay TV)" }, + { "3BEC00FF8131FE45A0000000563333304A330600A1", "Datakey model 330J card, www.datakey.com\nhttp://www.hmk.de/downloads/datakey/Model_330J_Smart_Card.pdf\nModel 330J JavaCard v2.1.1\nGlobal Platform v2.0.1 specifications.\nJCCOS operating system applet (Java-based Cryptographic Card Operating System)" }, + { "3BED000080318065B0840100C883009000", "Optelio Cards (D38-D72 R6) T=1 Normal Speed" }, + { "3BED00008131204380318065B083......830090....", "IDClassic 3XX / Classic TPC (IXS, IS, IS V2, IS CC, IM, IM CC, IM CC V3) / MultiApp ID Cards" }, + { "3BED00008131204380318065B08302047E8300900032", "Latvian Digital Signature Card (warm)\nhttp://www.eme.lv/" }, + { "3BED00008131804280318065B0872701BC830890007D", "EMV (V PAY) Issued by UniCredit Bulbank Bulgaria\nGXP7 T=1" }, + { "3BED00008131804280318065B0894001F28300900052", "VISA Debit card for Taishin International Bank, Taiwan" }, + { "3BED00008131FE450031C071C6644D3533560F900046", "Kostadin (Bank)" }, + { "3BED00008131FE450031C071C6644D35354D0F9000", "ING Credit Card (Bank)\nhttps://www.ing.nl/particulier/betalen/creditcards/index.html" }, + { "3BED00FF813120754D424320534D502056312E3130BD", "Used to Control a Laser Device" }, + { "3BEE00008131804280318066B0840C016E01830090008E", "MultiApp Cards (Easy 72K Type B and Combi 72K Type B)\nE.SUN Commercial bank debit master card (Bank)\nTaiwan EasyCard (Transport)\nhttps://www.easycard.com.tw/english/index.asp" }, + { "3BEE00008131804380318066B1A1110100F683009000", "Optelio/Desineo Cards (D72 FXR1)" }, + { "3BEE00008131804380318066B1A11101A0F683009000", "Optelio D72 FXR1 (MD) T=1" }, + { "3BEE00008131804380318066B1A30401110B83009000D4", "Japan Post Bank cash card (Bank)\nhttps://www.jp-bank.japanpost.jp/kojin/chokin/sogou/kj_cho_sg_iccard.html" }, + { "3BEE00008131FE45003180718665016702A00A8390001B", "IBM JCOP 'Java Card 2.1.1' et 'Open Platform 2.0.1'" }, + { "3BEE00008131FE4580318066409093060F1783019000FD", "Health insurance (HealthCare)" }, + { "3BEE00008131FE4580318066409093060F17830F9000F3", "IC card for the National Health Insurance, Taiwan" }, + { "3BEF..0040148025434552455357....0101039000", "Electronic Identification Card from the FNMT, the Spanish Official\nCertification Authority (Fabrica Nacional de Moneda y Timbre)\nFNMT-Ceres Siemens Infineon SLE 19" }, + { "3BEF..0040148025434552455357....0102039000", "FNMT-Ceres Siemens Infineon SLE 20\nFabrica Nacional de Moneda y Timbre" }, + { "3BEF000081312049005C5043541027F8D27600003833004D", "Infineon Technologies PC/SC Compliance Test Card V1.0" }, + { "3BEF000081314069005C50435335C53AD27600003833000F", "Siemens Nixdorf Sicrypt" }, + { "3BEF00008131FC4580318065110113000153414345810421", "Slovenska sporitelna (SLSP) Bank card, Maestro Card with chip" }, + { "3BEF00008131FC4580318065111123100253414345810412", "VISA card issued by UBS, Switzerland" }, + { "3BEF00008131FE450031C173C8211064474D313600900067", "ING Gold Credit Card (Italy) (Bank)\nhttps://www.ing.it/" }, + { "3BEF00008131FE45417441434F53322E345345204C6337C9", "Maestro Polish Alior debit card (Bank)" }, + { "3BEF00008131FE4543443269A98100002020202020200090", "UBS Switzerland Mastercard credit card (Bank)" }, + { "3BEF00008131FE4543443369098000002020202020200030", "Nordea Credit Gold MasterCard (Bank)\nhttp://www.nordea.ee/Private+customers/Daily+banking/Cards/Nordea+Gold/67062.html?lnkid=frontpage_teaser_GOLD_30-07-2014" }, + { "3BEF00008131FE45434D425F436F6D4444413030353500F7", "Master Card (emitted by bank Nordea - Lithuania)" }, + { "3BEF00008131FE45434D425F436F6D5344413030343000E4", "VISA (Danske Bank Eesti / www.sampopank.ee)" }, + { "3BEF00008131FE45434D425F436F6D5344413030353100E4", "Visa (Sampo Estonia, 2010)" }, + { "3BEF00008131FE45436F6D624F53205620202020202000AD", "Corporate Credit Card - SIEMENS MasterCard issued by Degussa Bank (Bank)" }, + { "3BEF00008131FE45436F6D624F53205649202020202000C4", "VfB Stuttgart Fankarte (pay card for the football stadium of the german club VfB Stuttgart)" }, + { "3BEF00008131FE45444C415A46545632444944313030FF06", "Lufthansa ID Card (eID)" }, + { "3BEF00008131FE45455041000000008891027200000000D9", "Raiffeisenbank Austria (Raffeisen Club) Maestro debit card (Bank)" }, + { "3BEF00008131FE45455041000000010130622200000000C0", "Raiffeisenbank Austria (Raffeisen Club) Maestro debit card (Bank)" }, + { "3BEF00008131FE4546494F4D4B5F3030312030313041009C", "MasterCard/PayPass Card issued by Czech FIO Banka a.s. (contact chip)\nnote the ASCII string ' FIOMK_001 010A' embedded in ATR" }, + { "3BEF00008131FE65005C504353D19147D276000038330070", "Siemens/Infineon Sicrypt S26381-F252-V1 GS:03" }, + { "3BEF00008131FE67005C49434DDBC97ED27600003833001E", "Infineon SICRYPT CardModule Card" }, + { "3BEF00FF8131..456563", "Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus" }, + { "3BEF00FF81312045426173696343617264205A43322E33BD", "ZeitControl BasicCard Enhanced 2.3" }, + { "3BEF00FF81312045426173696343617264205A43332E33BC", "Electronic Purse (Elton Senegal)" }, + { "3BEF00FF81312075426173696343617264205A43332E338C", "ZeitControl BasicCard Enhanced 3.3" }, + { "3BEF00FF81312075426173696343617264205A43332E3788", "ZeitControl BasicCard Enhanced 3.7" }, + { "3BEF00FF81312075426173696343617264205A43332E3986", "ZeitControl BasicCard Enhanced 3.9" }, + { "3BEF00FF81314245.*38", "UNI-Card" }, + { "3BEF00FF8131424565630302030280002240489596002028", "Scard Sparkasse Detmold, Deutschland BLZ 47650130" }, + { "3BEF00FF81315045426173696343617264205A43312E31CC", "ZeitControl BasicCard Compact 1.1" }, + { "3BEF00FF813150456563............................", "GeldKarte v2 (Germany)" }, + { "3BEF00FF8131504565630000000000000000000000000000", "Geldkarte v2" }, + { "3BEF00FF813150456563080B40028000081520033604007E", "old banking card (electronic-card / Maestro / Geldkarte) of the\nStadt-Sparkasse Duesseldorf (like the above, but old - around 2002)." }, + { "3BEF00FF8131504565630D24200280000508335610010243", "German ec card" }, + { "3BEF00FF813152454D46432049424D2034304839363031FB", "IBM MFC 3.5 file system smart card\n(Card from the book 'Smart Card Application Development Using Java')" }, + { "3BEF00FF8131604565630402110000000000A532A50111B6", "GledKarte\nSiemens M3-Module with a Motorola SC-28.\nG&D (Giesecke&Devrient) Geldkarten-OS mit der Version 11" }, + { "3BEF00FF813160456563060314025000065108115E014190", "Geldkarte from Deutsche Bank, Thomson-Chip" }, + { "3BEF00FF8131664549424D204D46433430303230383331A1", "IBM MFC 4.1 file system smart card\nCard from the book 'Smart Card Application Development Using Java'\nauthors: Uwe Hansmann, Martin. S. Nicklous, Thomas Schack, Achim Schneider, Frank Seliger" }, + { "3BEF00FF813166456563202049424D20332E3120202020", "IBM eCash" }, + { "3BEF00FF813166456563202049424D20332E3120202020CF", "IBM eCash" }, + { "3BEF00FF8131864549424D204D4643343030303038333143", "ComCard MFC 4.1" }, + { "3BEF00FF8131FE4065631D038602500023151131280110FD", "DKB Banking Card (EC-Karte 2023) (Bank)\nhttps://www.dkb.de/" }, + { "3BEF00FF8131FE4141434F532046696F6E6131204C633666", "EUROBANK GR (Bank)\nNBG BANK (Bank)" }, + { "3BEF00FF8131FE4541434F53204449616E6131204C63364E", "comdirect VISA card (Bank)\nhttps://www.comdirect.de/konto/karten.html#Visa-Karte" }, + { "3BEF00FF8131FE4541434F53204449616E6132204C63364D", "Alior Bank SA (Bank)\nhttps://www.aliorbank.pl/" }, + { "3BEF00FF8131FE45656306087102500023B8105BA0471116", "DKB Banking Card (EC-Karte 2020) (Bank)" }, + { "3BEF00FF8131FE4565630D12810156001F00006686080122", "Commerzbank signature card SECCOS (6 or 7) providing RAH security profile (Bank)\nhttps://www.chipkartenleser-shop.de/commerzbank/electronic-banking-chipkarten/commerzbank-signaturkarte-2710050006" }, + { "3BEF00FF8131FE4565631104010280000F274000030100E1", "Postbank Geldkarte" }, + { "3BEF00FF8131FE4565631104010280000F462004230100C4", "Postbank ec/Maestro (Germany)" }, + { "3BEF00FF8131FE4565631108430250001021200324053016", "Bank (Bank)" }, + { "3BEF00FF8131FE456563111261025000100A072722071022", "DKB Online Banking Card (Bank)\nhttps://www.dkb.de" }, + { "3BEF00FF8131FE456563111261025000100A07811C0710BA", "German Sparkasse HBCI card (Bank)\nhttps://www.sparkasse.de/service/finanzlexikon/hbci-verfahren.html" }, + { "3BEF00FF8131FE4565631113710528001F00010228372060", "MasterCard of SpardaBank Hamburg in Germany (Bank)\nhttps://www.sparda-bank-hamburg.de" }, + { "3BEF00FF8131FE4565631113710528001F0006124137201E", "BankCard Sparda-Bank Baden-Wurttemberg eG (Bank)" }, + { "3BEF00FF8131FE4565631113710528001F0007241A372072", "Commerzbank Maestro Card (Bank)\nhttp://www.maestrokarten.de/girokontovergleich/commerzbank_girokonto.html" }, + { "3BEF00FF8131FE4565631113710528001F00083B3C372044", "Comdirect Debit Card Germany - AustriaCard 55616 (Bank)\nhttps://www.comdirect.de/" }, + { "3BEF00FF8131FE4565631113710528001F000A1B18372042", "German debit card (girocard, V-Pay) (Bank)\nhttps://www.girocard.eu/english/" }, + { "3BEF00FF8131FE4565631113710528001F000B161C37204A", "Commerzbank / girocard /maestro (Bank)" }, + { "3BEF00FF8131FE4565631113710528001F000D163A37206A", "BankCard Sparda-Bank West eG (Bank)" }, + { "3BEF00FF8131FE4565631113710528001F00120F24372072", "Debit card (Germany): Postbank - GeldKarte (EUR), girocard, V-PAY (Bank)" }, + { "3BEF00FF8131FE4565631113710528001F00153D47372024", "Girocard issued by Comdirect bank AG (Bank)" }, + { "3BEF00FF8131FE4565631113710528001F00193516372071", "Commerzbank Germany (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F00024D36371005", "comdirect girocard (Bank)\nhttps://www.comdirect.de/konto/karten.html#girocard" }, + { "3BEF00FF8131FE4565631114710528001F0003443137100A", "DKB Banking Card (Bank) (Bank)\nhttps://www.dkb.de" }, + { "3BEF00FF8131FE4565631114710528001F00034A36371003", "German Sparkasse, Girocard, GeldCard, girogo, EUROSERV (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F0005210F371057", "girocard maestro Bank (Bank)\nhttps://www.girocard.eu/" }, + { "3BEF00FF8131FE4565631114710528001F0006302F371065", "MasterCard German Sparkasse (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F0006543137101F", "Sparkasse (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F00071D46371020", "DKB (Deutsche Kreditbank) debit card (V-PAY) (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F000A1E1337107B", "girocard (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F000B361B37105A", "Kreissparkasse bank Girocard (Germany) (Bank)\nhttps://www.kskmse.de/de/home/privatkunden/girokonto/girokonto-online.html?n=true&stref=productbox" }, + { "3BEF00FF8131FE4565631114710528001F000C1A1737107D", "Bank card issued by Sparkasse (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F000C2024371074", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ... (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F000C3D35371078", "Sparkasse KolnBonn Bank (Bank)\nhttps://www.sparkasse-koelnbonn.de" }, + { "3BEF00FF8131FE4565631114710528001F0010142437105C", "Deutsche Kreditbank AG (Bank)\nhttps://www.dkb.de/" }, + { "3BEF00FF8131FE4565631114710528001F00112D4F37100F", "Bank card (Bank)\nhttps://www.commerzbank.de/" }, + { "3BEF00FF8131FE4565631114710528001F00113B32371064", "DKB GiroCard (Bank)\nhttps://dkb.de" }, + { "3BEF00FF8131FE4565631114710528001F00172846371005", "Sparkasse Zwickau Maestro card (Bank)\nhttps://www.spk-zwickau.de/de/home/privatkunden/girokonto/sparkassencard.html" }, + { "3BEF00FF8131FE4565631114710528001F00180F48371023", "SparkassenCard (Bank)\nhttps://sparkasse.de" }, + { "3BEF00FF8131FE4565631114710528001F0018242A37106A", "Sparkasse girocard (Bank)" }, + { "3BEF00FF8131FE4565631114710528001F00182D1C371055", "Debit card (Germany): ec-cash, GeldKarte(EUR) (Bank)" }, + { "3BEF00FF8131FE456563111562025000100A002B2107201E", "EC Card Sparkasse Mittelfranken Sued (Bank)\nhttps://www.spkmfrs.de" }, + { "3BEF00FF8131FE456563111562025000100A002EFC0720C6", "maestro BankCard (Bank)" }, + { "3BEF00FF8131FE456563111562025000100A09AC030720B2", "Girocard Sparkasse Darmstadt (Bank)" }, + { "3BEF00FF8131FE4565631901620280000F003500420620BB", "Credit card (Germany, Postbank AG): VISA" }, + { "3BEF00FF8131FE4565631D0284025000230509A0D9010182", "Debit card (Bank)" }, + { "3BEF00FF8131FE4565631D028402500023180920E7010121", "Deutsche Kreditbank AG (DKB AG) bank card (Bank)\nhttps://www.dkb.de/info/tan-verfahren/chipTAN/" }, + { "3BEF00FF8131FE458031C06B49424D204A65745A204D3239", "UBS Internet Card (IBM JetZ M2)" }, + { "3BEF00FF8131FE458031E06B042105026B55555555555568", "MasterCard credit card for Mega International Commercial Bank, Taiwan (Bank)\nhttps://www.megabank.com.tw/creditcard/index.asp" }, + { "3BEF00FF8131FF6549424D204D4643393232393238393017", "IBM MFC 4.22 (University of Cambridge smartchip card)" }, + { "3BF01100FF01", "Not a physical smart card. But a JavaCard simulator ATR with default configuration. (JavaCard)" }, + { "3BF01200FF9181B17C451F019B", "Japanese Chijou Digital B-CAS Card (pay TV) (Pay TV)" }, + { "3BF01200FF9181B17C451F0399", "Japanese Chijou Digital B-CAS Card (pay TV)" }, + { "3BF01200FF9181B1EF451F030A", "Japanese Digital CATV C-CAS card" }, + { "3BF01300001000", "MasterCard ETEC InterOp 27. This is an dual-app Maestro/MasterCard Credit EMV test card" }, + { "3BF01300008131FE45E8", "Healthcare card Romania (HealthCare)\nhttp://www.cnas.ro/casmb/national-page/cardul-national-de-asigurari-de-sanatate-2.html" }, + { "3BF01300FF9181B1FE461F0319", "Japan BS/CS 4K Satellite Broadcasting A-CAS Card (Pay TV)\nhttp://www.acas.or.jp/index.html" }, + { "3BF2180000C10A31FE55C80675", "HID iCLASS P16K C4H\nproximity card used for both door locks and keystore" }, + { "3BF2180002C10A31FE55C80776", "Siemens CardOS V4.3" }, + { "3BF2180002C10A31FE58C80874", "Siemens CardOS V4.3B\nD-Trust multicard 2.1 (may only be the testcard for it)" }, + { "3BF2180002C10A31FE58C80975", "Siemens CardOS V4.2B" }, + { "3BF2180002C10A31FE58C80B77", "CardOS V4.2C (SLE66CX360PE dual interface)" }, + { "3BF21800FFC10A31FE55C8068A", "Siemens CardOS M 4.2 (SLE66CX642P)" }, + { "3BF2960000813180438031A6", "Card of Justice (Other)" }, + { "3BF29800FFC11031FE55C80315", "Siemens CardOS M 4.01 (SLE66CX320P)" }, + { "3BF29800FFC11031FE55C80412", "CardOS M4.01a (SLE66CX322P)" }, + { "3BF39600FFC00A31FE4D8031E083", "MARX Cryptoken (supported by RaakSign)" }, + { "3BF41300008131FE4552465A4FED", "Serbian Health Care electronic card (HealthCare)\nhttp://www.rfzo.rs/index.php/osiguranalica/ekartica" }, + { "3BF4180002C10A31FE5856346376C5", "Eutron CryptoIdentity (reader + card token)" }, + { "3BF41800FF8131805500318000C7", "Identity card of Italian Republic" }, + { "3BF49800FFC11031FE554D346376B4", "Eutron Digipass 860 (reader + card token)" }, + { "3BF51300008131FE4573746431308F", "card for NF-e in Brazil (PKI)\nhttps://certificadodigital.imprensaoficial.com.br/certificados-digitais/e-cnpj/a3/e-cnpj-a3-cartao" }, + { "3BF51800008131FE454D794549449A", "Aventra ActiveSecurity MyEID\nhttp://www.aventra.fi/pdf/ActiveSecurity%20MyEID%20Tokens%20white%20paper%20(2p)%20EN.pdf" }, + { "3BF518000210804F73454944", "Atmega 128 microcontroller based open source EID smartcard with RSA and ECC. (eID)\nhttps://oseid.sourceforge.io/" }, + { "3BF57100FFFE2400011E0F3339320103", "Mydo IC Card from Japan, based on NTTDATA CARD (Loyalty)\nhttps://www.idemitsu.com/company/history/13.html" }, + { "3BF59100FF918171FE40000A086E773A65", "iCLASS Card (Other)" }, + { "3BF59100FF918171FE4000410000000005", "Contactless Mifare Ultralight" }, + { "3BF59100FF918171FE400041080000000D", "Contactless Mifare" }, + { "3BF59100FF918171FE400041180000001D", "Contactless Mifare 4k" }, + { "3BF59100FF918171FE400041880000008D", "Contactless Mifare 1k or 4k" }, + { "3BF59100FF918171FE4000420001008186", "American Express Blue RFID" }, + { "3BF59100FF918171FE400042000100D1D6", "Japanese Public Key Infrastructure (PKI)\nhttps://www.jpki.go.jp/\nMy Number Card (The Social Security and Tax Number System in JAPAN) (eID)\nhttps://www.cao.go.jp/bangouseido/" }, + { "3BF59100FF918171FE400042000177D1A1", "German Passport (ePass) (issued May 2008)" }, + { "3BF59100FF918171FE4000420001B3A115", "Individual Number Card (eID)\nhttps://www.kojinbango-card.go.jp/" }, + { "3BF59600008.31FE454D794549441.", "MyEID card (Infineon chip) (PKI)\nhttps://services.aventra.fi/English/products_MyEID_E.php" }, + { "3BF61300FF1080434849503232", "PostFinance debit (Bank)\nhttps://www.postfinance.ch" }, + { "3BF61300FF910131FE4080640F7000009E", "JA Bank Cash Card (Bank)\nhttps://www.jabank.org/" }, + { "3BF61800FF8131FE454A32413038301B", "NXP J2A080 - 80K (blank)\nhttp://www.classic.nxp.com/acrobat_download2/literature/9397/75016728.pdf" }, + { "3BF61800FF8131FE454A434F5032300E", "IBM JCOP20" }, + { "3BF61800FF8131FE454A434F5033300F", "Philips P8RF5016 running IBM JCOP 30 (contact interface)" }, + { "3BF61800FF8131FE454A434F5033310E", "IBM JCOP BIO31\nIBM JCOP BIO31 Java card" }, + { "3BF71100008131FE6543616E6F6B657999", "Canokey (Other)\nhttp://canokeys.org/" }, + { "3BF711000081718042000063950A019000B9", "ATM Card for Chunghwa Post Inc., Taiwan" }, + { "3BF71100008171FE420000639501019000CC", "ATM Card for Mega International Commercial Bank, Taiwan\nATM card for HSBC Direct, Taiwan\nATM card for TaChong Bank, Taiwan\nATM card for Chunghwa Post, Taiwan\nVISA card for Taipei Fubon Bank, Taiwan\nATM card for Cathay United Bank, Taiwan (Bank)\nhttps://www.cathaybk.com.tw/cathaybk/english/eindex.htm" }, + { "3BF71100008171FE420000639531029000FF", "VISA card for Taipei Fubon Bank, Taiwan" }, + { "3BF71100008171FE420000639531049000F9", "E.SUN Bank, Taiwan (Bank)\nhttps://www.esunbank.com.tw" }, + { "3BF71100008171FE420000639531059000F8", "ATM card for Chunghwa Post, Taiwan\nATM card for E.Sun Commercial Bank, Taiwan\nATM card for Taishin International Bank, Taiwan\nATM card for Bank of Taiwan, Taiwan\nATM card for Land Bank of Taiwan, Taiwan" }, + { "3BF711000140965430040E6CB6D6", "Atmel (FunCard) Smart Card with AT90S8515 and 24LC64 chip on it (Other)\nhttp://docs-europe.electrocomponents.com/webdocs/1173/0900766b811730a2.pdf" }, + { "3BF711000140965430040E6CB6D69000", "PIC16F876-04/SP (PICCard2) or\nPIC16F84A-04/P + 24LC16B (PICCard1) or\nCanal + Canal Digital Spain year 2000/2001 or\nPIC Silver Card 2 (PIC16F876/7 + 24C64)" }, + { "3BF711000140965760140E6CB6D6", "old SECA of D+ Italian sat pay tv" }, + { "3BF711000140965842140E6CB6D6", "UK on digital (terrestrial digital TV card)" }, + { "3BF711000140966060060E6CB6D6", "CANAL+ CANALSATELLITE SmartCard (possibly from 2005) (Pay TV)" }, + { "3BF711000140967070070E6CB6D6", "Cyfra+ SECA Card\nhttp://cyfraplus.pl/" }, + { "3BF711000140967070070E6CB6D69000", "M-II (a.k.a. M-2, a.k.a. Platinum Card), AT90SC6464C based\nKnotCard II\nTitaniumElite" }, + { "3BF7110001409670700A0E6CB6D6", "TopUp TV NagraVision viewing card" }, + { "3BF7110001409670700A0E6CB6D69000", "Canal Digitaal (Pay TV)\nhttp://webshop.canaldigitaal.nl/nl/smartcards-2" }, + { "3BF711000140967070170E6CB6D6", "Canal Satellite card (VERSION 7.1 SYSTEM / SECA2)" }, + { "3BF711000140967070370E6CB6D6", "Carte pour decodeur cable numerique (fourni par www.voo.be et\nwww.ledecodeur.be)" }, + { "3BF711000140967070670E6CB6D6", "UK TopUp TV" }, + { "3BF711000140967071090E6CB6D6", "Carte pour decodeur tele de Neuf Telecom TV" }, + { "3BF71300001000F14040919B9000", "Handelsbanken Inloggningskort (Bank)\nhttps://www.handelsbanken.se/sv/privat/digitala-tjanster/bankid-pa-kort" }, + { "3BF71300008131FE4500C08AC80C658185", "NXP JCop (JavaCard)" }, + { "3BF71300008131FE45464F4D534F4D53A9", "Health card Russian Federation" }, + { "3BF71300008131FE454A434F503234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, + { "3BF71300008131FE4580654A5030310415", "Nichizeiren Denshi-shomei (eID)\nhttps://www.nichizeiren.or.jp/taxaccount/auth/fifth/" }, + { "3BF71800008031FE45736674652D6E66C4", "SmartCafe Expert 3.2 72K" }, + { "3BF71800008031FE45FE42475265494424", "Bulgarian eID PKI card pilot on IFX SLE78 jTOP (PKI)" }, + { "3BF71800008131FE458055433776706B28", "Only labeled 'J35110', dual interface (JavaCard)" }, + { "3BF718000081718042000063840C019000A7", "Citibank Taiwan ATM Card (Bank)\nhttps://www.citibank.com.tw/" }, + { "3BF718000081718042000063950A019000B0", "7-Eleven icash card, Taiwan" }, + { "3BF79100FF918171FE40000A0260CF5104CB7F", "UK Metro Bank Mastercard Debit (Bank)\nhttps://www.metrobankonline.co.uk/" }, + { "3BF79100FF918171FE40004120001177818040", "Contactless Mifare DESFire" }, + { "3BF8110000400A01654E434F533037", "eNCOS + MCA, MchipAdvance bundled with eNCOS (Bank)" }, + { "3BF81100008171FE4200544E051900000002A1", "Taiwan EasyCard (Transport)\nhttps://www.easycard.com.tw/english/index.asp" }, + { "3BF811200340FF0303030312109000", "Bar Ilan KesefCard from Bezeq (Other)\nhttps://halemo.net/web/www.aurora.co.il/english/c_kesefcard.html" }, + { "3BF811200340FFFFFFFFFF12109000", "G&D (STARCOS SV 1.1)" }, + { "3BF813000010000073C84011009000", "Vivid Money Visa Debit (Bank)\nhttps://vivid.money" }, + { "3BF81300008131FE15597562696B657934D4", "Yubico Yubikey 4 OTP+CCID" }, + { "3BF81300008131FE4546494445534D4F318E", "Fidesmo Card with Dual Interface (JavaCard)\nhttp://shop.fidesmo.com/product/fidesmo-card-dual-interface" }, + { "3BF81300008131FE454A434F50763234....", "NXP JCOP v2.4.x (see hist bytes for more info)" }, + { "3BF81300008131FE454A434F5076323431B7", "Nigerian eID Card (blank card)\nChip is NXP JCOP 2.4.1R3\nBank of Hawaii (Bank)\nhttps://www.boh.com/\nLA BANQUE POSTALE (Bank)\nhttps://www.labanquepostale.fr/\nbnpparibas (Bank)\nhttp://www.bnpparibas.com/\nJcop040 (JavaCard)\nJcop21 (JavaCard)\nVisa debit classic (Bank)\nhttp://www.jpmorganchase.com/\nJPMorgan Chase (Bank)\nVisa (Bank)\nhttps://unitedfcu.com/\nJP Morgan chase bank (Bank)\nhttp://www.jpmorganchase.com/\nNavy Federal Credit Union (Bank)\nhttps://www.navyfederal.org" }, + { "3BF81300008131FE454A4F5076323431B7", "Nigerian eID card (eID)" }, + { "3BF81300008131FE455049564B45593730FF", "PIVKey CP70 (PKI)\nhttps://pivkey.com/" }, + { "3BF81300008131FE455241414B43327635CB", "Raak C2 Smart Card (PKI)\nhttp://www.raaktechnologies.com/software-downloads-documentation/" }, + { "3BF81300008131FE45534B555001000000FC", "Silesian Card of Public Services (Transport)\nhttps://portal.kartaskup.pl/" }, + { "3BF81300008131FE45536D617274417070F8", "national Lithuania ID card" }, + { "3BF81300008131FE45FF4A32413034300012", "MIDAS Card Diversification Key JavaCard (J2A040) (Bank)\nhttps://github.com/kategray/midas" }, + { "3BF81300FF108053430663010F900000", "Affinity CUIA Debit (JavaCard)\nhttps://www.affinitycuia.org" }, + { "3BF81300FF910131FE41534C4A01305023100D", "Walden Mutual Bank (Bank)\nhttps://www.waldenmutual.com/sustainable-bank-for-individuals#footnote-s0-4" }, + { "3BF81300FF910131FE41534C4A263123020168", "Chase Visa Debit (Bank)" }, + { "3BF81300FF910131FE41534C4A263123421F36", "Infineon SLJ26P (JavaCard)" }, + { "3BF81800008031FE450073C8401300900092", "G&D StarSign Token" }, + { "3BF81800008131FE450073C8400000900080", "NXP JCOP 31 V2.2 36K - S/C I/F" }, + { "3BF81800008131FE450073C8401300900093", "Giesecke & Devrient Sm@rtCafe Expert 3.0" }, + { "3BF81800008131FE454A434F50563234319C", "NXP JCOP2.4.1\nJ3A080 80KB T=1 GP2.1.1 JC2.2.2 SCP02" }, + { "3BF81800008131FE454A434F5076323431BC", "NXP J2A080 JavaCard" }, + { "3BF81800FF8131FE450073C840000090007F", "NXP JCOP 10\nNXP JCOP 31 (contact interface)" }, + { "3BF81800FF8131FE454A434F507632343143", "VIVOtech SAM\nNXP JCOP V241\nNXP J3A081 JavaCard (contact interface)" }, + { "3BF89600008031FE470073C840000090000D", "Italian driver tachograph smartcard (Transport)\nhttps://www.to.camcom.it/cartatachigrafica" }, + { "3BF89600008131FE4400739401C00F9000DD", "fourth-generation Hong Kong permanent identity card (Other)\nhttps://en.wikipedia.org/wiki/Hong_Kong_identity_card" }, + { "3BF89600008131FE454A434F507632343132", "NXP JCOP 2.4.1 (JavaCard)" }, + { "3BF91100008131FE45436F6D624F53205600AA", "VISA Card (Bank)" }, + { "3BF91300008131F0454E425502000320000097", "Bank" }, + { "3BF91300008131FE45454F4E436172645631F6", "NXP J2A080 (PKI)\nhttp://www.smartcardsource.com/contents/en-ca/d9_JCOP-NXP-cards.html" }, + { "3BF91300008131FE454A434F503234........", "NXP JCOP v2.4.x (see hist bytes for more info)" }, + { "3BF91300008131FE454A434F503431563234A2", "JCOP41 v2.4" }, + { "3BF91300008131FE454A434F5076323431B701", "J2A040 NXP (JavaCard)\nhttps://secure.smartcardsource.com/j2a040-java-smart-card.html" }, + { "3BF91300008131FE45535049564B45593730AD", "PIVKey T840 (Other)\nhttps://pivkey.com/" }, + { "3BF91300FF10808031E0554245524753", "Banrisul bank" }, + { "3BF91500FF910131FE43806448657261829000C7", "RC-S500 card (FeliCa SAM for reader?) (Other)" }, + { "3BF918000000534345372003002046", "G+D FIPS 201 SCE 7.0 (PKI)" }, + { "3BF91800008031FE4580574E454F574156457D", "Neowave Weneo" }, + { "3BF91800008131FE45393532383530313331DA", "JCOP31 / 72B1 V2.2 (4096 RSA key support)\nSmartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform" }, + { "3BF91800008131FE454A32443038315F5056B6", "NXP J2D081 Java Card 80KB JCOP 2.4.2 R2 GP 2.2.1 JC 3.0.1 (JavaCard)\nhttp://www.javacardsdk.com/Index.aspx?p0=AAT1P0000012&p1=1&p2=1&p3=1&p4=0&p5=1" }, + { "3BF91800008131FE454A434F503231563232A9", "NXP JCOP 21 V2.2 36K" }, + { "3BF91800008131FE454A434F503331563232A8", "JCOP31 / 72B1 V2.2\nSmartcard Dual Interface JCOP31 with 72KB EEPROM and V2.2 Java Card Open Platform" }, + { "3BF91800008131FE454A434F503431563232AF", "JCOP41 Cards (not supported, but recognized by Classic Client)\nNHS Care Identity Service (CIS) smartcard (HealthCare)\nhttps://www.e-lfh.org.uk/programmes/national-ra-and-smartcard-policy/" }, + { "3BF91800008131FE4550565F4A3244303831B6", "Taiwanese Health Professional Card(TW HPC) (HealthCare)\nhttps://hca.nat.gov.tw/Intro.aspx" }, + { "3BF91800FF8131FE4550565F4A334130343040", "Yubico Yubikey NEO OTP+U2F+CCID (PKI)\nhttps://www.yubico.com/products/yubikey-hardware/yubikey-neo/" }, + { "3BF91800FF8131FE4550565F4A33413038314D", "NXP JCOP J3A081 (JavaCard)\nhttps://secure.smartcardsource.com/j3a081m.html" }, + { "3BF99100FF9181714040000A80041E2E222C1490C2", "Mifare DESFIRE (Other)" }, + { "3BF99100FF91817140400041800431766A781690E0", "DESFIRE MIVARE EV2 (Other)" }, + { "3BF99100FF9181714040004180045B89BAB352803A", "mifare desfire 2k (eID)" }, + { "3BF99100FF918171FC40000A095161900058C290D2", "NFC PASS card (eID)" }, + { "3BF99400008131FE6546542056313030900083", "ePass 2000" }, + { "3BF99600008031FE454A546178436F7265560F", "Secure element for fiscal system in Serbia (PKI)" }, + { "3BF99600008031FE4553434537200000202027", "G&D SmartCafe Expert 7 (JavaCard)" }, + { "3BF99600008031FE4553434537200300204642", "ActivIdentity Activkey Sim (PKI)\nhttps://www.hidglobal.com/products/cards-and-credentials/activid/usb-tokens" }, + { "3BF99600008031FE4553434537200F0020464E", "Giesecke & Devrient (DoD Alternate Token) G+D Sm@rtCafe Expert v7.0 144K DI #3 (PKI)" }, + { "3BF99600008031FE4553434537202000202007", "Serbian Identity Card (eID) (eID)" }, + { "3BF99600008031FE45534345372047434E335E", "Serbian Identity Card (eID)" }, + { "3BF99600008031FE455343453720474E335E", "Serbian Identity Card (eID)" }, + { "3BF99600008131FE45454F4E43617264563173", "eONCard V1 (PKI)" }, + { "3BF99600008131FE4553434537200E00202028", "Giesecke & Devrient GmbH StarSign CUT S" }, + { "3BF99600008131FE45535049564B4559373028", "Taglio PIVKey C980 (PKI)\nhttps://www.pivkey.com" }, + { "3BF99800FFC11031FE55414D20434D4431313083", "Service card of the Ministry of Defense of Italy - Military Aviation" }, + { "3BF99800FFC11031FE55454920434D4431313083", "Service card of the Ministry of Defense of Italy - Italian Army" }, + { "3BF99800FFC11031FE554D4D20434D443131308F", "Service card of the Ministry of Defense of Italy - Navy" }, + { "3BF99800FFC11031FE55504320434D443131309C", "Service card of the Ministry of Defense of Italy - Civil personnel" }, + { "3BFA..00008131..438065A2........72D6....", "IDClassic 3XX Cards (with MPCOS Applet)" }, + { "3BFA00008131FE450031C173C840000090007A", "J3R150 EMV (JavaCard)\nhttp://www.gdrfid.com/" }, + { "3BFA1100008131FE45436F6D624F5320495600E0", "MyWireCard 2go Prepaid VISA Card" }, + { "3BFA110002406043C602F8030300009000", "DeLaRue DX(?)" }, + { "3BFA1300008131FE15597562696B65794E454FA6", "Yubikey NEO" }, + { "3BFA1300008131FE450031C173C8400000900079", "Nigerian eID Card (warm reset)\nChip is NXP JCOP 2.4.1R3" }, + { "3BFA1300008131FE454465786120434620763198", "Dexa Systems Crossfire Card (PKI)\nhttp://www.dexasystems.com/products-services/products/dexa-smartcards-credential-tokens-peripherals" }, + { "3BFA1300008131FE454A434F503.3.56323332..", "JCOPxx/yy v2.3.2 (see hist bytes for more info)" }, + { "3BFA1300008131FE454A434F50323156323331", "J2A040 JCOP (JavaCard)" }, + { "3BFA1300008131FE454A434F5032315632333191", "NXP JCOP 21 V2.3.1 36K" }, + { "3BFA1300008131FE454A434F5032315632343196", "NXP JCOP 2.1 V 2.4.1 (JavaCard)" }, + { "3BFA1300008131FE454A434F50343156", "JCOP41 V221" }, + { "3BFA1300008131FE454A434F5034315632333197", "JCOP41 /72K (eID)" }, + { "3BFA1300008131FE454A434F50763234........", "NXP JCOP v2.4.x (see hist bytes for more info)" }, + { "3BFA1300008131FE54A434F503233191", "Jcop (JavaCard)" }, + { "3BFA1300FF813180450031C173C00100009000B1", "OpenPGP" }, + { "3BFA1300FF918131FE478012392F31C073C7014907", "MITSUBISHI Standard-9M (PKI)\nhttps://www.mdis.co.jp/service/standard-9m/" }, + { "3BFA1800008031FE45FE654944202F20504B4903", "Estonian Identity Card (EstEID v3.5 (10.2014) cold) (eID)\nhttp://id.ee/" }, + { "3BFA1800008131FE4506082A841001876E0805BC", "Dutch Rijkspas (eID)" }, + { "3BFA1800008131FE4506082A841001876E0807BE", "Rijkspas (identification card dutch government employees) (eID)\nhttps://nl.wikipedia.org/wiki/Rijkspas\nDutch government multifunctional smartcard (Other)\nhttps://nl.wikipedia.org/wiki/Rijkspas" }, + { "3BFA1800008131FE45060860841001876F0602FE", "Card used by the Dutch health insurers to give medical personnel access to patient insurance information" }, + { "3BFA1800008131FE4546534A434F503453494480", "NXP Java Card JCOP4 P71 GP2.3 JC3.0.5 (JavaCard)\nhttps://www.javacardsdk.com/product/j3r180sim/" }, + { "3BFA1800008131FE454A33413034305632343184", "NXP J3A 40K\nJava Card v2.2.2 - Global Platform v2.2.1\nDual-interface functionality (features 1K Mifare emulation)" }, + { "3BFA1800008131FE454A33413038315632343189", "NXP JCOP CJ3A081\nhttp://www.usmartcards.com/media/downloads/492/NXP%20P5CX012%2002X%2040%2073%2080%20144%20%20%202011.pdf" }, + { "3BFA1800008131FE454A3344303831563234328F", "AustriaCard Dual Interface Unpersonalized EMV Cards (Bank)\nhttps://www.austriacard.com" }, + { "3BFA1800008131FE454A434F503431563232319D", "NXP JCOP 41 v2.2.1 72k SmartCard I/F" }, + { "3BFA1800008131FE454A546178436F72655631B2", "Taxpayer Portal Authentication for Fiji Revenue & Customs Service taxpayer portal (PKI)" }, + { "3BFA1800008131FE454D4F54494F4E0000900760", "SIM card (Telecommunication)" }, + { "3BFA1800008131FE4550564A434F5033454D5694", "NXP JCOP3 J3H082 Java Card 3.0.4 Dual-Interface (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop3-j3h082-java-card-3-0-4-j3h081-dual-interface/" }, + { "3BFA1800008131FE4550564A434F503453494493", "National Health Insurance (Taiwan) (HealthCare)" }, + { "3BFA180000910131FE454A33523138302D323535F5", "Cardlogix J3R180 NXP JCOP 4 Java Card 3.0.5 Classic Dual Interface (JavaCard) (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, + { "3BFA180000910131FE454A33523331302D333535FF", "NXP JCOP 4 Java Card 3.0.5 Classic (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, + { "3BFA180000910131FE4550564A434F503453494482", "Supposed P71 SecID purchased from a Chinese manufacturer (JavaCard)" }, + { "3BFA180000910131FE456BD1936AC2F28547E164CC", "J3R180, NXP JCOP4 JC3.0.5 Classic, GP2.3, SECID (JavaCard)\nhttps://www.cardlogix.com/product/nxp-jcop-4-java-card-3-0-5-classic/" }, + { "3BFA180002C10A31FE584B53776973735369676E89", "SuisseId card (used for qualified signatures)\nhttp://postsuisseid.ch/de/suisseid\nhttp://www.suisseid.ch/" }, + { "3BFA1800FF10004A546178436F72655631", "NXP JCOP4 J3R200 P71 (JavaCard)" }, + { "3BFA1800FF8031FE450031807394410000900090", "Kazakhstan Identity Card 2022 (eID)" }, + { "3BFA1800FF8131FE454A434F5032315632333165", "TrubDemax healthcare card\nJCOP 21 / 72k" }, + { "3BFA1800FF8131FE454A434F5034314332303074", "HID Crescendo C200\nhttps://www.hidglobal.com/sites/hidglobal.com/files/resource_files/crescendo-c200-c700-smart-card-ds-en.pdf" }, + { "3BFA1800FF8131FE454A434F5034315632323162", "JCOP41\nHID Crescendo C700\nhttp://www.hidcorp.com/\nShould be compatible to RAAK\nhttp://www.raaktechnologies.com/\nMarx CrypToken MX2048-JCOP USB Token" }, + { "3BFA1800FF8131FE454A434F5034315632333163", "JCOP41 V2.3.1 Dual Interface, Mifare emulation, 72K (NXP SmartMX P5CT072)\nJCOP (Java Card OpenPlatform) is a Java smart card distributed and developed by NXP.\nThe JCOP 41 v2.3.1. is an USB-smart card and can be used not only with standard smart card reader, but also with simple USB-connectors. The JCOP card is connected as ICCD card and can be used with such ICCD standard drivers.\nJCOP 41 is a Dual-Interface Smart Card, that means, the card can also be contacted with a contactless card reader. For building access systems, this card is also be able to emulate Mifare Classic 1k/4k.\nJCOP 41 v2.3.1 is compliant to JavaCard Standard 2.2.1. and GlobalPlattform 2.1.1. Their cryptographic features supports RSA up to 2432 bit, 'Eliptic curves' - ECC GF(2n), AES and 3DES.\nMore information is available here:\nhttp://www.nxp.com/documents/short_data_sheet/P5Cx009_P5Cx072_FAM_SDS.pdf" }, + { "3BFA940000813120438065A20101013D72D64321", "GemXpresso Pro R3 32PK (MPCOS, T=1)" }, + { "3BFA9600008031FE450031C8239752270F9000C1", "Swedish ID card (eID)" }, + { "3BFA960000813180438065A20101013D72D64383", "Malta identity card delivered by the Identity Management Office (eID)\nhttps://mhas.gov.mt/en/MHAS-Departments/Land%20Public%20Registry/Pages/ID-MO.aspx" }, + { "3BFA9800FFC11031FE55C8035341475F504B493277", "Siemens corporate ID card (access to the building / rooms etc,\nstores PKI private keys/certificates)" }, + { "3BFA9800FFC11031FE55C8045341475F504B493270", "Siemens Corporate Card (Belgium , Germany)" }, + { "3BFB11000040288059535059525553AE0002", "Spyrus Rosetta Basic" }, + { "3BFB11000040788059535059525553AE0202", "Rosetta(r) Series II Smart Card manufactured by Spyrus\nhttp://spyrus.com/products/rosetta_smart_usb.asp" }, + { "3BFB1100008131FE450031C06477E910000090006A", "OCS ID-One Cosmo Card USB Token" }, + { "3BFB1100FF81318055006802001010534941450004", "Italian Society of Authors and Publishers ticket and report signing smart card (PKI)\nhttps://www.siae.it/en/utilizzatori/other-services-stamps-certifications-data-and-statistics/automated-ticket-issuing-systems" }, + { "3BFB1300008131FE454A434F50533.3.56323332..", "JCOP-Sxx/yy v2.3.2 (see hist bytes for more info)" }, + { "3BFB1300008131FE456368617269736D6174657884", "Charismathics smart card JCOP and Qualified electronic signature CHJCOP-xxx (PKI)\nhttps://www.stampit.org/en/page/808" }, + { "3BFB1300FF10000031C164099511380F9000", "Mastercard World Elite (CapitalOne Venture) (Bank)\nhttps://www.mastercard.us/en-us/personal/find-a-card/world-elite-mastercard-credit.html" }, + { "3BFB1300FF10800031C164086032060F9000", "Stripe Issuing Card (Bank)" }, + { "3BFB1300FF10800031C164086032100F9000", "Varo (Bank)" }, + { "3BFB1300FF10800031C164089862210F9000", "Visa Debit (Bank)" }, + { "3BFB1300FF10800031C164089862290F9000", "Bank Card (Bank)" }, + { "3BFB1300FF10800031C1640924331E0F9000", "TransferWise Debit Card (Bank)\nhttps://wise.com/" }, + { "3BFB1300FF10800031C164096441360F9000", "Truist Business Debit (Bank)" }, + { "3BFB1300FF813180755A43352E3520524556204763", "ZeitControl BasicCard 5.5" }, + { "3BFB1300FF813180755A43352E3620524556204D6A", "ZeitControl BasicCard ZC5.6 user-programmable smart card\nhttp://www.basiccard.com/index.html?overview.htm" }, + { "3BFB1300FF813180755A43362E3520524556204364", "ZeitControl BasicCard 6.5, multiapplication with 30 kByte EEPROM" }, + { "3BFB1300FFC0803180755A43352E34205245562041A5", "ZeitControl BasicCard Professional 5.4 Revision A" }, + { "3BFB1300FFC0803180755A43352E34205245562048AC", "ZeitControl BasicCard Professional 5.4" }, + { "3BFB1300FFC0803180755A43352E3420524556204DA9", "Basiccard ZC5.4 revision M (Other)\nhttp://basiccard.com" }, + { "3BFB1300FFC0807553544F4C4C4D31504C5553BD", "Stoll M1PLUS (Other)" }, + { "3BFB180000407880595350595255530B0003", "Spyrus, Inc. Rosetta USB (PKI)" }, + { "3BFB180000407880595350595255530B0402", "SPYRUS Rosetta Series 2 (eID)\nhttp://www.spyrus.com/rosetta-hsm/" }, + { "3BFB18000040788059535059525553AE0402", "Spyrus Rosetta Series II" }, + { "3BFB1800008131FE450031C06477E9100001900062", "ID card for personal of 'Govern Illes Balears'\nhttp://www.caib.es/sacmicrofront/contenido.do?cont=7584&mkey=M08110610180317195848&&lang=en" }, + { "3BFB1800008131FE454A33483134354337583330C6", "COTECH OpenPGP Card - ECC (PKI)" }, + { "3BFB9100FF918171FE40004120000100812063CBA08003", "C*******r, MasterCard credit card, Pass Banque, Oberthur - contactless/PayPass" }, + { "3BFB9600008031FE450031C06477E3020082900076", "Oberthur ID-One Cosmo" }, + { "3BFB9600008031FE450031C06477E3030081900074", "D.O.D. Eid Passport rapidgate card (eID)" }, + { "3BFB9600008131FE450031C06477E91000019000EC", "Oberthur ID-ONE v5.4" }, + { "3BFB9600008131FE450031C06477E910000F9000E2", "Elektroniczna Legitymacja Studencka - Polish Student's ID Issued in Poznan in 2007" }, + { "3BFB9600008131FE450031E85427E60100079000BC", "Gemalto (PKI)" }, + { "3BFB9600008131FE4556445349354001000400011F", "Vasco DIGIPASS KEY 200 usb token\nhttp://www.vasco.com/products/digipass/digipass_pki/digipass_pki_keys/digipass_key_200.aspx\nShould contain a 'Oberthur cosmo v 5.4 or V7.0D' smartcard" }, + { "3BFB9800FFC11031FE550064052047033180009000F3", "Gemplus GemGate 32K\ndistributed by Postecert (www.postecert.it) to legally sign documents" }, + { "3BFC1300008131FE15597562696B65794E454F7233E1", "YubiKey NEO (PKI)\nhttp://www.yubico.com/" }, + { "3BFC1300008131FE45597562696B65794E454F7233B1", "Yubikey Neo\nhttp://www.yubico.com/products/yubikey-hardware/yubikey-neo/" }, + { "3BFC180000813180459067464A00641606F2727E00E0", "PIVKey C910 PKI Smart Card (eID)\nhttp://pivkey.com/" }, + { "3BFC180000813180459067464A00642D70C172FEE0FE", "pivkey token (JavaCard)\nhttp://www.pivkey.com/" }, + { "3BFC180000813180459067464A0068080.000000000.", "Feitian A22 JavaCard (150K) (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~712/javacos-a22-dual-interface-java-card-150k/p/index.shtml\nFeitian A40 JavaCard (64K) (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~711/javacos-a40-dual-interface-java-card-64k/p/index.shtml" }, + { "3BFC180000813180459067464A01002005000000004E", "Feitian A40 (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~711/javacos-a40-dual-interface-java-card-64k/p/index.shtml" }, + { "3BFC180000813180459067464A01002504000000004A", "Feitian JavaCOS A22CR ()\nhttp://www.javacardos.com/store/javacard-a22cr.php" }, + { "3BFC180000813180459067464A0100870600000000EA", "Feitian FTJCOS (https://www.ftsafe.com/products/Card_OS) (JavaCard)\nhttps://www.ftsafe.com/onlinestore/product?id=18" }, + { "3BFC180000813180459067464A01642F70C172FEE0FD", "Feitian eJavaToken (JavaCard)\nhttp://www.ftsafe.com/product/epass/eJavaToken" }, + { "3BFC1800008131FE458073C8211366020403550002D2", "National Health Insurance Card, Taiwan" }, + { "3BFC9800FFC11031FE55C803496E666F63616D65726528", "New Card Infocamere (Italy) series 1402...\nhttp://www.card.infocamere.it/\nSiemens Informatica - Siemens M4.01a\nchip Infineon SLE66CX322P (CC EAL5)\nMemory EEPROM: 32KB\nOperating system CARDOS\nMax numero dei tentativi PIN: 3\nPin: da 5 a 8 digit\nUnblocked by tool CARDOS API 2.2" }, + { "3BFD..00008131..4380318065B0........83..90....", "IDClassic 3XX / Classic TPC (IXS, IS, IS V2, IS CC, IM, IM CC, IM CC V3) / MultiApp ID Cards" }, + { "3BFD1300001000803180654953060B0183079000", "MIR card issued by Gazprombank (Russia) (Bank)\nhttps://www.gazprombank.ru/personal/cards/7579039/" }, + { "3BFD130000813160658031C0694D54434F537301011660", "Silesian University (Katowice, Poland) Student Identity Card (eID)\nhttps://www.us.edu.pl/" }, + { "3BFD1300008131FE158073C021C057597562694B657940", "Yubico YubiKey 5 NFC (PKI)\nhttps://www.yubico.com/product/yubikey-5-nfc" }, + { "3BFD1300008131FE4500125553554D49444153000000F6", "Midas key diversification card (Other)" }, + { "3BFD1300008131FE4541373030354347203234325231D5", "Feitian ePass FIDO NFC (Other)\nhttps://www.ftsafe.com/Products/FIDO/NFC" }, + { "3BFD1300008131FE4541373030364347203234325231D6", "YubiKey NEO (token)" }, + { "3BFD1300008131FE454A434F50323176323331474454E1", "National Health Insurance Card, Taiwan" }, + { "3BFD1300008131FE45543D314A323133364B56323331DC", "ic Card (JavaCard)" }, + { "3BFD1300008131FE4580318153534431738421C0810730", "Personal Info Card (eID)" }, + { "3BFD1300FF10000031C173C8400052A1C5009000", "IBKR Prepaid MasterCard, Issued by Peoples Trust Company (Bank)\nhttps://www.interactivebrokers.com/en/index.php?f=26451" }, + { "3BFD1300FF10000031C173C8400052A1D5009000", "PayPal Business Debit Mastercard (Bank)\nhttps://www.paypal.com/merchantapps/appcenter/makepayments/bdmc" }, + { "3BFD1800008031FE45003180718E6452D904008190005B", "Oberthur Card Systems, authentIC" }, + { "3BFD1800008031FE4553434536302D43443038312D46C4", "Panama Electronic Signature (JavaCard)" }, + { "3BFD1800008031FE45736674652063643134342D6E66D8", "SmartCafe Expert 3.2 144K Dual is a contact and contactless technology Java card from G&D with 144K on-board EEPROM for application and data storage. Certified to FIPS 140-2 Level 3 and Common Criteria EAL 5+. Supports specifications ISO 14443A T=CL and ISO 7816 T=1/0. (PKI)\nhttp://www.smartcardfocus.us/shop/ilp/id~523/smartcafe-expert-3-2-144k-dual/p/index.shtml" }, + { "3BFD1800008031FE45736674652D63643038302D6E66DC", "G&D Sm@Cafe 3.1 (eID)" }, + { "3BFD1800008131FE4553434536302D43433038312D46C2", "Giesecke & Devrient StarSign USB Token" }, + { "3BFD1800008131FE45534C4A35324778787979797A52AA", "The National Health Insurance Card issued by the National Health Insurance Administration Ministy of Health and Welfare in Taiwan (HealthCare)\nhttps://www.nhi.gov.tw/English/Content_List.aspx?n=320832076C00692B&topn=BCB2B0D2433F6491" }, + { "3BFD1800008131FE458031806540907B01518307900055", "Croatian Health Care card" }, + { "3BFD1800008131FE4580318153474531738421C081072E", "Georgian ID Card" }, + { "3BFD1800FF80B1FE451F078073002113574A5448613147005F", "Activkey Sim\nhttp://www.actividentity.com/products/activkey_usb_tokens__home.php" }, + { "3BFD1800FF80B1FE451F078073002113574A54486131480050", "G&D Sm@rtCafe Expert 64 v2" }, + { "3BFD1800FF80B1FE451F078073002113574A544861314A0052", "e-CPF issued by AASP (Lawyers Association of Sao Paulo, Brazil)" }, + { "3BFD1800FF8131FE4543494247555A494A324130383158", "Caregiver card for Dutch Medical System called UZI\n(Unieke Zorgverlener Identificatie, Caring Unique Identification)" }, + { "3BFD9100FF918171FE40004120004100818031C073D621C0D8", "Sparkasse Hanau - German contactless GeldKarte (PPSE, girogo)\nhttps://www.geldkarte.de/_www/en/pub/geldkarte/service_navigation/about_us.php" }, + { "3BFD9400008131204380318065B08302047E83009000B6", "GXPPRo-R3.x STD PTS T=1\nLatvian Digital Signature Card (cold)\nhttp://www.eme.lv/" }, + { "3BFD940000813160658031C0694D54434F5373010111E0", "MTCOS Light\nhttp://www.masktech.de/products/mtcoslight/index.html" }, + { "3BFD940000813160658031C0694D54434F5373010116E7", "Polish student card (eID)" }, + { "3BFD9500008131FE41008C0F17BD008C000000000030F2", "Khmer Identify Card (eID)" }, + { "3BFD9600008031FE45534C4A35324778787979797A5225", "TIPL (Other)" }, + { "3BFD9600008131204380318065B0831100C88300900015", "Gemalto TOP IM GX4 MSA081, T=1 (PKI)" }, + { "3BFD9600008131204380318065B0831148C883009000", "Pay TV" }, + { "3BFD9600008131484280318065B0840100C883009000", "Optelio Cards (D38-D72 R6) T=1 High Speed" }, + { "3BFD9600008131804380318065B0850100D683019000BC", "Queensland Drivers' Licence (Australia) (eID)" }, + { "3BFD9600008131FE4500000152332980000000000000A9", "DPI Guatemala (eID)\nhttp://www.renap.gob.gt/" }, + { "3BFD9600008131FE450000015233672000000000000047", "DPI Guatemala (eID)\nhttps://www.renap.gob.gt/servicios/que-es-el-dpi" }, + { "3BFD9600008131FE4500000161638620000000000000C5", "Renap Guatemala (eID)" }, + { "3BFD9600008131FE450000016687038000000000000003", "DPI (Documento Personal de Identificacion) Guatemala (eID)" }, + { "3BFD9600008131FE45534C4A3532474441303830434348", "Universal JCard C-UJC128-PAC-001 (JavaCard)\nhttps://www.usmartcards.co.uk/universal-j-cards" }, + { "3BFD9600008131FE45534C4A353247444C313238435257", "Universal JCard (Contact) with Infineon SLE78 (JavaCard)\nhttp://www.usmartcards.co.uk/cards/universal-jcard-contact-with-infineon-sle78-white-gloss-pvc-card.html" }, + { "3BFD9600008131FE45534C4A35324778787979797A5224", "J3R180 (JavaCard)" }, + { "3BFE130000108080318066B0840C016E0183009000", "Sberbank of Russia MIR debit card (Bank)\nSwile card\nhttps://www.swile.co/fr-fr/swile-card" }, + { "3BFE1300008131FE454A434F5076323431204C4F542057B1", "LOT test card (JavaCard)\nwww.lotgroup.eu" }, + { "3BFE130000918131804180318066B0840C016E01830090001F", "Japan Post Bank Visa Debit Card (Bank)\nhttps://www.jp-bank.japanpost.jp/kojin/cashless/yuchodebit/kj_cl_yd_index.html" }, + { "3BFE1800008031FE454573744549442076657220312E30A8", "Estonian Identity Card (EstEID 3.0 'JavaCard' cold)" }, + { "3BFE1800008031FE4553434536302D43443038312D6E46A9", "G&D Sm@rtCafe Expert 6.0 (JavaCard)\nhttp://www.smartcardfocus.com/shop/ilp/id~684/smartcafe-expert-6-0-80k-dual-/p/index.shtml" }, + { "3BFE1800008031FE4553434536302D43443134352D6E46A0", "Smart Cafe Expert 6.0, Java Card 3.0 (PKI)" }, + { "3BFE1800008031FE45803180664090A4162A0083019000E1", "Estonian Identity Card (EstEID 3.0 'JavaCard' warm)" }, + { "3BFE1800008031FE45803180664090A4162A00830F9000EF", "iEstonian Identity Card (EstEID 3.0 (18.01.2011) warm)" }, + { "3BFE1800008031FE45803180664090A5102E03830F9000EF", "Infineon jTOP SLE78 SLJ52GCA080CL IFX v46.03 (JavaCard) (JavaCard)" }, + { "3BFE1800008031FE45803180664090A5102E038381900061", "Infineon Trust-P (JavaCard)" }, + { "3BFE1800008031FE45803180664090A5102E1083019000F2", "Infineon CJTOP 80K INF SLJ 52GLA080AL M8.4 (JavaCard)" }, + { "3BFE1800008131FE458031815448534D31738021408107FA", "Smartcard-HSM\nhttp://www.cardcontact.de/products/sc-hsm.html" }, + { "3BFE1800FF8131FE454A3231024103479049544356008044", "Brazilian Army ID Card (eID)" }, + { "3BFE1800FF8131FE456368616E67696E677465634A33445E", "xgames pki (eID)" }, + { "3BFE9100FF918171FE40004120001177C1000000000000000089", "Tangem Tap It cryptocurrency hardware wallet (Other)\nhttps://tangem.com/" }, + { "3BFE9100FF918171FE400041200051779180318065B0850300FB", " Italian Card Identity (CIE Comune di Parma) (eID)\nhttp://www.comune.parma.it/servizi/Servizi-Demografici-Carta-di-identita/Carta-di-identita-Elettronica-CIE_A2_C100_P96.aspx" }, + { "3BFE9100FF918171FE40004128000180810073C840000090004D", "Philips SmartMX chip (IBMs JCOP OS)" }, + { "3BFE9100FF918171FE40004128001133B04A434F5033315632C4", "JCOP31 72K\ndual interface functionality, 1K Mifare emulation." }, + { "3BFE9100FF918171FE400041380011F7B14A434F503234325211", "SwissPass (Transport)\nhttps://www.swisspass.ch" }, + { "3BFE9100FF918171FE40004138002180718066B00701010707B7", "Java Gemalto R7 (contactless) (Bank)" }, + { "3BFE9100FF918171FE40004138002180818065A2010201317210", "Santander TUI Brazil (Bank)\nhttp://www.santanderuniversidades.com.br/Paginas/home.aspx" }, + { "3BFE9100FF918171FE40004138002180818066B00701017707B7", "Java Gemalto R5 (contactless) (Bank)" }, + { "3BFE940000801F42803180664750204583018301900002", "TATA Docomo UICC (Telecommunication)\nhttp://www.tatadocomo.com/" }, + { "3BFE9400FF80B1FA451F034573744549442076657220312E3043", "Estonian Identity Card (EstEID v1.0 cold)\nEstonian Identity Card (EstEID v1.1 'MULTOS' warm)" }, + { "3BFE9600008031FE4380738400E065B0850400FB8290004E", "EU smart tachograph card (driver/company/control/workshop)\nhttps://dtc.jrc.ec.europa.eu/" }, + { "3BFE9600008031FE4380738400E065B08505002582900091", "Swiss truck driver card (Transport)" }, + { "3BFE9600008131FE45803180664090A5102E03830190006E9000", "Swissbit PS-100u (JavaCard)\nhttps://www.swissbit.com/ps-100u/" }, + { "3BFE9600FF8131FE455DFF6D6553414D2076312E302E320C", "SAM module for Kharkiv E-ticket (mikroelektronika) (JavaCard)\nhttp://www.mikroelektronika.com/en/card-and-ticket-validators" }, + { "3BFE9600FFC00A31FE4D4573744549442076657220312E309B", "Estonian Identity Card (EstEID v1.1 compatible)\nhttp://www.id.ee/?id=11019&&langchange=1" }, + { "3BFF..00008131..4380318065B0........120FFE829000..", "IDPrime MD 8840, 3840, 3810, 840 and 830 Cards T=1" }, + { "3BFF..00FF8131..456563............................", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ..." }, + { "3BFF0000FF8131FE458025A000000056575343363530000000", "SafeNet SC650" }, + { "3BFF00FF8131..456563............................", "Debit card (Germany): ec-cash, GeldKarte(EUR), Maestro, Cirrus, ..." }, + { "3BFF1100008131FE4D8025A00000005657444B3333300600D0", "Datakey 32K PKI Smart Card Model 330\nhttp://www.datakey.com/products/smart_cards/products_sc_330.shtml" }, + { "3BFF1100008171404200002101314252000[05]63........9000.*", "Smart Card 'The Smart Way to Login'\nUsed on Acer TravelMate to secure boot" }, + { "3BFF11000240648069A2070103570000FF0083009000", "Gemplus GemXpresso" }, + { "3BFF1100FF8131FE9580F9D2760000255444010083000000A0", "GiroCard Haspa Hamburger Sparkasse (Bank)\nhttps://www.haspa.de/privatkunden/ihr-online-banking/unser-angebot/haspa-digital-services-96198/" }, + { "3BFF13000010003100DE525001001500000000000000", "wisely debit (Bank)\nhttps://www.mywisely.com/" }, + { "3BFF13000010003101F1564011001900000000000000", "BVG Guthabenkarte (Prepaid Payment Card for Berlin/Brandenburg Public Transport) (Transport)\nhttps://www.bvg.de/de/service-und-kontakt/guthabenkarte\nRevolut Visa Glow-in-the-dark\nhttps://revolut.com/\nMasterCard debit - PayCenter - Corporate Benefit 'Sachbezugskarte' (Bank)\nhttps://paycenter.de/sachbezugskarte/" }, + { "3BFF13000010003101F1564011001D00000000000000", "albo (Bank)\nhttps://www.albo.mx/" }, + { "3BFF13000010003101F1564011002300000000000000", "ANZ BANK (Bank)\nhttps://www.anz.com.au/personal/" }, + { "3BFF1300008131FE450031B9640404ECC17394018082900052", "AKD kID (eID)\nhttps://www.id.hr" }, + { "3BFF1300008131FE450031B9640444ECC17394018082900012", "Croation personal ID card (eID)\nhttp://eid.hr/" }, + { "3BFF1300008131FE4543433169A92000002020202020200036", "Swiss Lunch Check Wallet Card (Bank)\nhttps://lunchcheck.ch" }, + { "3BFF1300008131FE4543443269A94100002020202020200053", "Visa credit card (Viseca Card Services SA, Switzerland) (Bank)\nhttps://www.viseca.ch/privatkunden/kreditkarten\nVisa credit card, UBS Switzerland (Bank)" }, + { "3BFF1300008131FE45434433690940000020202020202000F3", "VISA credit card (LBBW/Payback VISA) (Bank)" }, + { "3BFF1300008131FE454F574F4B31302D4A................", "OWOK (One Web, One Key) login card\nhttp://www.reiner-sct.com/owok/\nReiner SCT loginCard\nhttps://cardlogin.reiner-sct.com/" }, + { "3BFF1300008131FE4D8025A00000005657444B3333300600D2", "Datakey DCOS model 330 (DKCCOS 6.0 token)" }, + { "3BFF1300918131FE4141434F532046696F6E6131204C6336F4", "TURKEY A101 HADI APP CARD (Bank)\nhttps://a101hadi.a101.com.tr/" }, + { "3BFF1300FF10000031C173082110645631424E079000", "Credit card (Bank)" }, + { "3BFF1300FF10000031C1738211064414D33470779000", "Visa Debit (Bank)\nhttps://www.chase.com/" }, + { "3BFF1300FF10000031C173C821106441443533079000", "BRADESCO-CONTA SALARIO (Bank)" }, + { "3BFF1300FF10000031C173C8211064414D3037079000", "UP Day Ticket Restaurant Card (Other)\nhttps://www.day.it/login" }, + { "3BFF1300FF10000031C173C8211064414D3130079000", "Tangerine MasterCard (Bank)\nhttps://www.tangerine.ca/en/products/spending/creditcard/money-back/" }, + { "3BFF1300FF10000031C173C8211064414D3137079000", "PayPal Business Debit mastercard (Bank)\nhttps://www.paypal.com/merchantapps/appcenter/makepayments/bdmc" }, + { "3BFF1300FF10000031C173C8211064414D3330079000", "VISA card issued by ING-DiBa AG (Germany) (Bank)" }, + { "3BFF1300FF10000031C173C8211064414D3331079000", "NAB VISA Debit (contact interface) (Bank)\nhttps://www.nab.com.au/" }, + { "3BFF1300FF10000031C173C8211064414D3337079000", "VISA Credit Card (Postbank), Germany (Bank)" }, + { "3BFF1300FF10000031C173C8211064414D3341079000", "BBVA debit card Uruguay. MIFRE Plus compatible. (Bank)\nScotiabank Passport Visa Infinite credit card (Bank)\nhttps://www.scotiabank.com/ca/en/personal/credit-cards/visa/passport-infinite-card.html" }, + { "3BFF1300FF10000031C173C8211064414D3343079000", "MasterCard issued by President's Choice Bank (Canada) (Bank)\nhttp://pcfinancial.ca/mastercard" }, + { "3BFF1300FF10000031C173C8211064414D3344079000", "VISA debit emitted by FinecoBank (Bank)\nhttps://finecobank.com/" }, + { "3BFF1300FF10000031C173C8211064414D3347079000", "Chase Visa Debit Card (Bank)\nhttps://www.chase.com/bankinghelp" }, + { "3BFF1300FF10000031C173C8211064414D3348079000", "BBVA blue VISA Debit Card (Bank)\nhttps://www.bbva.es/en/personas/productos/tarjetas/tarjeta-joven-ahora.html\nDesjardins Bonus Visa credit card (Bank)\nhttps://www.desjardins.com/ca/personal/loans-credit/credit-cards/bonus-visa/index.jsp" }, + { "3BFF1300FF10000031C173C8211064414D3430079000", "PNC BUSINESS VISA DEBIT (Bank)\nhttps://www.pnc.com/en/small-business/payments-and-processing/payment-cards/pnc-bank-visa-business-debit-card.html" }, + { "3BFF1300FF10000031C173C8211064414D3531079000", "Discover It Credit Card (Bank)" }, + { "3BFF1300FF10000031C173C82110644930424E079000", "National Bank Debit Card with expiration date and cvv code (Bank)" }, + { "3BFF1300FF10000031C173C82110644932424E079000", "Interact, Visa Debit Bank of Novia Scotia (Bank)\nhttps://www.scotiabank.com/global/en/credit-card-terms-and-conditions.html" }, + { "3BFF1300FF10000031C173C82110644D30424E079000", "Debit payment card (Rabobank NL) (Bank)\nhttps://www.rabobank.nl/en/business/making-and-receiving-payments/payments/paying-with-your-bank-card" }, + { "3BFF1300FF10000031C173C82110644D30434E079000", "Huntington (Bank)" }, + { "3BFF1300FF10000031C173C82110645630424E079000", "Rabobank Netherlands VISA debit (Bank)" }, + { "3BFF1300FF10000031C173C82110645631424E079000", "Portuguese 'BancoCTT' Bank Card (Bank)\nhttps://www.bancoctt.pt/o-seu-dia-a-dia/cartao-de-credito-banco-ctt" }, + { "3BFF1300FF10000031C173C82110645631434E079000", "Chase Freedom Unlimited Credit Card (Bank)" }, + { "3BFF1300FF10808031E06B04310502AF555555555555", "USAA EMV Visa Debit Card (Bank)" }, + { "3BFF1300FF10808031E06B04546B0267555555555555", "Target RedCard debit card (Other)" }, + { "3BFF1300FF10808031E06B071405028A555555555555", "Tangerine Debit Card (Bank)\nhttps://www.tangerine.ca" }, + { "3BFF1300FF10808031E06B08240502B5555555555555", "Tangerine Canada Interac debit card (Bank)\nhttps://www.tangerine.ca/" }, + { "3BFF1300FF8031FE45534653452D43583332322D5601010165", "Portugal Santander Totta Universitarios 'Associacao Academica de Coimbra'" }, + { "3BFF1300FF8031FE45534653452D43583332322D5618020876", "SmartCafe Expert Java" }, + { "3BFF1300FF8031FE45534653452D43583332322D5618030877", "Giesecke & Devrient SmartCafe Expert 32K v2.0 #2" }, + { "3BFF1300FF8131FE45656311045002800008390004020502E9", "German 'Geldkarte' supplied by the Deutsche Bank in Karlsruhe,\nBaden-Wurttemberg, Germany." }, + { "3BFF1300FF8131FE45656311045002800008540004230502A5", "Maestrocard/Geldkarte (Stadtsparkasse Haltern, Germany)" }, + { "3BFF1300FF8131FE5D8025A00000005657444B33323005003F", "Datakey DCOS model 320" }, + { "3BFF1300FF910131FE210031C173C82110644D30434E07900094", "AirPlus MasterCard Commercial (Bank)\nhttps://www.airplus.com/us/en/products-solutions/products/corporate-cards/corporate-cards.html" }, + { "3BFF1300FF910131FE4141434F5320486F6C6C7931204C633665", "OEAMTC Visa Club Card (Bank)\nhttps://www.oeamtc.at/mitgliedschaft/leistungen/die-oeamtc-kreditkarte-31091443" }, + { "3BFF1300FF910131FE41455041000000010833995600000000AC", "Austrian Sparkasse ISIC debit card (Mastercard) (eID)\nhttps://isic.at/" }, + { "3BFF1300FF918131FE4141434F532046696F6E6131204C6336F4", "Deutsche Kreditbank Debit (Bank)" }, + { "3BFF1300FF918131FE4141434F53204769756C6961204C6336B5", "revolut debit visa (Bank)\nhttps://www.revolut.com/" }, + { "3BFF1300FF918131FE4541434F53204449616E6132204C6336DF", "Alior Bank MasterCard debit (Bank)\nComdirect (Deutsch Bank) debit VISA (AUSTRIACARD 56015/001) (Bank)" }, + { "3BFF1400FF8131FE458025A000000056575343363530010039", "SafeNet SC650 (PKI)\nhttp://www.safenet-inc.com/data-protection/authentication/smartcard-650/" }, + { "3BFF1400FF8131FE458025A000000056575343363530030239", "SafeNet SC650 v3.2 (PKI)\nhttp://www.safenetat.com/products-solutions/high-assurance-authentication/sc650/" }, + { "3BFF1400FF8131FE458025A00000005657534336353004003C", "SafeNet AT SC650 V4.0 02/2018 (PKI)\nhttps://www.safenetat.com/Solutions/Enterprise-Security/high-assurance-authentication/sc650/" }, + { "3BFF1800008131FE45006B04050100011101434E5310318069", "Sanitary Card of 'Friuli Venezia Giulia' region (Italian Republic)\nCarta Nazionale dei Servizi (Italia)\nhttp://cartaservizi.regione.fvg.it/" }, + { "3BFF1800008131FE45006B040501000112024850431031806C", "Carta del Professionista Sanitario - CNS - Provincia autonoma di Trento\nProfessional Health card, Autonomous Province of Trento" }, + { "3BFF1800008131FE45006B0405010001210143494510318048", "hybrid card for various health services and regional services (access to various organizations and digital signatures)" }, + { "3BFF1800008131FE45006B04050100012101434E5310318059", "CNS - Carta Nazionale dei Servizi (Italia)\nPA emittente: Regione Autonoma della Sardegna\nCarta del Servizio Sanitario Regionale - Emilia Romagna" }, + { "3BFF1800008131FE45006B05051017012101434E531031805E", "Regional Card - Regione Liguria, Veneto - Italy (eID)\nTessera Sanitaria - Carta Regionale dei Servizi" }, + { "3BFF1800008131FE45006B05052000012101434E5310318079", "health card (HealthCare)\nhttps://tscns.regione.sardegna.it/" }, + { "3BFF1800008131FE45006B0505200001F101434E53103180A9", "national health service card (HealthCare)\nhttps://ca.arubapec.it/downloads/MU_LINUX.zip" }, + { "3BFF1800008131FE45006B0505912001F101434E5310318038", "Italian Health Card (TS) and Citizen's Card (CNS) based on IDEMIA ID-One CNS v2 on Cosmo 9.1 (HealthCare)" }, + { "3BFF1800008131FE45006B11050700011101434E531131807B", "Italian National Fire Corps -special identification card (eID)" }, + { "3BFF1800008131FE45006B11050700012101434E531031804A", "Oberthur ID-One Cosmo V7-n it's a java card 2.2.2\nIzenpe Certificado Ciudadano (eID)\nhttps://www.izenpe.eus/informacion/certificado-ciudadano/s15-content/es/" }, + { "3BFF1800008131FE45006B150C0302010101434E5310318061", "Bit4id Digital-DNA Key (eID)" }, + { "3BFF1800008131FE4D8025A00000005657444B3430300600DD", "DataKey 400 (DK400)" }, + { "3BFF1800008131FE55006B02090403010101434E5310318065", "Italian Chambers of Commerce CNS (PKI)\nhttp://www.card.infocamere.it/infocard/pub/" }, + { "3BFF1800008131FE55006B0209040301010144534410318068", "ACA (Lawyer Identifier Card) (eID)" }, + { "3BFF1800008131FE55006B02090503010101434E5310318064", "Bit4id J-SIGN 2048 (L) (PKI)\nhttps://www.bit4id.com/en/j-sign/" }, + { "3BFF1800008131FE55006B02090603010101434E5310318067", "ST microelettronics JSign3 (HealthCare)" }, + { "3BFF1800008131FE55006B02090703010101434E5310318066", "Aruba digital signing card (eID)\nhttps://www.aruba.it" }, + { "3BFF1800008131FE55006B02091403010101434E5310318075", "Smart Card INFOCERT digital key CNS from CST PADOVA (eID)" }, + { "3BFF1800008131FE55006B02091613010101434E5310318067", "ANPR -- Ministero dell'Interno - Italia (PKI)" }, + { "3BFF1800008131FE55006B02091717010101434E5310318062", "Carta Nazionale dei Servizi (CNS) Centro Servizi Territoriali (CST) (PKI)\nhttp://cst.provincia.padova.it/category/faq/firma-digitale" }, + { "3BFF1800FF8031FE45534653452D43583332322D561803087C", "Giesecke & Devrient Sm@rtCafe Expert 2.0" }, + { "3BFF1800FF8031FE45536D4072744361666545787065727465", "Giesecke & Devrient SmartCafe 32K v1" }, + { "3BFF1800FF8131..456563............................", "Geldkarte (generic ATR)" }, + { "3BFF1800FF81313C4565630D02310250001090002600041009", "Maestrocard/Geldkarte (Postbank, Germany)" }, + { "3BFF1800FF81313C4565630D0231025000109001550004107B", "Volksbank VR-BankCard (GeldKarte)" }, + { "3BFF1800FF81313C4565630D02310250001090052900041003", "Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany)" }, + { "3BFF1800FF81313C4565630D023102500010900788000410A0", "HBCI-Karte (Berliner Sparkasse, Germany)" }, + { "3BFF1800FF81313C4565630D023102500010901382000410BE", "Bremer Karte ('Geldkarte und BSAG-Kundenkarte in einem.')\nhttp://www.bsag.de/4911.php" }, + { "3BFF1800FF81313C4565630D0231025000109014060004103D", "Geldkarte/HBCI(DDV-1) (Staedtische Sparkasse Offenbach, Germany)" }, + { "3BFF1800FF81313C4565630D0231025000109014440004107F", "Geldkarte/HBCI (Kreissparkasse Ebersberg, Deutschland)" }, + { "3BFF1800FF81313C4565630D0231025000109055700004100A", "EC-Card from DKB (Deutsche Kreditbank AG)" }, + { "3BFF1800FF81313C4565630D02310280001224300020041059", "Geldkarte (Germany)" }, + { "3BFF1800FF813150456563............................", "GeldKarte v3 (Germany)" }, + { "3BFF1800FF8131FE4065631116710156000F1309D0A957111B", "Harzer Volksbank eG bank card (girocard, V-PAY, debit card, Germany / Giesecke & Devrient, DG Nexolution, 10/22) (Bank)\nhttps://www.harzer-volksbank.de/privatkunden/girokonto-kreditkarten/bankkarte-v-pay.html" }, + { "3BFF1800FF8131FE4165630608710156000FB81026204712CD", "Fyrst Bank Card (Bank)\nhttps://fyrst.de" }, + { "3BFF1800FF8131FE4165630608710156000FB85073204712D8", "Commerzbank maestro (Bank)\nhttps://www.commerzbank.de/konten-zahlungsverkehr/produkte/girokonten/kostenloses-girokonto/" }, + { "3BFF1800FF8131FE4165630608710156000FB8602AA0471231", "Debit card (Germany): Postbank - GeldKarte (EUR), girocard, V-PAY (Bank)\nhttps://www.postbank.de/" }, + { "3BFF1800FF8131FE4165630608710156000FB8C0442147127E", "Commerzbank Classic Kreditkarte Mastercard (Bank)\nhttps://www.commerzbank.de/konten-zahlungsverkehr/produkte/kreditkarten/classic-kreditkarte/" }, + { "3BFF1800FF8131FE4165630608710156000FB8D044A04712EF", "Debitcard (Bank)" }, + { "3BFF1800FF8131FE41656306087102500023B80080C04712B2", "1822direct Bank Card (Bank)\nhttps://www.1822direkt.de" }, + { "3BFF1800FF8131FE41656306087102500023B8907360471271", "Debit card (Germany): Deutsche Kreditbank (DKB), ec-cash, (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, + { "3BFF1800FF8131FE4165631116710156000F0308B09957115B", "Debit card Sparkasse (Germany) (Bank)" }, + { "3BFF1800FF8131FE4165631116710156000F0902904E5711AC", "German Bank Card IDEMIA 9 Maestro/Girocard (Sparkasse S-Payment TPY 1974693D) (Bank)" }, + { "3BFF1800FF8131FE4165631116710156000F0908309A5711D2", "Bank card from German Bank 'Sparkasse', issued by manufacturer 'S-Payment GmbH' (Bank)" }, + { "3BFF1800FF8131FE4165631116710156000F16082024571163", "German Sparkasse with visa (Bank)\nhttps://www.sparkasse.de/lp/echtesmultitalent.html#alle-funktionen" }, + { "3BFF1800FF8131FE450031C573C00180547615020105900074", "SIGILANCE NFC OpenPGP Smart Card (JavaCard)\nhttps://www.sigilance.com/" }, + { "3BFF1800FF8131FE455448434331305445434F4744484E3224", "National Health Insurance Card, Taiwan" }, + { "3BFF1800FF8131FE455448434331305445434F4744494E3126", "National Health Insurance Card, Taiwan" }, + { "3BFF1800FF8131FE4565630D0450028000089009700005002A", "Landesbank baden-Wurttemberg Geldkarte" }, + { "3BFF1800FF8131FE4565630D07630528000D90810600061558", "Geldkarte/HBCI (Frankfurter Sparkasse, Germany)" }, + { "3BFF1800FF8131FE4565630D07630764000D........0615..", "Giesecke & Devrient GmbH\nROM Mask=SDP2G330.E_1 (BES0), SWP2G370.E_1 (CS0)\nInit-Table=ecD6.3\nSignaturerstellungseinheit ZKA TUVIT.09397.TU.03.2005 Banking Signature Card, v6.31 NP, Type 3\nTUVIT.09397.TU.03.2005" }, + { "3BFF1800FF8131FE4565630D07630764000D9058450006158C", "Stadtsparkasse Munchen electronic cash card / Geldkarte" }, + { "3BFF1800FF8131FE4565630D07630764000D907307000615E5", "Sparkasse Acchen HBCI Geld Karte" }, + { "3BFF1800FF8131FE4565630D07630764000D907432000615D7", "German HBCI-Banking Card with 'Geldkarte' from the bank 'Sparkasse Marburg-Biedenkopf'" }, + { "3BFF1800FF8131FE4565630D07630764000D90926100061562", "Geldkarte (Frankfurter Sparkasse, Germany)" }, + { "3BFF1800FF8131FE4565630D08650764000D........0616..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.5\nInit-Table=SWP3G5J0.E_1 (CS0)\nSignaturerstellungseinheit ZKA Banking Signature Card, v6.51\nTUVIT.93129.TU.03.2006" }, + { "3BFF1800FF8131FE4565630D08650764000D9104900006160E", "German Railway's (Deutsche Bahn AG) 'Konzernausweis'" }, + { "3BFF1800FF8131FE4565630D0C760764000D9581200007300F", "Master Card Credit Card issued by WGZ bank (all german volksbank institutes use them)" }, + { "3BFF1800FF8131FE4565630D0C760764000D960361000730CF", "VR-Networld-Card with SECCOS-chip / Volksbank eG Konstanz\nfor Online-Banking (FinTS / HBCI-3.0 + EBICS; RD 01/12 NetWorld)" }, + { "3BFF1800FF8131FE456563110350028000082770020605018A", "old banking card (electronic-card / Maestro / Geldkarte) of the\n'Volksbank Gelderland eG' (around 2003)" }, + { "3BFF1800FF8131FE4565631105400250001055100303050043", "belongs to a banking card (electronic-card / Maestro / Geldkarte).\nthe bank calls it 'VR-BankCard'. the banks name is 'Volksbank\nGelderland eG' and is part of the 'Volksbanken und Raiffeisenbanken'\nhttp://www.vb-gelderland.de/html/5/2394/rubrik/1282.html" }, + { "3BFF1800FF8131FE45656311064002500010........0500..", "Gemplus-mids GmbH,\nROM Mask=ZKA 322 V5A,\nInit-Table=SWI1P070.E_0 (CS0),SDI1P080.E_1 (BES0),\nSignaturerstellungseinheit ZKASignaturkarte v5.02,\nTUVIT.09385.TU.09.2004" }, + { "3BFF1800FF8131FE4565631106400250001005500310050043", "HBCI-Karte (Bordesholmer Sparkasse, Germany)" }, + { "3BFF1800FF8131FE4565631106400250001019100420050028", "Stadtsparkasse Munchen HBCI card / Geldkarte" }, + { "3BFF1800FF8131FE4565631106400250001025600512050057", "Geldkarte/HBCI(DDV-1) (Stadtsparkasse Vorpommern, Germany)" }, + { "3BFF1800FF8131FE4565631106400250001027300216050006", "GeldKarte from Sparkasse bank" }, + { "3BFF1800FF8131FE4565631106400250001027800325050084", "Volksbank VR-BankCard (GeldKarte)" }, + { "3BFF1800FF8131FE456563110640025000102850011105006D", "HBCI Bancing Card of Sparkasse Pforzheim" }, + { "3BFF1800FF8131FE45656311066202800011........0613..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.2,\nInit-Table=SDI1G280.E_1 (BES0),\nSignaturerstellungseinheit ZKA Banking Signature Card, v6.2b NP & 6.2f NP, Type 3\nTUVIT.09395.TU.01.2005" }, + { "3BFF1800FF8131FE4565631106620280001106600304061387", "Geldkarte (Volksbank Offenburg, Germany)" }, + { "3BFF1800FF8131FE45656311066202800011165005170613B2", "FinTS (BBBank Karlsruhe, Germany)" }, + { "3BFF1800FF8131FE456563110662028000112090030906135C", "Geldkarte [ec, Maestro] (1822 direkt Frankfurter Sparkasse, Germany)" }, + { "3BFF1800FF8131FE45656311066202800011435001170613E3", "EC-Card of Sparkasse Pforzheim Calw" }, + { "3BFF1800FF8131FE45656311075102500010728000020620C6", "Maestro Card Deutsche Kredit Bank (DKB) / Germany" }, + { "3BFF1800FF8131FE45656311076402800011........0619..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.4\nInit-Table=SDI2G4G0.E_4 (BES0), SWI2G4H0.E_2 (CS0)\nSignaturerstellungseinheit ZKA 17.01.2006 Banking Signature Card, v6.4\nTUVIT.93123.TU.01.2006" }, + { "3BFF1800FF8131FE45656311084302500010........0530..", "Gemalto\nROM Mask=ZKA 680 V5A\nInit-Table=SSI3P3M6E_1 (MS0)\nMassen-Signaturerstellungseinheit ZKA Banking Signature Card, Version 5.11M\nTUVIT.93148.TU.06.2007" }, + { "3BFF1800FF8131FE4565631108430250001046500108053027", "HBCI-Karte (Sparkasse Altmark-West, Salzwedel, Germany)" }, + { "3BFF1800FF8131FE45656311084302500010847001040530C9", "HBCI Card (1822 direkt Frankfurter Sparkasse, Germany) Geldkarte [ec, Maestro]" }, + { "3BFF1800FF8131FE45656311086602800011........0620..", "Giesecke & Devrient GmbH\nROM Mask=ecD6.6\nInit-Table=SDI3G6G0.E_3 (BES0), SSI3G6M0.E_2 (S0), SWI3G6H0.E_3 (CS0)\nSignaturerstellungseinheit ZKA Banking Signature Card, Version 6.6\nTUVIT.93130.TU.05.2006 - 2. Nachbestatigung" }, + { "3BFF1800FF8131FE45656311086602800011405003180620D4", "banking card (electronic-card / Maestro / Geldkarte). the bank+calls\nit 'S-Card' or 'Sparkassen-Card'. the banks name is 'Stadtsparkasse\nDuesseldorf' and is part of the 'Sparkassen-Finanzgruppe' (a finance\ngroup, network of local banks)." }, + { "3BFF1800FF8131FE4565631108660280001156000318062092", "Geldkarte [ec, Maestro] (Sparkasse Langen-Seligenstadt, Germany)" }, + { "3BFF1800FF8131FE4565631901500280000F........0512..", "SAGEM ORGA GmbH\nROM Mask=SecV1.5.3\nInit-Table=SDR0O1G0.A_B (BES0), SWR0O1H0.A_5 (CS0)\nSignaturerstellungseinheit ZKA SECCOS Sig v1.5.3\nBSI.02076.TE.12.2006" }, + { "3BFF1800FF8131FE4565631A01410250001052090567051021", "Maestro/Geldkarte (BBBank Karlsruhe, Germany)" }, + { "3BFF1800FF8131FE55006B02090200010101434E531031809F", "Carta Nazionale dei Servizi - InfoCamere" }, + { "3BFF1800FF8131FE55006B0209020001010144534410318092", "Postcom S.P.A. (digital certificate)" }, + { "3BFF1800FF8131FE55006B02090200011101434E531031808F", "Carta Regionale dei Servizi - Regione Lombardia" }, + { "3BFF1800FF8131FE55006B02090200011101434E531131808E", "Infocamere CNS" }, + { "3BFF1800FF8131FE55006B02090300011101434E531131808F", "Card description: Multiservice Card - CMCC - Arma Carabinieri (Carta Multiservizi)" }, + { "3BFF1800FF8131FE55006B02090303010101434E531031809D", "Aruba CNS for Regione Toscana (IT)\nhttp://www.regione.toscana.it\nAruba CNS for Infocamere (the Chambers of Commerce)" }, + { "3BFF1800FF8131FE55006B0209030301010144534410318090", "Postecert (www.postecert.it) to legally sign documents" }, + { "3BFF1800FF8131FE55006B02090303011101434E531131808C", "Infocert 1205* smart card\nUniversita' Degli Studi di Torino (Infocert)" }, + { "3BFF1800FF8131FE55006B0209040301010144534410318097", "J-Sign (STMicroelectronics S.r.l. - Incard Division) (JavaCard)" }, + { "3BFF1800FF8131FE55006B02091300024954494420203180D3", "electronic identity card (PKI)" }, + { "3BFF1800FF8131FE55006B02091301011101434E531131809E", "Service card of the Ministry of Defense of Italy" }, + { "3BFF1800FF8131FE55006B0209130301000150534510318094", "Italian Electronic ID Card (eID)\nhttp://www.interno.gov.it/mininterno/site/it/temi/servizi_demografici/scheda_006.html" }, + { "3BFF1800FF8131FE55006B02091303010101434E531031808D", "Aruba Digital Signature (Other)\nhttps://www.pec.it/offerta-firma-digitale.aspx" }, + { "3BFF1800FF8131FE55006B02091303011101434E531131809C", "Politecnico di Torino Student Card (eID)\nhttp://www.polito.it/" }, + { "3BFF1800FF8131FE55006B02091617011101434E531131808D", "Carta Regionale dei Servizi - Regione Autonoma Friuli Venezia Giulia (HealthCare)\nhttps://www.regione.fvg.it/rafvg/cms/RAFVG/GEN/carta-regionale-servizi/" }, + { "3BFF1800FF8131FE55006B02091717011101434E531131808C", "european health insurance card and Regional (ItalY - Provincia Autonoma di Trento) Service Card (CPS) (eID)\nhttps://www.provincia.tn.it/Servizi/Attivare-la-Carta-Provinciale-dei-Servizi-CPS#cos_e" }, + { "3BFF1800FF8131FE55006B42495434494420312E3000900091", "Touch&Sign 2048 (PKI)" }, + { "3BFF1800FF8131FE55006B42495434494420322E3000900092", "Izenpe Green Card (Citizen Certificate) (eID)\nhttp://www.izenpe.com/s15-12020/en/contenidos/informacion/ciudadano/en_def/index.shtml" }, + { "3BFF1800FFC10A31FE55006B0508C805011101434E531031800C", "Carta Regionale dei Servizi - Regione Lombardia" }, + { "3BFF1800FFC10A31FE55006B0508C809011101434E5310318000", "Carta regionale dei servizi - Regione Sicilia\nhttp://www.regione.sicilia.it/crs/index.asp" }, + { "3BFF1800FFC10A31FE55006B0508C80A011101434E5310318003", "Carta Regionale dei Servizi - Regione Lombardia" }, + { "3BFF1800FFC10A31FE55006B0508C80C011101434E5310318005", "Healthcare card (TS-CNS) - Provincia Autonoma di Trento\nUnified Healthcare card (TS-CNS) - Repubblica Italiana" }, + { "3BFF32000010808031E05B4742500000000000000255", "UK NatWest BT PayToView Mondex" }, + { "3BFF6700008131FE45FF43727970746E6F784649444F32305F", "Fast Identification Online card (FIDO2) from Cryptnox manufacturer (Other)\nhttps://www.cryptnox.ch" }, + { "3BFF9100FF918171FC40000A654B5450304432654B5450043D5B62", "Indonesian eID (eID)" }, + { "3BFF94000000434D425F55425369676E3030303215", "UBS Access Card used for online banking with UBS in Switzerland.\nIt resides in a calculator like token, that is used for a challenge\nresponse when logging in." }, + { "3BFF940000400A80310073122113574A330E01314100", "O2 Loop SIM card" }, + { "3BFF940000400A80310073122113574A330E02314100", "GSM-SIM Beeline RU (Telecommunication)\nhttp://beeline.ru" }, + { "3BFF940000400A80310073122113574A330E02324100", "Turkcell SIMPlus64 / Turkey" }, + { "3BFF940000400A80310073122113574A330E10314100", "GSM SIM MEDIONmobile (MVNO) the Netherlands (Telecommunication)" }, + { "3BFF940000801F478031E073FE210000000000830F900052", "Telecommunication SIM (Telecommunication)" }, + { "3BFF9400008131804380318065B0850201F3120FFF82900079", "Serbian Identity Card (eID)\nJava Card (Sealys MultiApp ID v2.1) supporting Global Platform 2.1.1" }, + { "3BFF9400008131FE4380318065B0846160FB120FFD8290000E", "IDPrime 930 FIPS Level 3 (T=1 CT=94) (BAI4) (PKI)" }, + { "3BFF9400008131FE4380318065B085040011120FFF829000E2", "DPI Card ID Guatemala Version 2018 (eID) (eID)\nhttps://www.renap.gob.gt" }, + { "3BFF940000C00AB1FE491F438031E073F62113573436434132302068", "Sonera UICC (Telecommunication)" }, + { "3BFF9400FF400A80310073122113574A332009314100", "Globul GSM operator card (Bulgaria) (Telecommunication)" }, + { "3BFF9400FF80B1FE451F030068D276000028FE052231800090001E", "Alice Business card (to be used in the modem supplied by an Italian provider)" }, + { "3BFF9400FF80B1FE451F030068D276000028FF051E318000900023", "D-Trust Signature Card (www.d-trust.net):\n- Citizencard of the People of Ulm in Germany (Burgerkarte)\n- Qualified Electronic Signature Card (Qualifizierte Signaturkarte)" }, + { "3BFF9400FFC00A1F438031E073362113574A43491C3130321C", "Giesecke & Devrient - UniverSIM Pegasus" }, + { "3BFF9400FFC00A1F478031E073F62113574A33200B314141D4", "SIM (Telecommunication)" }, + { "3BFF950000400A80310073122113574A330E10314100", "Verizon GSM SIM (Telecommunication)" }, + { "3BFF9500008031FE4380318067B0850201F3A3018301900045", "Swedish digital tachograph driver smart card (Other)\nhttps://www.transportstyrelsen.se/sv/vagtrafik/Yrkestrafik/Kor--och-vilotider/Fardskrivare/ansokan-om-forarkort/" }, + { "3BFF9500008031FE4380318067B0850201F3A3048301900040", "Company Card for authentication in tachograph applications (Other)\nhttps://ec.europa.eu/transport/modes/road/social_provisions/tachograph/tachonet_en" }, + { "3BFF9500008031FE4380318067B0850201F3A3138301900057", "Driver's Card (Tachograf card) issued by pwpw Poland (Transport)\nhttps://www.pwpw.pl/en/Products/Cards/Cards.html" }, + { "3BFF9500008031FE4380318067B0850201F3A3138301F83BFF", "UK Drivers Tachograph Card (Transport)" }, + { "3BFF950000C00A1F438031E073362113574A330E0231410088", "'BASE' SIM card; BASE is a german mobile phone operator, which is a brand of E-Plus, Germany." }, + { "3BFF95000150801C444E41535034323020526576533430", "Nagra card Canal+ (Polish TV provider) (Pay TV)\nhttps://pl.canalplus.com/" }, + { "3BFF95000150801C444E41535034323020526576533430F1", "NC+ Polland (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, + { "3BFF95000150801C444E41535034323020526576533430F15D", "NC+ Polland (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, + { "3BFF95000150801C444E41535034323020526576533441", "Platforma Canal+ Polska, cayman card (Pay TV)\nhttps://www.flysat.com/canalplus-pl.php" }, + { "3BFF9500FF400A803100731A2113574A504860314147", "Vodafone 64 KB SIM with Javacard" }, + { "3BFF9500FF400A8031E873F62113674A474860314200", "Giesecke & Devrient STARSIM" }, + { "3BFF9500FF50801C444E41535034303020526576493431", "Pay TV card nc+ polish (seca with merlin layer) (Pay TV)\nhttp://www.flysat.com/ncplus.php" }, + { "3BFF9500FF50801C444E41535034303020526576493435", "Decoder card for VOO TV distributer in Belgium (Pay TV)" }, + { "3BFF9500FF50801C444E41535034303020526576493439", "Big TV India (Pay TV)\nhttps://www.lyngsat.com/packages/Big-TV.html" }, + { "3BFF9500FF50801C444E41535034303020526576493441", "Pay TV - NC+ in Poland (Pay TV)\nhttp://ncplus.pl/" }, + { "3BFF9500FF50801C444E41535034303020526576493447", "Platforma Canal+ Polska, cameleon card (Pay TV)\nhttps://www.flysat.com/canalplus-pl.php" }, + { "3BFF9500FF50801C444E4153503430302052657649344A", "Sat Tv (Nagra) (Pay TV)" }, + { "3BFF9500FF50801C444E41535034303020526576493548", "Canal+ France Nagra3 (Pay TV)\nhttps://www.canalplus.com/" }, + { "3BFF9500FF50801C444E41535034383220526576523038", "CANALSAT, mediaguard key (Pay TV)" }, + { "3BFF9500FFC00A1F438031E073362113574A3320073341411F", "Swisscom 3G SIM card" }, + { "3BFF9500FFC00A1F438031E073F62113574A334857314141E5", "MTNL 3G USIM (India)" }, + { "3BFF9500FFC00A1F438031E073F62113574A334861324147D6", "GSM SIM (issued by e-plus, Germany)" }, + { "3BFF9500FFC00A1F438031E073F62113574A554860324100F6", "GSM SIM from O2 Germany (UMTS ready) from 2005" }, + { "3BFF9500FFC00A1F478031E073F62113574A33200B314141D5", "Telenor SIM card (Norway)" }, + { "3BFF9600008031FE45536D40727443616665204578702E374E", "haruka (eID)" }, + { "3BFF9600008131804380318065B0850300EF12026C829000F9", "Authorization Card (eID)" }, + { "3BFF9600008131804380318065B0850300EF120FFF82900067", "Greek Academic ID (eID)\nhttp://academicid.minedu.gov.gr/" }, + { "3BFF9600008131804380318065B0850300EF12FFFE82900096", "Gematlo IDCore 8030 (JavaCard)" }, + { "3BFF9600008131804380318065B08503010F120FFF82900086", "Azerbaijan Republic National Identity Card (eID) (eID)\nhttps://www.mia.gov.az/" }, + { "3BFF9600008131804380318068B0850300EF780100829000F1", "Cameroon National Identity Card (eID)" }, + { "3BFF9600008131FE4380318065B0845651101201788290006A", "SafeNet eToken 5300 (PKI)" }, + { "3BFF9600008131FE4380318065B08456511012021082900001", "Nedap NexS N:Secure (eID)\nhttps://www.nsecure.nl/nl/" }, + { "3BFF9600008131FE4380318065B0846160FB120FFD8290000C", "IDPrime 930 FIPS Level 2 (T=1 CT=96) (BAI3.1) (PKI)" }, + { "3BFF9600008131FE4380318065B0846566FB12017882900085", "eToken 5110+ FIPS 140-2 Level 2 (JavaCard)" }, + { "3BFF9600008131FE4380318065B0846566FB120FFC8290000F", "SmartID 3930 FIDO Contact and Contactless card (PKI)\nhttps://www.smartcardfocus.com/shop/ilp/id~962/safenet-idprime-3930-fido-dual-interface-fips-l2/p/index.shtml" }, + { "3BFF9600008131FE4380318065B0846669FB12FFFE829000F1", "IDCore3230 build 6.8, test APDU applet (JavaCard)" }, + { "3BFF9600008131FE4380318065B085040011120FFF829000E0", "Pakistan National identity card (eID)" }, + { "3BFF9600008131FE4380318065B085040120120FFF829000D0", "Portuguese National Identity Card (eID) (eID)\nhttps://www.autenticacao.gov.pt/o-cartao-de-cidadao" }, + { "3BFF9600008131FE4380318065B085050011120FFF829000E1", "Portuguese autentication card (eID)\nhttps://www.autenticacao.gov.pt/web/guest/cc-aplicacao" }, + { "3BFF9600008131FE4380318065B08505003912017882900040", "Identicard for french advocates (eID)\nhttps://doc.ubuntu-fr.org/avocats_sur_ubuntu" }, + { "3BFF9600008131FE4380318065B0855956FB12017882900088", "SafeNet 5110 token for eSignature (eID)\nhttps://www.certsign.ro/en/support/safenet-installing-the-device-on-windows/" }, + { "3BFF9600008131FE4380318065B0855956FB120FFC82900002", "THALES SafeNet IDPrime 3940 Fido (PKI)\nhttps://cpl.thalesgroup.com/fr/resources/access-management/idprime-3940-product-brief" }, + { "3BFF9600008131FE4380318065B0855956FB120FFE82900000", "SafeNet eToken 5110 SC (PKI)\nhttps://cpl.thalesgroup.com/access-management/authenticators/pki-usb-authentication/etoken-5110-usb-token" }, + { "3BFF9600008131FE4580F9A0000003080000100053454E54AC", "cac (eID)" }, + { "3BFF9600008131FE55006B02090403010101434E53103180EB", "Aruba PEC SpA digital signature card made by Incard (eID)\nhttps://www.pec.it/download-software-driver.aspx" }, + { "3BFF960000C00A31FE4380318065B085040011120FFF829000AB", "French National Identity Card (eID) (eID)\nhttps://www.interieur.gouv.fr/actualites/actu-du-ministere/nouvelle-carte-nationale-didentite" }, + { "3BFF9600FF8131FE406563111562025000100A0190A90730BF", "girocard Sparkasse Ansbach, Germany BLZ 76550000 (Bank)" }, + { "3BFF9600FF8131FE406563111562025000100A0271500730A4", "Debitcard Sparkasse Duesseldorf (Bank) (Bank)\nhttps://www.sskduesseldorf.de/" }, + { "3BFF9600FF8131FE406563111665025000100B22BBEB074080", "girocard contactless (Bank)" }, + { "3BFF9600FF8131FE4065631D02840156001F190850E10200EF", "Raiffeiesenbank Girocard Maestro (Bank)" }, + { "3BFF9600FF8131FE4065631D02840156001F2108B0A902007F", "Debit Card Sparda-Bank Baden-Wurttemberg eG (Bank)" }, + { "3BFF9600FF8131FE4065631D028401560024090A10CC0200AB", "Postbank Germany (Bank)\nhttps://www.postbank.de/privatkunden/services.html" }, + { "3BFF9600FF8131FE4065631D028402500023010A60D40200C9", "DKB Girocard (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, + { "3BFF9600FF8131FE4065631D0284025000230308C0B702000A", "German Debitcard from Sparkasse (Bank)" }, + { "3BFF9600FF8131FE4065631D0284025000230709E0F9020061", "Sparkasse Ingolstadt (Bank)" }, + { "3BFF9600FF8131FE4065631D0284025000231208A0EB020027", "Girocard (Bank)" }, + { "3BFF9600FF8131FE4065631D028402500023140710B80200CD", "Sparkasse Aachen - german Maestro/Girocard (S-Payment TGI 50380969) (Bank)" }, + { "3BFF9600FF8131FE4065631D028402500023150860DC0200D7", "Deutsche Kreditbank AG, Girocard (Bank)\nhttps://www.dkb.de" }, + { "3BFF9600FF8131FE4065631D028402500023160BB0C102001A", "debit card (Bank)" }, + { "3BFF9600FF8131FE4065631D0284025000232106F0ED02004C", "DKB Girocard (Bank)" }, + { "3BFF9600FF8131FE4065631D028402500023230900A80200F4", "Kreissparkasse girocard (Bank)" }, + { "3BFF9600FF8131FE4065631D038601560002130B90FE011034", "EC card from Raiffeisenbank im Hochtaunus, Germany (Bank)" }, + { "3BFF9600FF8131FE4065631D0386025000230808914F0110B8", "Debit card (Germany): ec-cash, GeldKarte(EUR), Visa, Cirrus (Bank)" }, + { "3BFF9600FF8131FE4065631D038602500023130981390110C4", "girocard contactless (Bank)" }, + { "3BFF9600FF8131FE456563060752025000103025411A064082", "DKB (Deutsche Kreditbank) girocard (V-PAY, GeldKarte) (Bank)\nhttps://www.dkb.de/privatkunden/karten/girocard" }, + { "3BFF9600FF8131FE4565630D09710764000D00035450070181", "Commerzbank ServiceCard / Maestro / GeldKarte / Cirrus / girocard / CashGroup / electronic cash" }, + { "3BFF9600FF8131FE4565631901500280000F002B0046501172", "Sparkasse Bremen Germany HBCI DDV" }, + { "3BFF9600FF8131FE4565631901500280000F002F0025501115", "German Postbank Giro card with electronic cash, Maestro, GeldKarte features" }, + { "3BFF9600FF8131FE4D8031E06B0431050277555555555555EA", "IRMA card (eID)\nhttp://irmacard.org" }, + { "3BFF9600FF8131FE55006B02090403010101434E5310318014", "JavaCard Bit4Id (JavaCard)" }, + { "3BFF9600FF918131FE4D8031E06B043105027555555555555579", "algeria national identity card (eID)" }, + { "3BFF9600FFC00A1F438031E073362113574A43491C3130321E", "Giesecke & Devrient - UniverSIM Pegasus" }, + { "3BFF9600FFC00A31FE4D8031E06B04200502585555555555559F", "MULTOS (Other)" }, + { "3BFF9600FFC00A31FE4D8031E06B04310502A85555555555557E", "Multos (Other)" }, + { "3BFF9700008131FE4380318065B0846160FB120FFD8290000D", "IDPrime 3930 FIPS Level 3 (T=1 CT=97) (BAI6) (PKI)" }, + { "3BFF9700008131FE4380318065B08466693912FFFE82900032", "IDCore3230 build 6.8, test APDU applet (JavaCard)" }, + { "3BFF9700FFC00A31FE4D8031E06B04520502BB5555555555550F", "MULTOS Dual Interface Card - MC4-P23-S1 (Other)" }, + { "3F05DC20FC0001", "DigiCash Facility Card" }, + { "3F28000011140003689000", "SIMEMU - a DIY GSM SIM card\nhttp://simemu.cjb.net/" }, + { "3F2D0027A051827D00000052000C9000", "Porta Moedas Multibanco (Portugeese electronic purse)" }, + { "3F2F0036AF690204018000000A0E833E9F16", "SIM Card GSM (Telecommunication)" }, + { "3F2F008059AF0201013000000A0E83069F12", "Gemplus GemXplore" }, + { "3F2F008059AF02010230000C0A0E831E9F16", "GSM-SIM (900MHz) card of the carrier 'Mannesmann Mobilfunk' for\ntheir network 'D2-Privat' - now known as Vodafone Mobilfunk\nhttp://www.vodafone.de/" }, + { "3F2F008069AE0202013600000A0E833E9F16", "GSM-SIM e-plus (1800MHz)" }, + { "3F2F008069AF0204013600000A0E833E9F16", "Telia Mobitel GSM (Telecommunication)" }, + { "3F2F008069AF0204013600020A0E833E9F16", "GSM-SIM D2 CallYa (900MHz)" }, + { "3F2F008069AF0307015900000A0E833E9F16", "Nokia SIM Ph2 16K Ver2.0" }, + { "3F2F008069AF0307015900130A0E833E9F16", "Old Spanish Telefonica Movistar GSM SIM card manufactured by Gemplus" }, + { "3F2F008069AF0307015900240A0E833E9F16", "dialog romania now orange (Telecommunication)\nhttps://orange.ro" }, + { "3F2F008069AF0307035200000A0E833E9F16", "GemXplore 98 V1 16K" }, + { "3F2F008069AF03070352000D0A0E833E9F16", "GSM-SIM Debitel D2 (900MHz)" }, + { "3F2F008069AF0307035A00150A0E833E9F16", "Virgin Mobile SIM (Gemplus)" }, + { "3F36110053495B015153", "Sodexo Pass Lunch Card. An employee benefits card to provide meal tickets to workers. (Other)\nhttps://www.sodexo-benefits.it/prodotto/aziende/pausa-pranzo-aziende/pass-lunch-card/#tabsoluzioni" }, + { "3F3BF81300008131FE454A434F5076", "District6 Group employee ID (eID)" }, + { "3F3D1100806728500402200000838E9000", "GSM SIM card of the Austrian provider A1" }, + { "3F3E110046524543434941524F5353419000", "Trenitalia (Italy) fidelity card 'CartaFreccia' (Smartcard)" }, + { "3F3F94008069AF0307015900000A0E833E9F16", "Finnish SIM card from 'Radiolinja' now 'Elisa'" }, + { "3F6525....046C90.0", "Carte Bancaire (French banking card)" }, + { "3F65250024096B9000", "Old Postgirot/Plusgirot SmartSec bank ID card (Bank)" }, + { "3F65250024096E9000", "Oberthur Bull CP8 smart card. Russian 'Pochtovyj Bank' (Bank)" }, + { "3F6525002B09629000", "Coinamatic SmartyCity smartcard" }, + { "3F6525002B09699000", "Municipal parking meter card for the City of St. John's, NL, Canada.\nhttp://www.stjohns.ca/index.jsp" }, + { "3F6525002B09EB9000", "Bull Scot 5" }, + { "3F6525002[2C]09[F6]99000", "Sesam Vitale (French health card)" }, + { "3F65250052096A9000", "French carte Vitale" }, + { "3F6525005343689000", "'Flying Cow'- russian pirate CAM-card. (Pay TV)\nhttp://mxc.do.am/publ/collection/viewing_card_smart_karty_sputnikovogo_veshhanija/flying_cow_smart_card/13-1-0-25" }, + { "3F652500A[34]096A9000", "Sesam Vitale (French health card)" }, + { "3F6525082204689000", "France Telecom card (ex Pastel card)" }, + { "3F6525082304689000", "France Telecom card" }, + { "3F6525083304209000", "D-Trust card" }, + { "3F65250843046C9000", "CB visa La Poste France (Oberthur)\nCB visa Societe Generale France (Oberthur)" }, + { "3F65250863046C9000", "CB visa La Poste France (Oberthur)\nCB Master Carte du Credit Mutuel" }, + { "3F65250865046C9000", "CB visa Boursorama France (Axalto)" }, + { "3F6535100.04[6,E]C9000", "Postcard (Switzerland)" }, + { "3F6535100104EC9000", "Old Swiss Postbank card (Bank)" }, + { "3F6535640104689040", "Bull AFNOR-positioned microprocessor chip card 'Carte Pastel Internationale' by France Telecom (Other)\nhttp://phonecards.free.fr/carte_pastel.htm" }, + { "3F6535640204689040", "Carte Pastel Nationale - nominal France Telecom service card with Bull CP8 chip in AFNOR position (Other)" }, + { "3F65356402046C9040", "Postcard (Switzerland)" }, + { "3F6725002120000F689000", "Smart Builder 'your kit for PC/SC applications' and Bull\nhttp://www.cp8.bull.net/" }, + { "3F6725002120000F789000", "Bank Nederlandse Gemeenten, BNG Data Services" }, + { "3F67250026140020689000", "Pay-TV card from Casema Cable Television, Netherland" }, + { "3F6725002A20000F689000", "Carte Grand Voyageur (SNCF: French train company)" }, + { "3F6725002A200040689F00", "Swiss Cash card\nChipknip SNS Bank (banking card)" }, + { "3F6725002A200041689000", "ChipKnip" }, + { "3F6725002A20004[01]689000", "Dutch ChipKnip, Proton\n(chip Bull CC 60 V1, Bull CC 60 V2 or Bull CC 1000)" }, + { "3F67250421200007689000", "Philips TB100 (C-MOS chip)" }, + { "3F672F0011140001689000", "FilmNet(Sweden, 1984-1997) (Pay TV)" }, + { "3F672F0011140003689000", "D2MAC/Eurocrypt (Pay TV)" }, + { "3F672F0411200000689000", "BULL HN ITALIA 06/92 - 100.000 - 64MP\nLa Sapienza - Universita' di Roma" }, + { "3F69000024AF01700101FF9000", "French GSM SIM card (900MHz)" }, + { "3F69000025AF01700103FF9000", "French Gift Card (Loyalty)" }, + { "3F6A000000640150010C820101A9", "Credit Card cafe Selecta" }, + { "3F6B150002A007906F4D59000C9000", "Sky Viewing Card (Gen 1) from 1990s (Pay TV)" }, + { "3F6C000024A03000FF00000100049000", "Gemplus MCOS 16K DES Sample Card" }, + { "3F6C000025A0308976000001030C9000", "MCOS 24Ko Gemplus (eID)" }, + { "3F6C000025A0308976000004010C9000", "MCOS 24k EEPROM" }, + { "3F6C000025A03100FF00000180049000", "Motorola Clone Card (Telecommunication)\nhttp://web.mclink.it/MK0750/Motorola_files/docuclon.txt" }, + { "3F6C00003CA0309E6100000100049000", "Gemplus - British Gas - Gascard" }, + { "3F6C00003CA030A758000001018C9000", "Rendezvous Series 7 (D2-Mac satellite TV card)" }, + { "3F6C00003DA030BE4100370100049000", "Sberbank (Bank)" }, + { "3F6D000080318065B00501025E83009000", "Gemplus GemXpresso 211PK or 211PK-IS" }, + { "3F6D000080318065B00501025E92009000", "Gemplus GemXpresso 32K" }, + { "3F7613250421B0114A5003", "DSS/DTV F (P1; first generation access card) (Pay TV)" }, + { "3F77130000C11400A2689000", "Boxer DTV Sweden (Pay TV)\nhttp://www.boxer.se" }, + { "3F77180000C11400A2689000", "Viacess card HRT (Hrvatska Radio Televizija)" }, + { "3F77180000C11401A2689000", "VIA 2.6 XXX (Pay TV)" }, + { "3F77180000C21400C1689000", "Viaccess Sexview" }, + { "3F77180000C2474000689000", "Viacces card: SRG SSR idee suisse" }, + { "3F77180000C27A4102689000", "Viacces card: SRG SSR idee suisse" }, + { "3F77180000C27A4202689000", "SCT (Via Access)" }, + { "3F77180000C27A4302689000", "DORCEL (Via Access)" }, + { "3F77180000C27A4402689000", "XXX Redlight_HD (Viaccess)" }, + { "3F77180000C2EB41026C9000", "Elite HD10+ (Pay TV)\nSatellite cryptoworks card - Smart card Viaccess (Telesat - belgium) (Pay TV)" }, + { "3F77180000C2EB45026C9000", "facetv (Other)" }, + { "3F77180000D38A4001649000", "Skylink Viaccess 5.0 (Pay TV)\nhttp://www.skylink.sk/" }, + { "3F77180000D38A4201649000", "Satellite decoder card for TV Vlaanderen (Other)\nhttps://www.tv-vlaanderen.be" }, + { "3F77180000DAAC4114649000", "Fransat PC7 (Pay TV)\nhttps://www.fransat.fr/" }, + { "3F7718250029140062689000", "Viaccess card" }, + { "3F7812250140B0034A50204855", "DSS/DTV H" }, + { "3F7813250340B020FFFF4A5000", "DSS/DTV P4" }, + { "3F7D11250241B00369FF4A50F08000565403", "Viasat Baltics Videoguard card (Pay TV)" }, + { "3F7E11250521B01200004D59000000534B0900", "Sky Viewing Card (Gen 9) (Pay TV)" }, + { "3F7E11250540B00800004D59000000534B0B07", "BSkyB Series 11 (DSS satellite TV card)" }, + { "3F7E11250540B00800004D59000000534B0B08", "Sky Series 11 (DSS satellite TV card)" }, + { "3F7E11250940B00100004D59000003534B0A01", "Sky Series 10 (DSS satellite TV card)" }, + { "3F7F11250333B00969FF4A507000005654010000", "Viasat Baltic (satellite card, NDS)" }, + { "3F7F11250540B00F69FF4D59000000534B0C0600", "Sky Series 12 (DSS satellite TV card)" }, + { "3F7F13250140B01069FF4A5001474C0000000000", "NDS Smartcard (Pay TV)" }, + { "3F7F13250240B00C69FF4A50C000005253000000", "Stream Italy NDS 1 (Pay TV)" }, + { "3F7F13250240B01269FF4A5090474C0000000000", "NDS VideoGuard GL23 Card (Sky Brazil) (Pay TV)\nhttps://en.wikipedia.org/wiki/VideoGuard" }, + { "3F7F13250240B01269FF4A509054560000000000", "NDS Smartcard (Pay TV)" }, + { "3F7F13250241B004FFFF4A508080000000475806", "NDS card DIRECTV (Other)" }, + { "3F7F13250241B00EFFFF4A508080000000474C07", "SKY BRASIL (Pay TV)" }, + { "3F7F13250333B00669FF4A50D000005359000000", "Sky 2005/6 (DSS satellite TV card)" }, + { "3F7F13250333B01169FF4A505000004956010000", "Indonesia Videoguard 2 card" }, + { "3F7F13250333B01169FF4A505000005344010000", "STAR TV (Pay TV)" }, + { "3F7F13250338B004FFFF4A500000294855......", "DSS/DTV HU" }, + { "3F7F13250340B00B694C4A50C000005359000000", "Sky Digital (DSS satellite TV card)" }, + { "3F7F13250540B01169FF4A500000004754000C00", "YES DBS Israel Videoguard 090C,090D" }, + { "3F7F15250333B01169FF4A505000004956010000", "Sky Germany V13 Smartcard (Pay TV)" }, + { "3F961880018051006110309F", "Atmel/Athena T0 Inverse Convention PC/SC Compliance Test Card No. 2" }, + { "3FEF00FF8131..456563", "Debit card (Germany): ec-cash, GeldKarte(DEM), Maestro, Cirrus" }, + { "3FFA1125040001B00200004D59008180", "Sky Viewing Card (Gen 1) from 1990s (Pay TV)" }, + { "3FFA1125050001B0023B364D59028090", "HackTV SKY11 PIC16F84 card (Other)\nhttps://github.com/captainjack64/hacktv" }, + { "3FFA1125050001B0023B404D59008180", "Sky Viewing Card (Gen 7) (Pay TV)" }, + { "3FFA1125050001B0023BD04D59008180", "Sky Viewing Card (Gen 7) (Pay TV)" }, + { "3FFD11250250000333B01569FF4A50F080034B4C03", "Kabel Deutschland G02 (Pay TV)" }, + { "3FFD11250250800F41B00A69FF4A507080005A4503", "Buypass smart card (Bank)\nhttps://www.buypass.no/bruker/buypass-id/buypass-smartkort" }, + { "3FFD11250250800F41B00D69FF4A50F08000565403", "Viasat (Pay TV)" }, + { "3FFD11250250800F41B00F69FF4A50F080005A4A03", "Telekom Romania Communications (DVB-C) (Pay TV)\nhttps://www.telekom.ro/" }, + { "3FFD13250250000F33B00F69FF4A50D00000535902", "Sky Digital (DSS satellite TV card) 2009 issue" }, + { "3FFD13250250000F33B01669FF4A50D08000535903", "Sky TV Multiroom (Pay TV)" }, + { "3FFD13250250800F..B0..69FF4A50D08000495403", "Sky (Italy) VideoGuard CAM card" }, + { "3FFD13250250800F33B008FFFF4A50900000474C01", "Sky (Brasil) VideoGuard CAM card" }, + { "3FFD13250250800F33B008FFFF4A50900000545601", "NDS Videoguard TV CAM card (Sky Mexico 0905) (Pay TV)\nhttps://en.wikipedia.org/wiki/VideoGuard" }, + { "3FFD13250250800F41B00A69FF4A50F00000503103", "Sky Germany V14 NDS card (Pay TV)\nhttp://www.wikipedia.org/wiki/Sky_Deutschland" }, + { "3FFD13250250800F41B00F69FF4A50F080005A4A03", "Orange Romania (DVB-C) (Pay TV)\nhttps://www.orange.ro/" }, + { "3FFD13250250800F55B00269FF4A50F08000503103", "SKY DE V15 (Pay TV)" }, + { "3FFD14250150000F33B00BFFFF4A50800000475801", "DirecTV card" }, + { "3FFD14250250800F41B00A69FF4A507080004E5A03", "Sky Network Televisiton Limited (New Zealand) card for new (2016) decoder. Reportedly, this is a Kaon NS1120-500 box. (Pay TV)\nhttp://www.sky.co.nz" }, + { "3FFD14250250800F41B00D69FF4A50F08000425203", "Airtel Digital TV (Pay TV)" }, + { "3FFD15250250000333B01569FF4A50F080034B4C03", "Kabel Deutschland (G02) (Pay TV)\nhttps://www.kabeldeutschland.com" }, + { "3FFD15250250800F41B00569FF4A50F00000415A03", "astro Pay TV Measat 91.5 E Caid: 0910 Provider: 000000" }, + { "3FFD15250250800F41B00A69FF4A50F00000503103", "Sky Germany [NDS|V14] (098C:000000) (Pay TV)" }, + { "3FFD15250250800F41B00D69FF4A50F08000414A03", "beIN Sports Arabia NDS (09B5:000000) (Pay TV)" }, + { "3FFD15250250800F41B00D69FF4A50F08000565403", "TVPLAY HOME (Pay TV)\nhttps://www.tvplayhome.lt/" }, + { "3FFD15250250800F55B00269FF4A50F08000503103", "Sky Germany [NDS|V15] (098D:000000) (Pay TV) (Pay TV)\nhttp://www.sky.de" }, + { "3FFDFF250250800F54B00469FF4A50D08000495403", "SKy italia (Pay TV)" }, + { "3FFE142503108041B00769FF4A5070804245544114", "OSN (Pay TV)\nhttps://www.osn.com" }, + { "3FFF112503108041B00669FF4A50700000415A010011", "Astro (Pay TV)\nhttp://www.astro.com.my" }, + { "3FFF112503108041B00769FF4A507000005031010011", "Sky (Germany) VideoGuard CAM card (www.sky.de)" }, + { "3FFF13250250800F54B003FFFF4A508000000000474C05", "Sky (Brasil) VideoGuard CAM card" }, + { "3FFF132503108033B00E69FF4A507000004954020000", "Sky entitlement card" }, + { "3FFF132503108033B01069FF4A507000004E5A010000", "NDS SKY NZ (Pay TV)" }, + { "3FFF13250B50000F33B00469FF4A50E000005335000000", "Stream TV (IP television) decoder card, provided by stream.ru ISP in Moscow" }, + { "3FFF13250B50000F33B00469FF4A50E000005438000000", "Stream TV (IP television) decoder card, provided by aon (Telekom Austria) TV card, contains Incorporated NDS Videoguard (TM) security system" }, + { "3FFF142503108033B01069FF4A507000004352010000", "Russian cable TV AKADO NDS Card (Pay TV)\nhttp://www.akado.ru/" }, + { "3FFF142503108033B01069FF4A507000005A45010000", "Norwegian DVB-C provider Get (www.get.no). NDS Videoguard security card." }, + { "3FFF142503108041B00169FF4A507000005356010000", "Tata Sky India Card (Telecommunication)" }, + { "3FFF142503108041B00169FF4A507000005A48010000", "'D-Smart' NDS from Turkie" }, + { "3FFF142503108041B00169FF4A507000005A4A010000", "Dolce by RomTelecom (Pay TV)" }, + { "3FFF142503108041B00169FF4A507000005A4B010000", "Pay TV, Viasat Ukraine" }, + { "3FFF142503108041B00269FF4A507000004252010000", "airtel (Pay TV)" }, + { "3FFF142503108041B00269FF4A50708000414F010014", "Pay TV" }, + { "3FFF142503108041B00769FF4A507080005844010014", "NDS vivacom Bulgaria card (Pay TV)\nhttps://www.vivacom.bg/bg/tv" }, + { "3FFF142503108041B00769FF4A5070800058440100FF", "Provider Vivacom Bulgaria NDS (Pay TV)\nhttp://www.vivacom.bg/en/satellite-services" }, + { "3FFF142503108041B00769FF4A507080005845010014", "Sat TV (Other)" }, + { "3FFF142503108054B00169FF4A507000004B57010000", "PayTV Card Kabel BW (www.kabelbw.de), Encryption: NDS by Videoguard, Distribution Standard: DVB-C" }, + { "3FFF152503108041B00769FF4A507000005031010015", "Sky (Germany) VideoGuard CAM card (www.sky.de) in Fast Mode (ins7e11=15) (Pay TV)" }, + { "3FFF3F3F3F3F003F3FFF3F3F3F3F3FFF3FFF953FFF953FFF", "Premium joker card to see Spanish TDT premium (goltv)" }, + { "3FFF9500FF918171..4700..4.4.....3.3.3.20..657.........", "Nagravision TV CAM card\nhttp://en.wikipedia.org/wiki/Nagravision" }, + { "3FFF9500FF918171..47004E434D45443.303.20526576..3.3...", "Mediaset Premium (Italy) CAM card" }, + { "3FFF9500FF918171644700444E41535030303320526576333233FF", "Satellite TV Card 'Via Digital' (Nagra)" }, + { "3FFF9500FF918171A04700444E4153503031302052657641323048", "DSS/DISH ROM10" }, + { "3FFF9500FF918171A04700444E4153503031302052657641323149", "PayTV card for DishNetwork Sat receiver\nhttp://www.dishnetwork.com/" }, + { "3FFF9500FF918171A04700444E4153503031312052657642", "NTL digital TV card (Nagravision)" }, + { "3FFF9500FF918171A04700444E415350303131205265764230364E", "Telewest Broadband (Nagravision)" }, + { "3FFF9500FF918171A04700444E415350303131205265764230423A", "NagraVision card for StarHub Digital Cable DVB-C Singapore" }, + { "3FFF9500FF918171A04700444E415350303131205265764230443C", "NagraVision card for Virgin Media in the UK" }, + { "3FFF9500FF918171A04700444E415350313830204D657230303028", "NagraVision (VG04) for Virgin Media (UK)\nNagraVision 3 for DigiTV (Romania)\nhttp://www.rcs-rds.ro/televiziune-digi-tv/satelit" }, + { "3FFF9500FF918171FE4700444E4153503131302052657641303114", "TVA Digital - Nagra Vision ID TV-01" }, + { "3FFF9500FF918171FE4700444E4153503131302052657641303712", "UPC Austria/UPC-Cablecom Switzerland, digital television encryption card\nhttp://www.upc-cablecom.ch/" }, + { "3FFF9500FF918171FE4700444E4153503131302052657641323215", "UM01 card from German Unitymedia cable TV provider" }, + { "3FFF9500FF918171FE4700444E4153503131302052657641343514", "Telenet N.V. HDTV Decoder Card Belgium" }, + { "3FFF9500FF918171FE4700444E4153503131302052657641433365", "Brazilian NET Digital (Cable TV provider) - Nagra Vision 'NASP110 RevA01'" }, + { "3FFF9500FF918171FE4700444E4153503134322052657647303216", "Polsat Nagra3\nBrazil - Claro TV Nagra3 Red" }, + { "3FFF9500FF918171FE4700444E4153503134322052657647303410", "Nagra 3 Card - Telefonica Brazil Green" }, + { "3FFF9500FF918171FE4700444E4153503134322052657647303612", "UM02 card from German Unitymedia cable TV provider" }, + { "3FFF9500FF918171FE4700444E4153503134322052657647433463", "HD+ card used by the satellite company astra for decryption of the HDTV channels of RTL, VOX, Sat1 and ProSieben. Nagravision V3 is used for the encryption." }, + { "3FFF9500FF918171FE4700444E415350313830204D65724A30320E", "Nagra 3 Digital Plus Spain" }, + { "3FFF9500FF918171FE4700444E415350314130204D65725332336D", "Ziggo (Pay TV)" }, + { "3FFF9500FF918171FE4700444E41535032343120447368", "DISH Network G3 (Pay TV)" }, + { "3FFF9500FF918171FE4700444E415350323431204473684830390C", "Dish Network Smart Card (Pay TV)" }, + { "3FFF9500FF918171FE47004E434D4544303041205265764130316C", "Mediaset Premium (Italy) 2013" }, + { "3FFF9500FF918171FE47004E434D4544303043205265764330306D", "Mediaset Premium rechargeable (Pay TV)\nhttp://www.mediasetpremium.it/" }, + { "3FFF9500FF918171FE47005449474552363031205265764D383013", "Spanish pay TV card for GOLTV" }, + { "3FFF9500FF918171FE5700444E415350314230204D657257323079", "Vodafone HUNGARY (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651323113", "Nagravision D08 / KD-31 Vodafone Cable Germany (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651323210", "Telenet CI+ card Belgium (Pay TV)\nhttps://www2.telenet.be/nl/tv-met-een-kaartje/" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651323517", "New ROM of Nagra PayTV Card DNASP410 (Pay TV)\nhttp://en.wikipedia.org/wiki/Nagravision" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651323715", "New Digi Slovakia (Pay TV)\nhttps://www.lyngsat.com/packages/Digi.html" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651324260", "Nagravision Kudelski Generation 7 card Rom410 MerQ2B (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503431302052657651325371", "Slovak and Czech pay TV provider Slovak Telecom (Pay TV)\nhttp://www.flysat.com/novadigi-sk.php" }, + { "3FFF9500FF918171FE5700444E4153503432302052657653363017", "HD+ HD04b Card (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503432302052657653363413", "claro card honduras central america 'NAGRA' (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503432302052657653364166", "NAGRA KUDELSKI (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503432302052657653364265", "Nagra Kudelski / Canalsat Reunion (Pay TV)" }, + { "3FFF9500FF918171FE5700444E4153503435302052657657363014", "HD+ HD05 Paytv smartcard (Pay TV)" }, + { "3FFF9500FF918171FE5700444E415350343832205265765232361C", "Max Tv Croatia (Pay TV)\nhttps://www.lyngsat.com/packages/Max-TV.html" }, + { "3FFF9500FF918171FE5700444E415350353532204473684E30391F", "Dish Network ROM552 (Pay TV)" }, + { "3FFF9500FF918171FE5700444E415350353532204473684E304264", "Dish Network (Satellite Pay TV) NASP 552 (Pay TV)\nhttp://www.dishnetwork.com/" }, + { "3FFF9500FF918171FE5700444E415350353533205265764E304178", "BELL CA EXPRESS VU CARD (Pay TV)" }, + { "3FFF9500FF918171FF4700444E4153505330312044736836303916", "PayTV card for DishNetwork Sat receiver\nhttp://www.dishnetwork.com/\nCards were obsoleted in nationwide system update in 2009." }, + { "3FFF9500FF918171FF4700444E4153505330312052657636343702", "BELL EXPRESSVU (Pay TV)" }, + { "3FFF9500FF918171FF470054494745523030332052657632353064", "Tivu' Sat (Italy) CAM card www.tivu.tv" }, + {NULL, "n/a"} + }; #endif diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index c93093deab..f80005c639 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -797,7 +797,7 @@ static int mf_load_keys(uint8_t **pkeyBlock, uint32_t *pkeycnt, uint8_t *userkey PrintAndLogEx(DEBUG, _YELLOW_("%2d") " - %s", *pkeycnt + i, sprint_hex(*pkeyBlock + (*pkeycnt + i) * MIFARE_KEY_SIZE, MIFARE_KEY_SIZE)); } *pkeycnt += ARRAYLEN(g_mifare_default_keys); - PrintAndLogEx(SUCCESS, "loaded " _GREEN_("%zu") " keys from hardcoded default array", ARRAYLEN(g_mifare_default_keys)); + PrintAndLogEx(SUCCESS, "loaded " _GREEN_("%zu") " hardcoded keys", ARRAYLEN(g_mifare_default_keys)); } // Handle user supplied dictionary file @@ -9697,7 +9697,8 @@ static int CmdHF14AMfInfo(const char *Cmd) { } if (fKeyType != 0xFF) { - PrintAndLogEx(SUCCESS, "Block 0.......... %s", sprint_hex_ascii(blockdata, MFBLOCK_SIZE)); + PrintAndLogEx(SUCCESS, "Block 0.... %s | " NOLF, sprint_hex_inrow(blockdata, MFBLOCK_SIZE)); + PrintAndLogEx(NORMAL, "%s", sprint_ascii(blockdata + 8, 8)); } PrintAndLogEx(NORMAL, ""); diff --git a/client/src/cmdhfmfu.c b/client/src/cmdhfmfu.c index de2489dba2..658e028e5a 100644 --- a/client/src/cmdhfmfu.c +++ b/client/src/cmdhfmfu.c @@ -4126,7 +4126,7 @@ static int CmdHF14AMfUCSetUid(const char *Cmd) { // save old block2. uint8_t oldblock2[4] = {0x00}; - memcpy(resp.data.asBytes, oldblock2, 4); + memcpy(oldblock2, resp.data.asBytes, 4); // Enforce bad BCC handling temporarily as BCC will be wrong between // block 1 write and block2 write @@ -4431,6 +4431,9 @@ static int CmdHF14AMfUPwdGen(const char *Cmd) { PrintAndLogEx(INFO, " Dorma Kaba algo"); PrintAndLogEx(INFO, " STiD algo"); PrintAndLogEx(INFO, "-------------------------------------"); + key = 0; + mfc_algo_bambu_one(uid, 0, MF_KEY_A, &key); + PrintAndLogEx(INFO, " Bambu........ %012" PRIX64, key); return PM3_SUCCESS; } diff --git a/client/src/proxmark3.c b/client/src/proxmark3.c index 1beb93c2a2..1f80acb88b 100644 --- a/client/src/proxmark3.c +++ b/client/src/proxmark3.c @@ -226,7 +226,6 @@ static void showBanner(void) { PrintAndLogEx(NORMAL, ""); PrintAndLogEx(NORMAL, " [ " _YELLOW_("%s!")" ]", get_quote()); PrintAndLogEx(NORMAL, " Patreon - https://www.patreon.com/iceman1001/"); - PrintAndLogEx(NORMAL, " Paypal - https://www.paypal.me/iceman1001/"); PrintAndLogEx(NORMAL, ""); // PrintAndLogEx(NORMAL, " Monero"); // PrintAndLogEx(NORMAL, " 43mNJLpgBVaTvyZmX9ajcohpvVkaRy1kbZPm8tqAb7itZgfuYecgkRF36rXrKFUkwEGeZedPsASRxgv4HPBHvJwyJdyvQuP"); diff --git a/common/commonutil.c b/common/commonutil.c index 15c79d2489..ad867be866 100644 --- a/common/commonutil.c +++ b/common/commonutil.c @@ -567,3 +567,35 @@ size_t concatbits(uint8_t *dest, int dest_offset, const uint8_t *src, int src_of return dest_offset + nbits; } + +int char2int(char c) { + if (c >= '0' && c <= '9') return c - '0'; + if (c >= 'A' && c <= 'F') return c - 'A' + 10; + if (c >= 'a' && c <= 'f') return c - 'a' + 10; + return -1; // Invalid character for hex +} + +// returns the number of bytes written +int hexstr2ByteArr(const char *hexstr, unsigned char *array, size_t asize) { + size_t n = 0; + while (hexstr[n] != '\0') { + n++; + } + + // Check if the input is valid and fits in the output array + if (n % 2 != 0 || asize < n >> 1) { + return -1; // Error: invalid length or insufficient byte array size + } + + for (size_t i = 0; i < n; i += 2) { + int high = char2int(hexstr[i]); + int low = char2int(hexstr[i + 1]); + + if (high == -1 || low == -1) { + return -1; // Error: invalid hex character + } + + array[i >> 1] = (high << 4) | low; + } + return n >> 1; +} diff --git a/common/commonutil.h b/common/commonutil.h index b2d560f3db..0b187ef102 100644 --- a/common/commonutil.h +++ b/common/commonutil.h @@ -65,6 +65,20 @@ #define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32))) #endif +typedef struct { + int Year; + int Month; + int Day; + int Hour; + int Minute; +} Date_t; + + +int calculate_hours_between_dates(const Date_t s, Date_t *e); +void add_hours(Date_t *d, int hours_to_add); +void add_days(Date_t *d, int days_to_add); +uint8_t days_in_month(int year, int month); + extern struct version_information_t g_version_information; void FormatVersionInformation(char *dst, int len, const char *prefix, const void *version_info); @@ -136,4 +150,6 @@ void reverse_arraybytes(uint8_t *arr, size_t len); void reverse_arraybytes_copy(uint8_t *arr, uint8_t *dest, size_t len); size_t concatbits(uint8_t *dest, int dest_offset, const uint8_t *src, int src_offset, size_t nbits); +int char2int(char c); +int hexstr2ByteArr(const char *hexstr, unsigned char *array, size_t asize); #endif diff --git a/common/generator.c b/common/generator.c index f7a53ed1ee..8e6d049191 100644 --- a/common/generator.c +++ b/common/generator.c @@ -25,7 +25,7 @@ #include #include "commonutil.h" //BSWAP_16 #include "common.h" //BSWAP_32/64 -#include "util.h" + #include "pm3_cmd.h" #include "crc16.h" // crc16 ccitt #include "mbedtls/sha1.h" @@ -33,9 +33,11 @@ #include "mbedtls/cmac.h" #include "mbedtls/cipher.h" #include "mbedtls/md.h" +#include "mbedtls/hkdf.h" #ifndef ON_DEVICE #include "ui.h" +#include "util.h" # define prnt(args...) PrintAndLogEx(DEBUG, ## args ); #else # include "dbprint.h" @@ -351,12 +353,11 @@ int mfc_algo_saflok_one(uint8_t *uid, uint8_t sector, uint8_t keytype, uint64_t 0xda3e3fd649ddULL, 0x58dded078e3eULL, 0x5cd005cfd907ULL, 0x118dd00187d0ULL }; - uint8_t h = ((uid[3] >> 4) & 0xF); - h += ((uid[2] >> 4) & 0xF); + uint8_t h = (NIBBLE_HIGH(uid[3]) & 0xF); + h += (NIBBLE_HIGH(uid[2]) & 0xF); h += uid[0] & 0xF; uint64_t m = lut[h & 0xF]; - uint64_t id = (bytes_to_num(uid, 4) << 8); *key = (h + (id + m + ((uint64_t)h << 40ULL))) & 0xFFFFFFFFFFFFULL; @@ -540,6 +541,41 @@ int mfc_algo_sky_all(uint8_t *uid, uint8_t *keys) { return PM3_SUCCESS; } + +static const uint8_t bambu_salt[] = { 0x9a, 0x75, 0x9c, 0xf2, 0xc4, 0xf7, 0xca, 0xff, 0x22, 0x2c, 0xb9, 0x76, 0x9b, 0x41, 0xbc, 0x96 }; +static const uint8_t bambu_context_a[] = "RFID-A"; +static const uint8_t bambu_context_b[] = "RFID-B"; + +int mfc_algo_bambu_one(uint8_t *uid, uint8_t sector, uint8_t keytype, uint64_t *key) { + if (uid == NULL) return PM3_EINVARG; + if (key == NULL) return PM3_EINVARG; + + uint8_t keys[16 * 6] = {0}; + + // prepare hmac context + const mbedtls_md_info_t *info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA256); + + if (keytype == 0) { + mbedtls_hkdf(info, bambu_salt, sizeof(bambu_salt), uid, 4, bambu_context_a, sizeof(bambu_context_a), keys, sizeof(keys)); + } else { + mbedtls_hkdf(info, bambu_salt, sizeof(bambu_salt), uid, 4, bambu_context_b, sizeof(bambu_context_b), keys, sizeof(keys)); + } + + *key = bytes_to_num(keys + (sector * 6), 6); + return PM3_SUCCESS; +} + +int mfc_algo_bambu_all(uint8_t *uid, uint8_t *keys) { + if (uid == NULL) return PM3_EINVARG; + if (keys == NULL) return PM3_EINVARG; + + // prepare hmac context + const mbedtls_md_info_t *info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA256); + mbedtls_hkdf(info, bambu_salt, sizeof(bambu_salt), uid, 4, bambu_context_a, sizeof(bambu_context_a), keys, (16 * 6)); + mbedtls_hkdf(info, bambu_salt, sizeof(bambu_salt), uid, 4, bambu_context_b, sizeof(bambu_context_b), keys + (16 * 6), (16 * 6)); + return PM3_SUCCESS; +} + // LF T55x7 White gun cloner algo uint32_t lf_t55xx_white_pwdgen(uint32_t id) { uint32_t r1 = rotl(id & 0x000000ec, 8); @@ -617,10 +653,9 @@ int mfc_algo_touch_one(uint8_t *uid, uint8_t sector, uint8_t keytype, uint64_t * int generator_selftest(void) { #ifndef ON_DEVICE -#define NUM_OF_TEST 10 +#define NUM_OF_TEST 11 - PrintAndLogEx(INFO, "PWD / KEY generator selftest"); - PrintAndLogEx(INFO, "----------------------------"); + PrintAndLogEx(INFO, "------- " _CYAN_("PWD / KEY generator self tests") " --------"); uint8_t testresult = 0; @@ -629,7 +664,6 @@ int generator_selftest(void) { bool success = (pwd1 == 0x8432EB17); if (success) testresult++; - PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %08X - %s", sprint_hex(uid1, 7), pwd1, success ? _GREEN_("ok") : "->8432EB17<-"); uint8_t uid2[] = {0x04, 0x1f, 0x98, 0xea, 0x1e, 0x3e, 0x81}; @@ -687,7 +721,7 @@ int generator_selftest(void) { success = (key8 == 0x82c7e64bc565); if (success) testresult++; - PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %"PRIx64" - %s", sprint_hex(uid8, 4), key8, success ? _GREEN_("ok") : "->82C7E64BC565<--"); + PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %012"PRIx64" - %s", sprint_hex(uid8, 4), key8, success ? _GREEN_("ok") : "->82C7E64BC565<--"); // MFC SAFLOK uint8_t uid9[] = {0x11, 0x22, 0x33, 0x44}; @@ -696,13 +730,22 @@ int generator_selftest(void) { success = (key9 == 0xD1E2AA68E39A); if (success) testresult++; - PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %"PRIX64" - %s", sprint_hex(uid9, 4), key9, success ? _GREEN_("ok") : _RED_(">> D1E2AA68E39A <<")); + PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %012"PRIX64" - %s", sprint_hex(uid9, 4), key9, success ? _GREEN_("ok") : _RED_(">> D1E2AA68E39A <<")); uint32_t lf_id = lf_t55xx_white_pwdgen(0x00000080); success = (lf_id == 0x00018383); if (success) testresult++; - PrintAndLogEx(success ? SUCCESS : WARNING, "ID | 0x00000080 | %08"PRIx32 " - %s", lf_id, success ? _GREEN_("ok") : "->00018383<--"); + PrintAndLogEx(success ? SUCCESS : WARNING, "ID | 0x00000080 | %08"PRIx32 " - %s", lf_id, success ? _GREEN_("ok") : ">> 00018383 <<"); + + // MFC Bambu + uint64_t key13 = 0; + mfc_algo_bambu_one(uid9, 0, 0, &key13); + success = (key13 == 0x0729F3B2D37A); + if (success) + testresult++; + PrintAndLogEx(success ? SUCCESS : WARNING, "UID | %s | %012"PRIX64" - %s", sprint_hex(uid9, 4), key13, success ? _GREEN_("ok") : _RED_(">> 0729F3B2D37A <<")); + PrintAndLogEx(SUCCESS, "------------------- Selftest %s", (testresult == NUM_OF_TEST) ? _GREEN_("ok") : _RED_("fail")); diff --git a/common/generator.h b/common/generator.h index ce2601f26b..b98731f19a 100644 --- a/common/generator.h +++ b/common/generator.h @@ -62,6 +62,8 @@ int mfc_generate4b_nuid(uint8_t *uid, uint8_t *nuid); int mfc_algo_touch_one(uint8_t *uid, uint8_t sector, uint8_t keytype, uint64_t *key); +int mfc_algo_bambu_one(uint8_t *uid, uint8_t sector, uint8_t keytype, uint64_t *key); +int mfc_algo_bambu_all(uint8_t *uid, uint8_t *keys); uint32_t lf_t55xx_white_pwdgen(uint32_t id); int mfdes_kdf_input_gallagher(uint8_t *uid, uint8_t uidLen, uint8_t keyNo, uint32_t aid, uint8_t *kdfInputOut, uint8_t *kdfInputLen); diff --git a/common/mbedtls/Makefile b/common/mbedtls/Makefile index 0413bdff7d..07c047ffb4 100644 --- a/common/mbedtls/Makefile +++ b/common/mbedtls/Makefile @@ -25,6 +25,7 @@ MYSRCS = \ ecdh.c \ ecdsa.c \ gcm.c \ + hkdf.c \ md.c \ md5.c \ oid.c \ diff --git a/common/mbedtls/config.h b/common/mbedtls/config.h index a3faef146f..954817edc6 100644 --- a/common/mbedtls/config.h +++ b/common/mbedtls/config.h @@ -2849,7 +2849,7 @@ * This module adds support for the Hashed Message Authentication Code * (HMAC)-based key derivation function (HKDF). */ -//#define MBEDTLS_HKDF_C +#define MBEDTLS_HKDF_C /** * \def MBEDTLS_HMAC_DRBG_C diff --git a/common_arm/flashmem.c b/common_arm/flashmem.c index d316fa9451..5aa88b0ebc 100644 --- a/common_arm/flashmem.c +++ b/common_arm/flashmem.c @@ -43,7 +43,9 @@ static uint32_t FLASHMEM_SPIBAUDRATE = FLASH_BAUD; #ifndef AS_BOOTROM -uint8_t spi_flash_p64k = 0; + +spi_flash_t spi_flash_data = {0}; +uint8_t spi_flash_pages64k = 4; void FlashmemSetSpiBaudrate(uint32_t baudrate) { FLASHMEM_SPIBAUDRATE = baudrate; @@ -60,9 +62,9 @@ bool Flash_ReadID(flash_device_type_t *result, bool read_jedec) { // 0x9F JEDEC FlashSendByte(JEDECID); - result->manufacturer_id = (FlashSendByte(0xFF) & 0xFF); - result->device_id = (FlashSendByte(0xFF) & 0xFF); - result->device_id2 = (FlashSendLastByte(0xFF) & 0xFF); + result->manufacturer_id = (FlashSendByte(0xFF) & 0xFF); + result->device_id = (FlashSendByte(0xFF) & 0xFF); + result->device_id2 = (FlashSendLastByte(0xFF) & 0xFF); } else { // 0x90 Manufacture ID / device ID FlashSendByte(ID); @@ -70,8 +72,8 @@ bool Flash_ReadID(flash_device_type_t *result, bool read_jedec) { FlashSendByte(0x00); FlashSendByte(0x00); - result->manufacturer_id = (FlashSendByte(0xFF) & 0xFF); - result->device_id = (FlashSendLastByte(0xFF) & 0xFF); + result->manufacturer_id = (FlashSendByte(0xFF) & 0xFF); + result->device_id = (FlashSendLastByte(0xFF) & 0xFF); } return true; @@ -125,7 +127,7 @@ uint16_t Flash_ReadDataCont(uint32_t address, uint8_t *out, uint16_t len) { uint16_t i = 0; for (; i < (len - 1); i++) { - out[i] = ( FlashSendByte(0xFF) & 0xFF); + out[i] = (FlashSendByte(0xFF) & 0xFF); } out[i] = (FlashSendLastByte(0xFF) & 0xFF); return len; @@ -152,8 +154,8 @@ uint16_t Flash_WriteData(uint32_t address, uint8_t *in, uint16_t len) { } // out-of-range - if (((address >> 16) & 0xFF) > spi_flash_p64k) { - Dbprintf("Flash_WriteData, block out-of-range %02x > %02x", (address >> 16) & 0xFF, spi_flash_p64k); + if (((address >> 16) & 0xFF) > spi_flash_pages64k) { + Dbprintf("Flash_WriteData, block out-of-range %02x > %02x", (address >> 16) & 0xFF, spi_flash_pages64k); FlashStop(); return 0; } @@ -190,8 +192,8 @@ uint16_t Flash_WriteDataCont(uint32_t address, uint8_t *in, uint16_t len) { return 0; } - if (((address >> 16) & 0xFF) > spi_flash_p64k) { - Dbprintf("Flash_WriteDataCont, block out-of-range %02x > %02x", (address >> 16) & 0xFF, spi_flash_p64k); + if (((address >> 16) & 0xFF) > spi_flash_pages64k) { + Dbprintf("Flash_WriteDataCont, block out-of-range %02x > %02x", (address >> 16) & 0xFF, spi_flash_pages64k); return 0; } @@ -269,7 +271,7 @@ bool Flash_WipeMemory(void) { // Each block is 64Kb. Four blocks // one block erase takes 1s ( 1000ms ) - for (uint8_t i=0; i < spi_flash_p64k; i++) { + for (uint8_t i = 0; i < spi_flash_pages64k; i++) { Flash_WriteEnable(); Flash_Erase64k(i); Flash_CheckBusy(BUSY_TIMEOUT); @@ -289,7 +291,7 @@ void Flash_WriteEnable(void) { // execution time: 0.8ms / 800us bool Flash_Erase4k(uint8_t block, uint8_t sector) { - if (block > spi_flash_p64k || sector > MAX_SECTORS) return false; + if (block > spi_flash_pages64k || sector > MAX_SECTORS) return false; FlashSendByte(SECTORERASE); FlashSendByte(block); @@ -324,7 +326,7 @@ bool Flash_Erase32k(uint32_t address) { // 0x03 00 00 -- 0x 03 FF FF == block 3 bool Flash_Erase64k(uint8_t block) { - if (block > spi_flash_p64k) return false; + if (block > spi_flash_pages64k) return false; FlashSendByte(BLOCK64ERASE); FlashSendByte(block); @@ -350,57 +352,22 @@ void Flashmem_print_status(void) { } DbpString(" Init.................... " _GREEN_("ok")); - // NOTE: It would likely be more useful to use JDEC ID command 9F, - // as it provides a third byte indicative of capacity. - flash_device_type_t device_type = {0}; - if (!Flash_ReadID(&device_type, false)) { - DbpString(" Device ID............... " _RED_(" --> Not Found <--")); - } else { - if (device_type.manufacturer_id == WINBOND_MANID) { - switch (device_type.device_id) { - case WINBOND_32MB_DEVID: - DbpString(" Memory size............. " _YELLOW_("32 mbits / 4 MB")); - break; - case WINBOND_16MB_DEVID: - DbpString(" Memory size............. " _YELLOW_("16 mbits / 2 MB")); - break; - case WINBOND_8MB_DEVID: - DbpString(" Memory size............. " _YELLOW_("8 mbits / 1 MB")); - break; - case WINBOND_4MB_DEVID: - DbpString(" Memory size............. " _YELLOW_("4 mbits / 512 kb")); - break; - case WINBOND_2MB_DEVID: - DbpString(" Memory size............. " _YELLOW_("2 mbits / 256 kb")); - break; - case WINBOND_1MB_DEVID: - DbpString(" Memory size..... ....... " _YELLOW_("1 mbits / 128 kb")); - break; - case WINBOND_512KB_DEVID: - DbpString(" Memory size............. " _YELLOW_("512 kbits / 64 kb")); - break; - default: - Dbprintf(" Device ID............... " _YELLOW_("%02X / %02X (Winbond)"), - device_type.manufacturer_id, - device_type.device_id - ); - break; - } - } else { - Dbprintf(" Device ID............... " _YELLOW_("%02X / %02X (unknown)"), - device_type.manufacturer_id, - device_type.device_id - ); - } - if (Flash_ReadID(&device_type, true)) { - Dbprintf(" JEDEC Mfr ID / Dev ID... " _YELLOW_("%02X / %02X%02X"), - device_type.manufacturer_id, - device_type.device_id, - device_type.device_id2 - ); - } + if (spi_flash_data.device_id > 0) { + Dbprintf(" Mfr ID / Dev ID......... " _YELLOW_("%02X / %02X"), + spi_flash_data.manufacturer_id, + spi_flash_data.device_id + ); } - Dbprintf(" Flash pages (64k)....... " _YELLOW_("0x%02x (%u)"), spi_flash_p64k, spi_flash_p64k); + + if (spi_flash_data.jedec_id > 0) { + Dbprintf(" JEDEC Mfr ID / Dev ID... " _YELLOW_("%02X / %04X"), + spi_flash_data.manufacturer_id, + spi_flash_data.jedec_id + ); + } + + Dbprintf(" Device.................. " _YELLOW_("%s"), spi_flash_data.device); + Dbprintf(" Memory size............. " _YELLOW_("%d kB (%d pages * 64k)"), spi_flash_pages64k * 64, spi_flash_pages64k); uint8_t uid[8] = {0, 0, 0, 0, 0, 0, 0, 0}; Flash_UniqueID(uid); @@ -428,7 +395,7 @@ void Flashmem_print_info(void) { uint16_t num; Flash_CheckBusy(BUSY_TIMEOUT); - uint16_t isok = Flash_ReadDataCont(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_p64k), keysum, 2); + uint16_t isok = Flash_ReadDataCont(DEFAULT_MF_KEYS_OFFSET_P(spi_flash_pages64k), keysum, 2); if (isok == 2) { num = ((keysum[1] << 8) | keysum[0]); if (num != 0xFFFF && num != 0x0) @@ -436,7 +403,7 @@ void Flashmem_print_info(void) { } Flash_CheckBusy(BUSY_TIMEOUT); - isok = Flash_ReadDataCont(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_p64k), keysum, 2); + isok = Flash_ReadDataCont(DEFAULT_T55XX_KEYS_OFFSET_P(spi_flash_pages64k), keysum, 2); if (isok == 2) { num = ((keysum[1] << 8) | keysum[0]); if (num != 0xFFFF && num != 0x0) @@ -444,7 +411,7 @@ void Flashmem_print_info(void) { } Flash_CheckBusy(BUSY_TIMEOUT); - isok = Flash_ReadDataCont(DEFAULT_ICLASS_KEYS_OFFSET_P(spi_flash_p64k), keysum, 2); + isok = Flash_ReadDataCont(DEFAULT_ICLASS_KEYS_OFFSET_P(spi_flash_pages64k), keysum, 2); if (isok == 2) { num = ((keysum[1] << 8) | keysum[0]); if (num != 0xFFFF && num != 0x0) @@ -454,26 +421,47 @@ void Flashmem_print_info(void) { FlashStop(); } -//read spi flash JEDEC ID and fill the global variable spi_flash_p64k bool FlashDetect(void) { - flash_device_type_t flash_device = {0}; - - if (!Flash_ReadID(&flash_device, true)) { - if (g_dbglevel > 3) Dbprintf("Flash_ReadID failed"); - return false; + flash_device_type_t flash_data = {0}; + bool ret = false; + // read using 0x9F (JEDEC) + if (Flash_ReadID(&flash_data, true)) { + spi_flash_data.manufacturer_id = flash_data.manufacturer_id; + spi_flash_data.jedec_id = (flash_data.device_id << 8) + flash_data.device_id2; + ret = true; + } else { + if (g_dbglevel > 3) Dbprintf("Flash_ReadID failed reading JEDEC (0x9F)"); } - - uint32_t identifier = (flash_device.manufacturer_id << 16) + (flash_device.device_id <<8 ) + flash_device.device_id2; - int i = 0; - for (; i < ARRAYLEN(SpiFlashTable)-1; i++) { - if (SpiFlashTable[i].identifier == identifier) { - break; + // read using 0x90 (Manufacturer / Device ID) + if (Flash_ReadID(&flash_data, false)) { + if (spi_flash_data.manufacturer_id == 0) { + spi_flash_data.manufacturer_id = flash_data.manufacturer_id; + } + spi_flash_data.device_id = flash_data.device_id; + ret = true; + } else { + if (g_dbglevel > 3) Dbprintf("Flash_ReadID failed reading Mfr/Dev (0x90)"); + } + // default device is 'unknown' + spi_flash_data.device = SpiFlashTable[0].device; + + if (ret) { + for (int i = 0; i < ARRAYLEN(SpiFlashTable); i++) { + if (SpiFlashTable[i].manufacturer_id == spi_flash_data.manufacturer_id) { + if (SpiFlashTable[i].jedec_id == spi_flash_data.jedec_id) { + spi_flash_pages64k = SpiFlashTable[i].pages64k; + spi_flash_data.device = SpiFlashTable[i].device; + break; + } + if (SpiFlashTable[i].device_id == spi_flash_data.device_id) { + spi_flash_data.device = SpiFlashTable[i].device; + break; + } + } } } - spi_flash_p64k = SpiFlashTable[i].pages64; - - return true; + return ret; } #endif // #ifndef AS_BOOTROM @@ -491,7 +479,7 @@ bool FlashInit(void) { } #ifndef AS_BOOTROM - if (spi_flash_p64k == 0) { + if (spi_flash_data.manufacturer_id == 0) { if (!FlashDetect()) { return false; } diff --git a/common_arm/flashmem.h b/common_arm/flashmem.h index fd407299c7..b289896462 100644 --- a/common_arm/flashmem.h +++ b/common_arm/flashmem.h @@ -54,15 +54,6 @@ // Flash busy timeout: 20ms is the strict minimum when writing 256kb #define BUSY_TIMEOUT 200000L -#define WINBOND_MANID 0xEF -#define WINBOND_32MB_DEVID 0x15 -#define WINBOND_16MB_DEVID 0x14 -#define WINBOND_8MB_DEVID 0x13 -#define WINBOND_4MB_DEVID 0x12 -#define WINBOND_2MB_DEVID 0x11 -#define WINBOND_1MB_DEVID 0x10 -#define WINBOND_512KB_DEVID 0x05 - #define PAGESIZE 0x100 #define WINBOND_WRITE_DELAY 0x02 @@ -145,38 +136,48 @@ uint16_t Flash_WriteDataCont(uint32_t address, uint8_t *in, uint16_t len); void Flashmem_print_status(void); void Flashmem_print_info(void); -typedef struct spi_flash_s { - const uint32_t identifier; - const uint8_t pages64; - const char *desc; +typedef struct { + uint8_t manufacturer_id; + uint8_t device_id; + uint16_t jedec_id; + uint8_t pages64k; + char *device; } spi_flash_t; -const static spi_flash_t SpiFlashTable[] = { +static const spi_flash_t SpiFlashTable[] = { + // first element is the default of 4 * 64kB pages (256kB) + { 0x00, 0x00, 0x0000, 4, "unknown" }, // 256k // Manufacturer: Puya - { 0x856015, 32, "P25Q16H" }, + { 0x85, 0x00, 0x6015, 32, "P25Q16H" }, // 2048k + /// Manufacturer: Renesas + { 0x1F, 0x46, 0x0000, 32, "AT25XE161D" }, // 2048k + { 0x1F, 0x47, 0x0000, 64, "AT25XE321D" }, // 4096k // Manufacturer: Winbond - { 0xEF3012, 4, "W25X20BV" }, - { 0xEF3013, 8, "W25X40BV" }, + { 0xEF, 0x00, 0x3012, 4, "W25X20BV" }, // 256k + { 0xEF, 0x00, 0x3013, 8, "W25X40BV" }, // 512k + + { 0xEF, 0x00, 0x4013, 8, "W25Q40BV" }, // 512k + { 0xEF, 0x00, 0x4014, 16, "W25Q80BV" }, // 1024k + { 0xEF, 0x14, 0x4015, 32, "W25Q16BV" }, // 2048k + { 0xEF, 0x15, 0x4016, 64, "W25Q32BV" }, // 4096k + + { 0xEF, 0x21, 0x7022, 4, "W25Q02JV" }, + // identified by Manufacturer /Device ID +// { 0xEF, 0x05, 0x0000, 1, "Winbond!!!" }, + { 0xEF, 0x10, 0x0000, 2, "W25*10BV!!!" }, // 128k + { 0xEF, 0x11, 0x0000, 4, "W25*20BV" }, // 256k + { 0xEF, 0x12, 0x0000, 8, "W25*40BV" }, // 512k + { 0xEF, 0x13, 0x0000, 16, "W25*80BV" } // 1024k +}; - { 0xEF4013, 8, "W25Q40BV" }, - { 0xEF4014, 16, "W25Q80BV" }, - { 0xEF4015, 32, "W25Q16BV" }, - { 0xEF4016, 64, "W25Q32BV" }, +extern uint8_t spi_flash_pages64k; - { 0xEF7022, 4, "W25Q02JV" }, - // (default) last record - { 0x000000, 4, "Unknown!" } -}; +bool FlashDetect(void); #ifndef ARRAYLEN # define ARRAYLEN(x) (sizeof(x)/sizeof((x)[0])) #endif -extern uint8_t spi_flash_p64k; - -bool FlashDetect(void); - #endif // #ifndef AS_BOOTROM - #endif diff --git a/doc/commands.json b/doc/commands.json index d4c4bcd5bb..ef3c4489d7 100644 --- a/doc/commands.json +++ b/doc/commands.json @@ -4554,7 +4554,7 @@ "-h, --help This help", "--blk Target block", "-b Target key B instead of default key A", - "-c Target Auth 6x" + "-c Target key type is key A + offset" ], "usage": "hf mf darkside [-hb] [--blk ] [-c ]" }, @@ -13003,6 +13003,6 @@ "metadata": { "commands_extracted": 749, "extracted_by": "PM3Help2JSON v1.00", - "extracted_on": "2024-11-15T13:26:34" + "extracted_on": "2024-11-20T23:37:32" } } diff --git a/recovery/Makefile b/recovery/Makefile index 5d561c45b1..e18e66c06c 100644 --- a/recovery/Makefile +++ b/recovery/Makefile @@ -17,7 +17,10 @@ all: $(BINS) echo "ERROR: Firmware image too large for your platform! $$FWSIZE > $(FWMAXSIZE)"; \ echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \ exit 1; \ - fi + fi; \ + echo "==================================================================="; \ + echo "Firmware size: $$FWSIZE bytes ($$((FWSIZE/1024))kb) = $$((FWSIZE*100/$(FWMAXSIZE)))% of $$(($(FWMAXSIZE)/1024))kb"; \ + echo "===================================================================" bootrom.bin: ../bootrom/obj/bootrom.elf $(info [=] GEN $@)