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.
chainloader
Advanced tools
parse blockchain transactions for embedded data keys, fetch the data bodies from a Tradle keeper
var Loader = require('chainloader')
var loader = new Loader({
prefix: 'tradle',
networkName: 'testnet',
keeper: keeper, // see tradle/bitkeeper-js
lookup: identityLookupFn
})
// bitcoin.Transaction, or array of them (bitcoinjs-lib)
loader.load(tx)
.then(function (chainedObj) {
// chainedObj has
// 1. metadata about the chained object,
// 2. the associated permission file (if any)
// 3. the chained object
//
// all together it looks like:
// {
// encryptedKey: Buffer, // encrypted DHT key of the file
// key: String, // decrypted DHT key of the file
// data: Buffer, // serialized object data
// from: Object, // result from identityLookupFn
// to: Object, // result from identityLookupFn
// tx: bitcoin.Transaction, // see bitcoinjs-lib
// txId: String,
// txType: TxData.types[type], // see tradle/tx-data
// txData: Buffer, // data embedded in the tx
// addressesFrom: Array,
// addressesTo: Array,
// // if it's a shared file:
// permission: Permission, // see tradle/permission
// encryptedPermission: Buffer,
// sharedKey: Buffer, // shared key (ECC) of bitcoin tx participants
// permissionKey: String, // the DHT key of the permission file
// encryptedData: Buffer, // encrypted object data
// }
})
// to be implemented by you, see tests for an example
// or you can use tradle/tim which does the whole shebang
function identityLookupFn (fingerprint, cb) {
// ...
cb(null, {
identity: identity,
key: key
})
}
FAQs
parse blockchain transactions for embedded data keys, fetch the data bodies from a Tradle keeper
We found that chainloader 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 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.