Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A BIP68 relative lock-time encoding library.
let bip68 = require('bip68')
bip68.encode({ seconds: 2048 })
// => 0x00400004
bip68.encode({ seconds: 102 })
// => TypeError: Expected Number seconds as a multiple of 512 (as per the BIP)
bip68.encode({ blocks: 54 })
// => 0x00000036
bip68.encode({ blocks: 200 })
// => 0x000000c8
bip68.decode(0x03ffffff)
// => { seconds: 33553920 }
bip68.decode(0x0100fffe) // safely ignores extension bits
// => { blocks: 65534 }
bip68.decode(0xffffffff) // final sequence
// => {}
FAQs
A BIP68 relative lock-time encoding library.
We found that bip68 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.