Reputation: 3082
I'm trying to use the three basic NFC functions in Google Chrome (Web NFC API, navigator.nfc).
I know it's possible to read and write NDEF messages on tags. What I did not find out yet is how to protect the written data on the tag from being overwritten. Is this possible?
Upvotes: 0
Views: 379
Reputation: 40821
The Web NFC API specification explicitly mentions write-protection of NFC tags as one of the highest-priority threats (see section 7.2):
Protecting existing NFC tags from being overwritten by malicious web pages.
However, in its current state, the Web NFC API itself does not provide a way to set write-protection for a tag.
Upvotes: 3