
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.
A 1-1 end-to-end encrypted internet pipe powered by dSwarm and Noise
npm install dcast
const DCast = require('dcast')
// 'from satoshi' should be a somewhat unique topic used to derive a discovery key.
// to find the other side of your pipe. it's seemed with a determistic timestamp from ~+-30min for better privacy
// once the other peer is discovered it is used to derive a noise keypair as well.
const beam = new DCast('from satoshi')
// make a little chat app
process.stdin.pipe(beam).pipe(process.stdout)
Part of the dHub CLI
Provided here as a standalone CLI as well.
First install it
npm install -g dcast
Then on one machine run
echo 'hello world' | dcast 'some topic'
Then on another
# will print "hello world"
dcast 'some topic'
That's it! Happy piping.
const stream = new DCast(key)Make a new DCast duplex stream.
Will auto connect to another peer making using the same key within ~30 min with an end to end encrypted tunnel.
When the other peer writes it's emitted as data on this stream.
Likewise when you write to this stream it's emitted as data on the other peers stream.
MIT
FAQs
A 1-to-1 E2E encrypted pipe over the dWeb.
We found that dcast 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.