Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@lit-protocol/bls-sdk
Advanced tools
Read more about it here
https://github.com/LIT-Protocol/threshold_crypto_ui
yarn add @lit-protocol/bls-sdk
import { initWasmBlsSdk } from '@lit-protocol/bls-sdk';
initWasmBlsSdk().then((exports) => {
globalThis.wasmExports = exports;
log(
`✅ [BLS SDK] wasmExports loaded. ${
Object.keys(exports).length
} functions available. Run 'wasmExports' in the console to see them.`
);
});
// set decryption shares bytes in wasm
decryptionShares.forEach((s: any, idx: any) => {
wasmExports.set_share_indexes(idx, s.shareIndex);
const shareAsBytes = uint8arrayFromString(s.decryptionShare, 'base16');
for (let i = 0; i < shareAsBytes.length; i++) {
wasmExports.set_decryption_shares_byte(i, idx, shareAsBytes[i]);
}
});
FAQs
Read more about it here
The npm package @lit-protocol/bls-sdk receives a total of 12,886 weekly downloads. As such, @lit-protocol/bls-sdk popularity was classified as popular.
We found that @lit-protocol/bls-sdk 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.