
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@coboxcoop/networker
Advanced tools
CoBox is an encrypted p2p file system and distributed back-up tool. README provides a map of the project.
networker contains a subclass of CorestoreNetworker to use with our fork of Multifeed. It contains any additional protocol extensions used (except multifeed's), and an overall description of the way the networking in the stack functions.
CoBox uses hyperswarm to discover peers on a distributed hash table and exchange information about each-other, as well as replicate data. Data is replicated between peers using the Dat (now Hypercore) protocol. A single hypercore protocol stream is opened for each open socket with a peer. Multiple channels can be created for a given protocol stream instance, each of which corresponds to a discovery key. In CoBox we leverage the concept of a shared address and encryption key to define a distributed multiwriter file-system using multifeed. A discovery key is a hash of an address. This is handled internally, so all you need to provide is the address. Multifeed opens a channel on the existing protocol stream with a peer (or creates a new stream along with a channel for the provided address) and uses hypercore protocol extensions to implement a multiplexer which exchanges lists of hypercore public keys which are stored and fetched from the provided corestore instance.
npm i @coboxcoop/networker
const Corestore = require('corestore')
const CoBoxNetworker = require('@coboxcoop/networker')
const crypto = require('hypercore-crypto')
// generate some concept of a unique identity
// this will be used as the noise keypair
// names are subjective
const identity = Object.assign({ name: 'Grace' }, crypto.keyPair())
// define a corestore for storing hypercores
const corestore = Corestore(storage)
const network = CoBoxNetworker(corestore, identity)
// generate a multifeed address and join!
const address = crypto.randomBytes(32)
network.join(address)
Thanks to @kira a.k.a. @noffle, @frando, @karissa, the magma-collective crew, the hyperdivision team and the cabal crew.
FAQs
the networking code for cobox
We found that @coboxcoop/networker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.