Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
nfc-react-web
Advanced tools
React component for the web nfc api.
yarn add nfc-react-web
# or
npm install nfc-react-web
To read a tag:
import Nfc from 'nfc-react-web';
const App = () => (
<Nfc
read={data => {
console.log(`Data read from tag: ${JSON.stringify(data)}`);
}}
timeout={15} // time to keep trying to read tags, in seconds
/>
);
Note: The component will only read a tag successfully once, no matter if it isn't timed out.
To write to a tag:
import Nfc from 'nfc-react-web';
const App = () => (
<Nfc
write="Written with nfc-react-web"
writeCallback={error => {
if (error) {
console.log('An error occurred while writing to tag: ', error);
} else {
console.log('Data written to tag! :)');
}
}}
timeout={15} // time to keep trying to write to tags, in seconds
/>
);
Note: Even when an error happens, the write process will still try to write to a tag.
The web nfc api is still experimental. To enable it on Chrome in your android device, open a new tab and navigate to chrome://flags
, search form WebNFC
and enable it.
FAQs
React component for the web nfc api
We found that nfc-react-web demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.