
Research
/Security News
Chrome and Firefox Extensions Posing as Free VPNs Add Clipboard Stealers via Malicious Updates
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.
key-collection
Advanced tools
A hyperdb-based collection of 32-byte keys.
npm i -g key-collection
key-collection sync <location>
Where <location> is the path of a yaml file structured like example.yml.
This will first sync the database with the yaml file, deleting and adding entries as required, and then seed the database.
const KeyCollection = require('key-collection')
const Corestore = require('corestore')
const Hyperswarm = require('hyperswarm')
const IdEnc = require('hypercore-id-encoding')
async function main () {
const key = IdEnc.decode('your key here') // Fill in with the public key of the collection db, as printed in the previous step
const store = new Corestore('key-collection-store')
const core = store.get({ key })
const keyColl = new KeyCollection(core)
await keyColl.ready()
const swarm = new Hyperswarm()
swarm.on('connection', (conn) => {
console.log('connection opened')
store.replicate(conn)
})
swarm.join(keyColl.discoveryKey, { client: true, server: false })
console.log(await keyColl.toMap()) // Note: will print an empty map the first time it runs, because it hasn't synced with the server yet
}
main()
FAQs
Hyperdb-based collection of 32-byte keys
The npm package key-collection receives a total of 1 weekly downloads. As such, key-collection popularity was classified as not popular.
We found that key-collection demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.

Research
/Security News
Miasma Mini Shai-Hulud hits @immobiliarelabs Backstage plugins, targeting GitLab and LDAP auth packages on npm.

Security News
Rolldown paused Rust React Compiler integration after a 5MB binary size increase raised concerns about shipping React-specific code to all Vite users.