Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@adyen/bpscaweb
Advanced tools
This library offers an easy way to perform operations with Strong Customer Authorization. This library is based on WebAuthn to guarantee the security of the operations.
You can use this library direclty on your browser or you can add as a dependency on your JS
project.
With npm do
npm install @adyen/bpscaweb
With browsers do
<script type="module" src="bpscaweb.es.js"></script>
<script type="module">
import ScaWebauthn from '/js/bpscaweb.es.js';
...
</script>
In your TS project do
import ScaWebauthn from '@adyen/bpscaweb';
Once you have installed the component, you can configure it when you create a new handler.
const handler = ScaWebauthn.create(options);
These are the options you can pass to the component
Option | Required | Type | Description |
---|---|---|---|
relyingPartyName | Yes | string | A string representing the name of the relying party. This is the name the user will be presented with when creating or validating a WebAuthn operation. |
Example: Create a handler
const scaWebauthn = ScaWebauthn.create({
relyingPartyName: 'adyen_bpsca',
});
Check if SCA is available on the device.
const sdkOutput = await scaWebauthn.checkAvailability();
Exchange the sdkInput
return by the backend in the initiate register call
const sdkOutput = await scaWebauthn.register(sdkInput); // the new output that will be shared with the server to complete the registration
Exchange the sdkInput
return by the backend in the first call
const sdkOutput = await scaWebauthn.authenticate(sdkInput); // the new output that will be shared with the server to authenticate the call
FAQs
Balance Platform SCA Web library
The npm package @adyen/bpscaweb receives a total of 5 weekly downloads. As such, @adyen/bpscaweb popularity was classified as not popular.
We found that @adyen/bpscaweb demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.