Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FL-3569] NFC CLI commands #4158

Draft
wants to merge 217 commits into
base: dev
Choose a base branch
from

Conversation

RebornedBrain
Copy link
Contributor

@RebornedBrain RebornedBrain commented Mar 24, 2025

What's new

Based on this #4147 and others about cli

  • Now all commands related to NFC are placed in a separate shell which runs after 'nfc' command
  • Command adding was simplified
  • Arguments parsing is now done 'outside' of the command, you need only parse callback in command scope
  • One command can hold several different actions
  • raw commad added
  • apdu command added based on this implementation add nfc apdu cli command back #4133
  • dump command added
  • emulate command added
  • scanner command added
  • field command reworked
  • mfu command added

What's next

MFU commands

  • info
  • rdbl
  • wrbl

Verification

  • Run ./fbt cli then type nfc and press enter
  • You will see new shell with new motd
  • To exit from it type exit, this will move back to previous shell, or press ctrl+], this will close both shells
  • Type ? or help to see command list

Note: Description below is shorted, try to enter <command> -h, in order to see more information on particular command

Raw

  • On Ultralight card try raw -p 14a -sc -d 3000, this will return the first 4 pages
  • raw -p 14a -sck -d 3000 will do the same but will keep power on tag, after that another command can be send without select sequence, like this raw -p 14a -ck -d 3001

APDU

This should work in the same way like in the PR mentioned above. The only addition is an ability to set protocol manually

  • apdu -d 00A4000000 - detects tag, then sends data to it
  • apdu -d 00A4000000 00A4000000 - detects tag, then sends 2 bunches of data to it
  • apdu -p 4a -d 00A4000000 - sends data only if tag is iso14443_4a
  • apdu -p 4a -d 00A4000000 00A4000000 - same as above but with several bunches

SCANNER

Allows to test tag and determine its type

DUMP

Reads the whole card and saves it to .nfc file mentioned by user.
For Mifare Classic it reads only cards which already has keycache file on flipper as the most simple way.
For Mifare Ultralight tags password can be passed in order to pass auth.

EMULATE

Starts emulation of passed .nfc file

Checklist (For Reviewer)

  • PR has description of feature/bug or link to Confluence/Jira task
  • Description contains actions to verify feature/bugfix
  • I've built this code, uploaded it to the device and verified feature/bugfix

@hedger hedger mentioned this pull request Mar 31, 2025
3 tasks
@hedger
Copy link
Member

hedger commented Mar 31, 2025

#3276 related

@hedger hedger marked this pull request as draft April 4, 2025 23:18
Copy link
Member

@hedger hedger left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please rebase on top of dev and undraft

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants