
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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
The npm package chainloader receives a total of 12 weekly downloads. As such, chainloader popularity was classified as not popular.
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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.