NFC
flipper zero 支持 nfc 技术,这类技术广泛应用于公共交通智能卡、门禁卡或标签以及电子名片。这类卡片协议复杂,支持加密、身份验证和完整的双向数据传输。flipper zero 内置 13 56 mhz nfc 模块,可以读取、保存和模拟 nfc 卡片。 本页将概要介绍 nfc 应用,并说明 nfc 模块背后的硬件。 nfc 菜单 你可以从 main menu 打开 nfc 应用。在该应用中,你可以与 nfc 卡片交互、分析读卡器,以及新建 nfc 卡片。 read: https //docs flipper net/zero/zh/nfc/read 读取并保存 nfc 卡片数据,例如 uid、sak、atqa 以及卡内存储的数据。 extract mf keys: https //docs flipper net/zero/zh/nfc/mfkey32 模拟 nfc 卡片,收集读卡器尝试使用的密钥所对应的数据(nonce,即一次性随机数),用于计算密钥。 saved: 列出已保存的 nfc 卡片,可以进行模拟和重命名。 extra actions: 提供额外的读取脚本、插件、密钥管理等功能。 add manually: https //docs flipper net/zero/zh/nfc/add manually 通过手动输入卡片数据新建虚拟 nfc 卡片。 nfc 硬件 flipper zero 内置的 nfc 模块基于 st25r3916 nfc 芯片 https //www st com/zh/nfc/st25r3916 html#overview 和一根 13 56 mhz 高频天线。该芯片用于处理高频协议,负责卡片的读取和模拟。 高频 13 56 mhz 天线与低频 125 khz 天线一同位于双频 rfid 天线板上。 想了解更多?欢迎查看以下页面: 读取 nfc 卡片 https //docs flipper net/zero/zh/nfc/read 恢复 mifare classic 密钥 https //docs flipper net/zero/zh/nfc/mfkey32 使用密码解锁卡片 https //docs flipper net/zero/zh/nfc/unlock with password 向魔术卡写入数据 https //docs flipper net/zero/zh/nfc/magic cards flipper zero 电路原理图 https //docs flipper net/zero/zh/development/hardware/schematic nfc 应用源代码 https //github com/flipperdevices/flipperzero firmware/tree/dev/applications/main/nfc 手动添加 nfc 卡片 https //docs flipper net/zero/zh/nfc/add manually