
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@ddatabase/strong-link
Advanced tools
Generate a link to a dDatabase index that contains a root hash of the Merkle Tree at that time.
Generate a "strong" link to a ddatabase seq that contains a root hash of the merkle tree at that time.
npm install @ddatabase/strong-link
const strongLink = require('@ddatabase/strong-link')
strongLink.generate(someFeed, 42, function (err, link) {
if (err) throw err
console.log(link) // {feed: someFeed.key, seq: 42, treeHash: <buf>}
strongLink.verify(someFeed, link, function (err, data) {
// returns an error the feed key doesn't match
// or if the merkle tree hash is different
if (err) throw err
// otherwise the data at the seq is returned
console.log(data)
})
})
strongLink.generate(feed, seq, cb)Generate a strong identifier. Returns an object that looks like this:
{
feed: <the-feed-key>,
seq: <seq passed in>,
treeHash: <the root hash of the merkle tree at seq>
}
strongLink.verify(feed, link, cb)Verifies a strong link and returns the data at the seq if it validates.
MIT
FAQs
Generate a link to a dDatabase index that contains a root hash of the Merkle Tree at that time.
We found that @ddatabase/strong-link 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.